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:
Atgeirr Flø Rasmussen
2017-04-06 14:54:08 +02:00
parent e325dcd04b
commit 98debed741
4 changed files with 14 additions and 14 deletions

View File

@@ -140,7 +140,7 @@ void WellSwitchingLogger::logSwitch(const char* name, std::array<char,2> fromto,
ss << " Switching control mode for well " << name
<< " from " << modestring[WellControlType(fromto[0])]
<< " to " << modestring[WellControlType(fromto[1])]
<< " on rank " << rank << std::endl;
<< " on rank " << rank;
OpmLog::info(ss.str());
}
#endif