MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / commitSensitivity

Method commitSensitivity

SRC/analysis/integrator/DisplacementControl.cpp:1024–1037  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1022}
1023
1024 int
1025DisplacementControl::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

Callers 1

computeSensitivitiesMethod · 0.95

Calls 1

getAnalysisModelMethod · 0.45

Tested by

no test coverage detected