| 244 | |
| 245 | |
| 246 | int HHTGeneralized_TP::formEleTangent(FE_Element *theEle) |
| 247 | { |
| 248 | theEle->zeroTangent(); |
| 249 | |
| 250 | if (statusFlag == CURRENT_TANGENT) |
| 251 | theEle->addKtToTang(alphaF*c1); |
| 252 | else if (statusFlag == INITIAL_TANGENT) |
| 253 | theEle->addKiToTang(alphaF*c1); |
| 254 | |
| 255 | theEle->addCtoTang(alphaF*c2); |
| 256 | theEle->addMtoTang(alphaI*c3); |
| 257 | |
| 258 | return 0; |
| 259 | } |
| 260 | |
| 261 | |
| 262 | int HHTGeneralized_TP::formNodTangent(DOF_Group *theDof) |
nothing calls this directly
no test coverage detected