| 317 | } |
| 318 | |
| 319 | int |
| 320 | LoadControl::commitSensitivity(int gradNum, int numGrads) |
| 321 | { |
| 322 | // get model |
| 323 | AnalysisModel* theAnalysisModel = this->getAnalysisModel(); |
| 324 | |
| 325 | // Loop through the FE_Elements and set unconditional sensitivities |
| 326 | FE_Element *elePtr; |
| 327 | FE_EleIter &theEles = theAnalysisModel->getFEs(); |
| 328 | while((elePtr = theEles()) != 0) { |
| 329 | elePtr->commitSensitivity(gradNum, numGrads); |
| 330 | } |
| 331 | |
| 332 | return 0; |
| 333 | } |
| 334 | |
| 335 | |
| 336 |
no test coverage detected