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

Method getG

SRC/element/forceBeamColumn/ForceBeamColumnCBDI3d.cpp:2494–2504  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2492}
2493
2494void
2495ForceBeamColumnCBDI3d::getG(int numSections, double xi[], Matrix &G)
2496{
2497 for (int i = 0; i < numSections; i++) {
2498 G(i,0) = 1;
2499 for (int j = 1; j < numSections; j++)
2500 G(i,j) = pow(xi[i],j);
2501 }
2502
2503 return;
2504}
2505
2506void
2507ForceBeamColumnCBDI3d::getGinv(int numSections, double xi[], Matrix &Ginv)

Callers 3

updateMethod · 0.95
getGinvMethod · 0.95
computedwdhMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected