| 194 | |
| 195 | |
| 196 | int HHT::revertToLastStep() |
| 197 | { |
| 198 | // set response at t+deltaT to be that at t .. for next step |
| 199 | if (U != 0) { |
| 200 | (*U) = *Ut; |
| 201 | (*Udot) = *Utdot; |
| 202 | (*Udotdot) = *Utdotdot; |
| 203 | } |
| 204 | |
| 205 | return 0; |
| 206 | } |
| 207 | |
| 208 | |
| 209 | int HHT::formEleTangent(FE_Element *theEle) |
no outgoing calls
no test coverage detected