From 51532231b34aac427e1c28be7ef4076e430ec4de Mon Sep 17 00:00:00 2001 From: Tor Harald Sandve Date: Thu, 11 Jan 2024 15:27:40 +0100 Subject: [PATCH] warn against no dispersion in gas phase --- ebos/eclproblem.hh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ebos/eclproblem.hh b/ebos/eclproblem.hh index cf01af3f6..5dbef8892 100644 --- a/ebos/eclproblem.hh +++ b/ebos/eclproblem.hh @@ -181,6 +181,7 @@ class EclProblem : public GetPropType using BrineModule = BlackOilBrineModule; using ExtboModule = BlackOilExtboModule; using MICPModule = BlackOilMICPModule; + using DispersionModule = BlackOilDispersionModule; using InitialFluidState = typename EclEquilInitializer::ScalarFluidState; @@ -302,6 +303,7 @@ public: BrineModule::initFromState(vanguard.eclState()); ExtboModule::initFromState(vanguard.eclState()); MICPModule::initFromState(vanguard.eclState()); + DispersionModule::initFromState(vanguard.eclState()); // create the ECL writer eclWriter_ = std::make_unique(simulator);