mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Merge pull request #4044 from atgeirr/fix-restart-initialization
Ensure intensive quantities are calculated at start of simulation.
This commit is contained in:
commit
d5401eeb43
@ -148,6 +148,8 @@ public:
|
||||
SimulatorReport run(SimulatorTimer& timer)
|
||||
{
|
||||
init(timer);
|
||||
// Make cache up to date. No need for updating it in elementCtx.
|
||||
ebosSimulator_.model().invalidateAndUpdateIntensiveQuantities(/*timeIdx=*/0);
|
||||
// Main simulation loop.
|
||||
while (!timer.done()) {
|
||||
bool continue_looping = runStep(timer);
|
||||
@ -218,8 +220,6 @@ public:
|
||||
ebosSimulator_.setEpisodeIndex(-1);
|
||||
ebosSimulator_.setEpisodeLength(0.0);
|
||||
ebosSimulator_.setTimeStepSize(0.0);
|
||||
// Make cache up to date. No need for updating it in elementCtx.
|
||||
ebosSimulator_.model().invalidateAndUpdateIntensiveQuantities(/*timeIdx=*/0);
|
||||
wellModel_().beginReportStep(timer.currentStepNum());
|
||||
ebosSimulator_.problem().writeOutput();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user