mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-26 00:26:25 -06:00
Remove output of FIP
This commit is contained in:
parent
1e5e3f7ddf
commit
137ff53ae7
@ -209,7 +209,7 @@ public:
|
||||
perfTimer.start();
|
||||
|
||||
if (terminal_output_) {
|
||||
outputFluidInPlace(timer, originalFluidInPlace_);
|
||||
//outputFluidInPlace(timer, originalFluidInPlace_);
|
||||
}
|
||||
|
||||
// No per cell data is written for initial step, but will be
|
||||
@ -293,21 +293,27 @@ public:
|
||||
|
||||
if (terminal_output_ )
|
||||
{
|
||||
outputFluidInPlace(timer, currentFluidInPlace);
|
||||
|
||||
std::string msg =
|
||||
"Time step took " + std::to_string(solver_timer.secsSinceStart()) + " seconds; "
|
||||
"total solver time " + std::to_string(report.solver_time) + " seconds.";
|
||||
OpmLog::debug(msg);
|
||||
if (!timer.initialStep()) {
|
||||
const std::string version = moduleVersionName();
|
||||
outputTimestampFIP(timer, version);
|
||||
}
|
||||
}
|
||||
|
||||
// write simulation state at the report stage
|
||||
Dune::Timer perfTimer;
|
||||
perfTimer.start();
|
||||
const double nextstep = adaptiveTimeStepping ? adaptiveTimeStepping->suggestedNextStep() : -1.0;
|
||||
const double nextstep = adaptiveTimeStepping ? adaptiveTimeStepping->suggestedNextStep() : -1.0;
|
||||
output_writer_.writeTimeStep( timer, dummy_state, well_model.wellState(), solver->model(), false, nextstep, report);
|
||||
report.output_write_time += perfTimer.stop();
|
||||
|
||||
if (terminal_output_ )
|
||||
{
|
||||
std::string msg =
|
||||
"Time step took " + std::to_string(solver_timer.secsSinceStart()) + " seconds; "
|
||||
"total solver time " + std::to_string(report.solver_time) + " seconds.";
|
||||
OpmLog::debug(msg);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Stop timer and create timing report
|
||||
|
Loading…
Reference in New Issue
Block a user