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);