| 610 | |
| 611 | |
| 612 | void KRAlphaExplicit::Print(OPS_Stream &s, int flag) |
| 613 | { |
| 614 | AnalysisModel *theModel = this->getAnalysisModel(); |
| 615 | if (theModel != 0) { |
| 616 | double currentTime = theModel->getCurrentDomainTime(); |
| 617 | s << "KRAlphaExplicit - currentTime: " << currentTime << endln ; |
| 618 | s << " alphaM: " << alphaM << " alphaF: " << alphaF << " beta: " << beta << " gamma: " << gamma << endln; |
| 619 | s << " c1: " << c1 << " c2: " << c2 << " c3: " << c3 << endln; |
| 620 | if (updElemDisp) |
| 621 | s << " updateElemDisp: yes\n"; |
| 622 | else |
| 623 | s << " updateElemDisp: no\n"; |
| 624 | } else |
| 625 | s << "KRAlphaExplicit - no associated AnalysisModel\n"; |
| 626 | } |
| 627 | |
| 628 | int KRAlphaExplicit::revertToStart() |
| 629 | { |
nothing calls this directly
no test coverage detected