From 0cc839314e401fa78af8bc56ad66a53f2ebb8a43 Mon Sep 17 00:00:00 2001 From: Markus Blatt Date: Wed, 8 Nov 2023 17:16:21 +0100 Subject: [PATCH] log problem if asked to continue with nonconverged nonlinear solver. The user has explicitly asked for this behavior using --solver-continue-on-convergence-failure=true in this rare case. --- opm/simulators/timestepping/AdaptiveTimeSteppingEbos.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opm/simulators/timestepping/AdaptiveTimeSteppingEbos.hpp b/opm/simulators/timestepping/AdaptiveTimeSteppingEbos.hpp index 1e1ed6163..d6e3212fa 100644 --- a/opm/simulators/timestepping/AdaptiveTimeSteppingEbos.hpp +++ b/opm/simulators/timestepping/AdaptiveTimeSteppingEbos.hpp @@ -444,7 +444,7 @@ std::set consistentlyFailingWells(const std::vector& sr + std::to_string(minTimeStep_) + "\n which is the minimum threshold given" + "by option --solver-min-time-step= \n"; if (solverVerbose_) { - OpmLog::error(msg); + OpmLog::problem(msg); } }