From 561bec4a647f097f79dfe70934bffc8972c6d03b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Thu, 7 May 2020 22:09:39 +0200 Subject: [PATCH] Make CASENAME.STEPINFO the name of the step info report file. --- opm/simulators/flow/FlowMainEbos.hpp | 2 +- opm/simulators/timestepping/SimulatorReport.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/opm/simulators/flow/FlowMainEbos.hpp b/opm/simulators/flow/FlowMainEbos.hpp index fe9791a17..0212d8214 100644 --- a/opm/simulators/flow/FlowMainEbos.hpp +++ b/opm/simulators/flow/FlowMainEbos.hpp @@ -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); diff --git a/opm/simulators/timestepping/SimulatorReport.cpp b/opm/simulators/timestepping/SimulatorReport.cpp index 4a059b6d9..11539a508 100644 --- a/opm/simulators/timestepping/SimulatorReport.cpp +++ b/opm/simulators/timestepping/SimulatorReport.cpp @@ -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);