| 2265 | } |
| 2266 | |
| 2267 | void |
| 2268 | SSPbrickUP::GetSolidStiffness(void) |
| 2269 | // this function computes the stiffness matrix for the solid phase |
| 2270 | { |
| 2271 | // get material tangent |
| 2272 | const Matrix &Cmat = theMaterial->getTangent(); |
| 2273 | |
| 2274 | // full element stiffness matrix |
| 2275 | mSolidK = Kstab; |
| 2276 | mSolidK.addMatrixTripleProduct(1.0, Bnot, Cmat, mVol); |
| 2277 | |
| 2278 | return; |
| 2279 | } |
| 2280 | |
| 2281 | void |
| 2282 | SSPbrickUP::GetSolidMass(void) |
nothing calls this directly
no test coverage detected