| 169 | |
| 170 | |
| 171 | int Trapezoidal::formEleTangent(FE_Element *theEle) |
| 172 | { |
| 173 | theEle->zeroTangent(); |
| 174 | |
| 175 | if (statusFlag == CURRENT_TANGENT) { |
| 176 | theEle->addKtToTang(c1); |
| 177 | theEle->addCtoTang(c2); |
| 178 | theEle->addMtoTang(c3); |
| 179 | } else if (statusFlag == INITIAL_TANGENT) { |
| 180 | theEle->addKiToTang(c1); |
| 181 | theEle->addCtoTang(c2); |
| 182 | theEle->addMtoTang(c3); |
| 183 | } |
| 184 | |
| 185 | return 0; |
| 186 | } |
| 187 | |
| 188 | |
| 189 | int Trapezoidal::formNodTangent(DOF_Group *theDof) |
nothing calls this directly
no test coverage detected