changed: don't store schedule keywords unless required in simulators

in the python simulator we cannot make this decision up front
since the schedule can be modified from python code so we have
to do the safe thing
This commit is contained in:
Arne Morten Kvarving
2024-09-27 11:24:20 +02:00
parent fc578bad7f
commit 2353ba56a6
6 changed files with 20 additions and 10 deletions

View File

@@ -42,7 +42,7 @@ public:
std::unique_ptr<FlowMainType> initFlowBlackoil(int& exitCode)
{
exitCode = EXIT_SUCCESS;
if (initialize_<Properties::TTag::FlowEarlyBird>(exitCode)) {
if (initialize_<Properties::TTag::FlowEarlyBird>(exitCode, true)) {
// TODO: check that this deck really represents a blackoil
// case. E.g. check that number of phases == 3
this->setupVanguard();