ENH: KirchhoffShell: further simplication of log output

This commit is contained in:
Kutalmis Bercin
2021-08-16 13:29:46 +01:00
committed by Mark Olesen
parent ac6077b471
commit d27aa79cd7

View File

@ -108,10 +108,6 @@ void KirchhoffShell::solveDisplacement()
wEqn.solve();
Info<< "ws_vibrationShell: "
<< "min = " << min(w_).value() << ", "
<< "max = " << max(w_).value() << endl;
if (wSubCycle.index() >= wSubCycle.nSubCycles())
{
// Cache oldTimes inside the sub-cycling
@ -125,6 +121,10 @@ void KirchhoffShell::solveDisplacement()
}
}
Info<< "ws_vibrationShell: "
<< "min = " << min(w_).value() << ", "
<< "max = " << max(w_).value() << endl;
// Restore old time in main time
w_.oldTime() = w0;
w_.oldTime().oldTime() = w00;