mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Fix minor output bug and refine output.
Previously the substep summary reports were cumulative, misleading the user. Also, made output a little more compact and readable, ensuring numbers line up unless unusually many digits are needed for times and iteration counts.
This commit is contained in:
@@ -309,7 +309,7 @@ namespace Opm {
|
||||
current_relaxation_ -= nonlinear_solver.relaxIncrement();
|
||||
current_relaxation_ = std::max(current_relaxation_, nonlinear_solver.relaxMax());
|
||||
if (terminalOutputEnabled()) {
|
||||
std::string msg = " Oscillating behavior detected: Relaxation set to "
|
||||
std::string msg = " Oscillating behavior detected: Relaxation set to "
|
||||
+ std::to_string(current_relaxation_);
|
||||
OpmLog::info(msg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user