| 1210 | } |
| 1211 | |
| 1212 | void |
| 1213 | SSPquadUP::GetSolidStiffness(void) |
| 1214 | // this function computes the stiffness matrix for the solid phase |
| 1215 | { |
| 1216 | // get material tangent |
| 1217 | const Matrix &Cmat = theMaterial->getTangent(); |
| 1218 | |
| 1219 | mSolidK = Kstab; |
| 1220 | mSolidK.addMatrixTripleProduct(1.0, Mmem, Cmat, 4.0*J0*mThickness); |
| 1221 | |
| 1222 | return; |
| 1223 | } |
| 1224 | |
| 1225 | void |
| 1226 | SSPquadUP::GetSolidMass(void) |
nothing calls this directly
no test coverage detected