| 204 | |
| 205 | |
| 206 | int Collocation::formEleTangent(FE_Element *theEle) |
| 207 | { |
| 208 | theEle->zeroTangent(); |
| 209 | |
| 210 | if (statusFlag == CURRENT_TANGENT) |
| 211 | theEle->addKtToTang(c1); |
| 212 | else if (statusFlag == INITIAL_TANGENT) |
| 213 | theEle->addKiToTang(c1); |
| 214 | |
| 215 | theEle->addCtoTang(c2); |
| 216 | theEle->addMtoTang(c3); |
| 217 | |
| 218 | return 0; |
| 219 | } |
| 220 | |
| 221 | |
| 222 | int Collocation::formNodTangent(DOF_Group *theDof) |
nothing calls this directly
no test coverage detected