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

Method getGinv

SRC/element/forceBeamColumn/ForceBeamColumnCBDI2d.cpp:2125–2136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2123}
2124
2125void
2126ForceBeamColumnCBDI2d::getGinv(int numSections, double xi[], Matrix &Ginv)
2127{
2128 Matrix G(numSections, numSections);
2129 this->getG(numSections, xi, G);
2130
2131 Matrix I(numSections, numSections);
2132 for (int i = 0; i < numSections; i++)
2133 I(i,i) = 1.0;
2134
2135 G.Solve(I, Ginv);
2136}
2137
2138void
2139ForceBeamColumnCBDI2d::getHk(int numSections, double xi[], Matrix &H)

Callers 5

computedwdhMethod · 0.95
computewMethod · 0.95
commitSensitivityMethod · 0.95

Calls 2

getGMethod · 0.95
SolveMethod · 0.45

Tested by

no test coverage detected