update the reservoir volume in WellState

This commit is contained in:
Kai Bao
2018-02-14 13:34:35 +01:00
parent abfe9d445b
commit 89bb589755
8 changed files with 120 additions and 8 deletions

View File

@@ -288,7 +288,8 @@ public:
// 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();