| 222 | } |
| 223 | |
| 224 | int |
| 225 | LoadControl::formEleResidual(FE_Element* theEle) |
| 226 | { |
| 227 | if(sensitivityFlag == 0) { // no sensitivity |
| 228 | this->StaticIntegrator::formEleResidual(theEle); |
| 229 | } else { |
| 230 | theEle->zeroResidual(); |
| 231 | theEle->addResistingForceSensitivity(gradNumber); |
| 232 | } |
| 233 | return 0; |
| 234 | } |
| 235 | |
| 236 | int |
| 237 | LoadControl::formIndependentSensitivityRHS() |
nothing calls this directly
no test coverage detected