| 183 | } |
| 184 | |
| 185 | int |
| 186 | WrapperElement::revertToStart() |
| 187 | { |
| 188 | // get the current load factor |
| 189 | Domain *theDomain=this->getDomain(); |
| 190 | |
| 191 | committedTime=0.; |
| 192 | committedDt= 0.; |
| 193 | theModelState.time = 0; |
| 194 | theModelState.dt = 0; |
| 195 | |
| 196 | // invoke the element routine |
| 197 | int isw = ISW_REVERT_TO_START; |
| 198 | int error = 0; |
| 199 | theEle->eleFunctPtr(theEle, &theModelState, K , R, &isw, &error); |
| 200 | return error; |
| 201 | } |
| 202 | |
| 203 | const Matrix & |
| 204 | WrapperElement::getTangentStiff(void) |