| 488 | } |
| 489 | |
| 490 | void |
| 491 | AnalysisModel::incrVel(const Vector &vel) |
| 492 | { |
| 493 | DOF_GrpIter &theDOFGrps = this->getDOFs(); |
| 494 | DOF_Group *dofPtr; |
| 495 | |
| 496 | while ((dofPtr = theDOFGrps()) != 0) |
| 497 | dofPtr->incrNodeVel(vel); |
| 498 | } |
| 499 | |
| 500 | void |
| 501 | AnalysisModel::incrAccel(const Vector &accel) |
nothing calls this directly
no test coverage detected