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

Method formEleTangent

SRC/analysis/integrator/Collocation.cpp:206–219  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

204
205
206int Collocation::formEleTangent(FE_Element *theEle)
207{
208 theEle->zeroTangent();
209
210 if (statusFlag == CURRENT_TANGENT)
211 theEle->addKtToTang(c1);
212 else if (statusFlag == INITIAL_TANGENT)
213 theEle->addKiToTang(c1);
214
215 theEle->addCtoTang(c2);
216 theEle->addMtoTang(c3);
217
218 return 0;
219}
220
221
222int Collocation::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