From cd8a8ed43e21132f46d8053b9f8604cf2006a5d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Klinkovsk=C3=BD?= <klinkjak@fjfi.cvut.cz> Date: Tue, 1 Dec 2015 14:28:37 +0100 Subject: [PATCH] Fixed output of semi-implicit time stepper. The system is actually solved for t+tau, not t. --- src/solvers/pde/tnlSemiImplicitTimeStepper_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/solvers/pde/tnlSemiImplicitTimeStepper_impl.h b/src/solvers/pde/tnlSemiImplicitTimeStepper_impl.h index 93e256979c..d61ec45480 100644 --- a/src/solvers/pde/tnlSemiImplicitTimeStepper_impl.h +++ b/src/solvers/pde/tnlSemiImplicitTimeStepper_impl.h @@ -171,7 +171,7 @@ solve( const RealType& time, this->linearSystemAssemblerTimer.stop(); if( verbose ) - cout << " Solving the linear system for time " << t << " \r" << flush; + cout << " Solving the linear system for time " << t + currentTau << " \r" << flush; this->linearSystemSolverTimer.start(); if( ! this->linearSystemSolver->template solve< DofVectorType, tnlLinearResidueGetter< MatrixType, DofVectorType > >( this->rightHandSide, dofVector ) ) -- GitLab