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

Method formEleTangent

SRC/analysis/integrator/HHTHSFixedNumIter.cpp:248–261  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

246
247
248int HHTHSFixedNumIter::formEleTangent(FE_Element *theEle)
249{
250 theEle->zeroTangent();
251
252 if (statusFlag == CURRENT_TANGENT)
253 theEle->addKtToTang(alphaF*c1);
254 else if (statusFlag == INITIAL_TANGENT)
255 theEle->addKiToTang(alphaF*c1);
256
257 theEle->addCtoTang(alphaF*c2);
258 theEle->addMtoTang(alphaI*c3);
259
260 return 0;
261}
262
263
264int HHTHSFixedNumIter::formNodTangent(DOF_Group *theDof)

Callers

nothing calls this directly

Calls 5

zeroTangentMethod · 0.45
addKtToTangMethod · 0.45
addKiToTangMethod · 0.45
addCtoTangMethod · 0.45
addMtoTangMethod · 0.45

Tested by

no test coverage detected