| 1022 | } |
| 1023 | |
| 1024 | int |
| 1025 | DisplacementControl::commitSensitivity(int gradNum, int numGrads) |
| 1026 | { |
| 1027 | |
| 1028 | AnalysisModel* theAnalysisModel = this->getAnalysisModel(); |
| 1029 | |
| 1030 | // Loop through the FE_Elements and set unconditional sensitivities |
| 1031 | FE_Element *elePtr; |
| 1032 | FE_EleIter &theEles = theAnalysisModel->getFEs(); |
| 1033 | while((elePtr = theEles()) != 0) { |
| 1034 | elePtr->commitSensitivity(gradNum, numGrads); |
| 1035 | } |
| 1036 | return 0; |
| 1037 | } |
| 1038 | |
| 1039 | |
| 1040 |
no test coverage detected