diff --git a/ebos/eclproblem.hh b/ebos/eclproblem.hh index 61361c690..56244ba70 100644 --- a/ebos/eclproblem.hh +++ b/ebos/eclproblem.hh @@ -302,6 +302,8 @@ SET_BOOL_PROP(EclBaseProblem, EnableEnergy, false); // disable thermal flux boundaries by default SET_BOOL_PROP(EclBaseProblem, EnableThermalFluxBoundaries, false); +SET_BOOL_PROP(EclBaseProblem, EnableTracerModel, false); + END_PROPERTIES namespace Ewoms { @@ -400,6 +402,8 @@ public: "Tell the output writer to use double precision. Useful for 'perfect' restarts"); EWOMS_REGISTER_PARAM(TypeTag, unsigned, RestartWritingInterval, "The frequencies of which time steps are serialized to disk"); + EWOMS_REGISTER_PARAM(TypeTag, bool, EnableTracerModel, + "Transport tracers found in the deck."); } /*! diff --git a/ebos/ecltracermodel.hh b/ebos/ecltracermodel.hh index 4d103f88c..2ab43d1d5 100644 --- a/ebos/ecltracermodel.hh +++ b/ebos/ecltracermodel.hh @@ -35,6 +35,11 @@ #include #include +BEGIN_PROPERTIES + +NEW_PROP_TAG(EnableTracerModel); + +END_PROPERTIES namespace Ewoms { @@ -75,6 +80,7 @@ public: : simulator_(simulator) { } + /*! * \brief Initialize all internal data structures needed by the tracer module */ @@ -85,6 +91,13 @@ public: if (!deck.hasKeyword("TRACERS")) return; // tracer treatment is supposed to be disabled + if (!EWOMS_GET_PARAM(TypeTag, bool, EnableTracerModel)) + { + std::cout << "Warning: Tracer model is disabled but the deck contatins the TRACERS keyword \n"; + std::cout << "The tracer model must be activated by the enable-tracer-model=true "<< std::endl; + return; // Tracer transport must be enabled by the user + } + if (!deck.hasKeyword("TRACER")){ throw std::runtime_error("the deck does not contain the TRACER keyword"); }