MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / Print

Method Print

SRC/analysis/integrator/KRAlphaExplicit.cpp:612–626  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

610
611
612void 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
628int KRAlphaExplicit::revertToStart()
629{

Callers

nothing calls this directly

Calls 2

getAnalysisModelMethod · 0.45
getCurrentDomainTimeMethod · 0.45

Tested by

no test coverage detected