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