| 2123 | } |
| 2124 | |
| 2125 | void |
| 2126 | ForceBeamColumnCBDI2d::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 | |
| 2138 | void |
| 2139 | ForceBeamColumnCBDI2d::getHk(int numSections, double xi[], Matrix &H) |
no test coverage detected