| 112 | |
| 113 | |
| 114 | int |
| 115 | StaticIntegrator::formEleTangentSensitivity(FE_Element *theEle,int gradNumber) |
| 116 | { |
| 117 | |
| 118 | if (statusFlag == CURRENT_TANGENT) { |
| 119 | theEle->zeroTangent(); |
| 120 | } else if (statusFlag == INITIAL_TANGENT) { |
| 121 | theEle->zeroTangent(); |
| 122 | theEle->addKiToTang(); |
| 123 | } |
| 124 | |
| 125 | return 0; |
| 126 | } |
| 127 |
nothing calls this directly
no test coverage detected