mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-23 01:36:25 -06:00
Make CASENAME.STEPINFO the name of the step info report file.
This commit is contained in:
parent
9458357009
commit
561bec4a64
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user