| 66 | } |
| 67 | |
| 68 | int |
| 69 | StaticIntegrator::formEleTangent(FE_Element *theEle) |
| 70 | { |
| 71 | if (statusFlag == CURRENT_TANGENT) { |
| 72 | theEle->zeroTangent(); |
| 73 | theEle->addKtToTang(); |
| 74 | } else if (statusFlag == INITIAL_TANGENT) { |
| 75 | theEle->zeroTangent(); |
| 76 | theEle->addKiToTang(); |
| 77 | } else if (statusFlag == HALL_TANGENT) { |
| 78 | theEle->zeroTangent(); |
| 79 | theEle->addKtToTang(cFactor); |
| 80 | theEle->addKiToTang(iFactor); |
| 81 | } |
| 82 | |
| 83 | return 0; |
| 84 | } |
| 85 | |
| 86 | int |
| 87 | StaticIntegrator::formEleResidual(FE_Element *theEle) |
no test coverage detected