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

Method formEleTangent

SRC/analysis/integrator/CollocationHSFixedNumIter.cpp:244–257  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

242
243
244int CollocationHSFixedNumIter::formEleTangent(FE_Element *theEle)
245{
246 theEle->zeroTangent();
247
248 if (statusFlag == CURRENT_TANGENT)
249 theEle->addKtToTang(c1);
250 else if (statusFlag == INITIAL_TANGENT)
251 theEle->addKiToTang(c1);
252
253 theEle->addCtoTang(c2);
254 theEle->addMtoTang(c3);
255
256 return 0;
257}
258
259
260int CollocationHSFixedNumIter::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