diff --git a/ebos/equil/initstateequil.hh b/ebos/equil/initstateequil.hh index 7c82aaa8a..cb6024556 100644 --- a/ebos/equil/initstateequil.hh +++ b/ebos/equil/initstateequil.hh @@ -36,18 +36,18 @@ #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include diff --git a/flow/flow_ebos_brine_saltprecipitation.cpp b/flow/flow_ebos_brine_saltprecipitation.cpp index 74483e601..18d27a607 100644 --- a/flow/flow_ebos_brine_saltprecipitation.cpp +++ b/flow/flow_ebos_brine_saltprecipitation.cpp @@ -26,17 +26,17 @@ namespace Opm { namespace Properties { namespace TTag { -struct EclFlowBrineProblem { +struct EclFlowBrineSaltPrecipitationProblem { using InheritsFrom = std::tuple; }; } template -struct EnableBrine { +struct EnableBrine { static constexpr bool value = true; }; template -struct EnableSaltPrecipitation { +struct EnableSaltPrecipitation { static constexpr bool value = true; }; }} @@ -47,7 +47,7 @@ void flowEbosBrineSaltPrecipitationSetDeck(double setupTime, std::shared_ptr schedule, std::shared_ptr summaryConfig) { - using TypeTag = Properties::TTag::EclFlowBrineProblem; + using TypeTag = Properties::TTag::EclFlowBrineSaltPrecipitationProblem; using Vanguard = GetPropType; Vanguard::setExternalSetupTime(setupTime); @@ -65,14 +65,14 @@ int flowEbosBrineSaltPrecipitationMain(int argc, char** argv, bool outputCout, b // with incorrect locale settings. resetLocale(); - FlowMainEbos + FlowMainEbos mainfunc {argc, argv, outputCout, outputFiles}; return mainfunc.execute(); } int flowEbosBrineSaltPrecipitationMainStandalone(int argc, char** argv) { - using TypeTag = Properties::TTag::EclFlowBrineProblem; + using TypeTag = Properties::TTag::EclFlowBrineSaltPrecipitationProblem; auto mainObject = Opm::Main(argc, argv); return mainObject.runStatic(); }