Make CASENAME.STEPINFO the name of the step info report file.

This commit is contained in:
Atgeirr Flø Rasmussen 2020-05-07 22:09:39 +02:00
parent 9458357009
commit 561bec4a64
2 changed files with 2 additions and 2 deletions

View File

@ -521,7 +521,7 @@ namespace Opm
namespace fs = Opm::filesystem;
fs::path output_dir(dir);
{
std::string filename = eclState().getIOConfig().getBaseName() + ".ITERINFO";
std::string filename = eclState().getIOConfig().getBaseName() + ".STEPINFO";
fs::path fullpath = output_dir / filename;
std::ofstream os(fullpath.string());
report.fullReports(os);

View File

@ -188,7 +188,7 @@ namespace Opm
void SimulatorReport::fullReports(std::ostream& os) const
{
os << " Time(day) TStep(day) Assembly LSolve LSetup Update Output WellIt Lins NewtIt LinIt Conv\n";
os << " Time(day) TStep(day) Assembly LSolve LSetup Update Output WellIt Lins NewtIt LinIt Conv\n";
for (size_t i = 0; i < this->stepreports.size(); ++i) {
const SimulatorReportSingle& sr = this->stepreports[i];
os.precision(10);