From 4e57482306c5f3c3bf5c2b1ce203057d6dcafb3e Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Tue, 6 Feb 2024 14:47:31 +0100 Subject: [PATCH] rename TTag::EclFlowBrinePrecsaltVapwatProblem to TTag::FlowBrinePrecsaltVapwatProblem --- flow/flow_ebos_brine_precsalt_vapwat.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/flow/flow_ebos_brine_precsalt_vapwat.cpp b/flow/flow_ebos_brine_precsalt_vapwat.cpp index 68a481c41..af8307e75 100644 --- a/flow/flow_ebos_brine_precsalt_vapwat.cpp +++ b/flow/flow_ebos_brine_precsalt_vapwat.cpp @@ -26,22 +26,22 @@ namespace Opm { namespace Properties { namespace TTag { -struct EclFlowBrinePrecsaltVapwatProblem { +struct FlowBrinePrecsaltVapwatProblem { using InheritsFrom = std::tuple; }; } template -struct EnableBrine { +struct EnableBrine { static constexpr bool value = true; }; template -struct EnableSaltPrecipitation { +struct EnableSaltPrecipitation { static constexpr bool value = true; }; template -struct EnableVapwat { +struct EnableVapwat { static constexpr bool value = true; }; }} @@ -55,14 +55,14 @@ int flowEbosBrinePrecsaltVapwatMain(int argc, char** argv, bool outputCout, bool // with incorrect locale settings. resetLocale(); - FlowMain + FlowMain mainfunc {argc, argv, outputCout, outputFiles}; return mainfunc.execute(); } int flowEbosBrinePrecsaltVapwatMainStandalone(int argc, char** argv) { - using TypeTag = Properties::TTag::EclFlowBrinePrecsaltVapwatProblem; + using TypeTag = Properties::TTag::FlowBrinePrecsaltVapwatProblem; auto mainObject = std::make_unique(argc, argv); auto ret = mainObject->runStatic(); // Destruct mainObject as the destructor calls MPI_Finalize!