mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-25 18:50:19 -06:00
EclWriter: remove obsolete writeOutput() overload
this has been unused for any simulator for a while. the only code which called it was the ECL output test, but this one could be easily ported.
This commit is contained in:
parent
ebdf685dc6
commit
e5dde0aa7e
@ -132,14 +132,12 @@ void test_summary()
|
||||
simulator->model().applyInitialSolution();
|
||||
Opm::data::Wells dw;
|
||||
bool substep = false;
|
||||
Scalar totalSolverTime = 0;
|
||||
Scalar nextstep = 0;
|
||||
simulator->setEpisodeIndex(0);
|
||||
eclWriter->writeOutput(dw, 0 * day, substep, totalSolverTime, nextstep);
|
||||
eclWriter->writeOutput(substep);
|
||||
simulator->setEpisodeIndex(1);
|
||||
eclWriter->writeOutput(dw, 1 * day, substep, totalSolverTime, nextstep);
|
||||
eclWriter->writeOutput(substep);
|
||||
simulator->setEpisodeIndex(2);
|
||||
eclWriter->writeOutput(dw, 2 * day, substep, totalSolverTime, nextstep);
|
||||
eclWriter->writeOutput(substep);
|
||||
|
||||
auto res = readsum( casename );
|
||||
const auto* resp = res.get();
|
||||
|
Loading…
Reference in New Issue
Block a user