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