| 1008 | } |
| 1009 | |
| 1010 | int |
| 1011 | DisplacementControl::saveLambdaSensitivity(double dlambdadh, int gradNum, int numGrads) |
| 1012 | { |
| 1013 | AnalysisModel* theAnalysisModel = this->getAnalysisModel(); |
| 1014 | Domain *theDomain = theAnalysisModel->getDomainPtr(); |
| 1015 | |
| 1016 | LoadPattern *lpPtr; |
| 1017 | LoadPatternIter &thePatterns = theDomain->getLoadPatterns(); |
| 1018 | while ( (lpPtr = thePatterns() ) != 0) |
| 1019 | lpPtr->saveLoadFactorSensitivity(dlambdadh, gradNum, numGrads); |
| 1020 | |
| 1021 | return 0; |
| 1022 | } |
| 1023 | |
| 1024 | int |
| 1025 | DisplacementControl::commitSensitivity(int gradNum, int numGrads) |
no test coverage detected