rename TTag::EclFlowSolventProblem to TTag::FlowSolventProblem

This commit is contained in:
Arne Morten Kvarving 2024-02-06 14:47:31 +01:00
parent 372c584c06
commit fa3bed7e96

View File

@ -26,12 +26,12 @@
namespace Opm { namespace Opm {
namespace Properties { namespace Properties {
namespace TTag { namespace TTag {
struct EclFlowSolventProblem { struct FlowSolventProblem {
using InheritsFrom = std::tuple<FlowProblem>; using InheritsFrom = std::tuple<FlowProblem>;
}; };
} }
template<class TypeTag> template<class TypeTag>
struct EnableSolvent<TypeTag, TTag::EclFlowSolventProblem> { struct EnableSolvent<TypeTag, TTag::FlowSolventProblem> {
static constexpr bool value = true; static constexpr bool value = true;
}; };
}} }}
@ -45,14 +45,14 @@ int flowEbosSolventMain(int argc, char** argv, bool outputCout, bool outputFiles
// with incorrect locale settings. // with incorrect locale settings.
resetLocale(); resetLocale();
FlowMain<Properties::TTag::EclFlowSolventProblem> FlowMain<Properties::TTag::FlowSolventProblem>
mainfunc {argc, argv, outputCout, outputFiles}; mainfunc {argc, argv, outputCout, outputFiles};
return mainfunc.execute(); return mainfunc.execute();
} }
int flowEbosSolventMainStandalone(int argc, char** argv) int flowEbosSolventMainStandalone(int argc, char** argv)
{ {
using TypeTag = Properties::TTag::EclFlowSolventProblem; using TypeTag = Properties::TTag::FlowSolventProblem;
auto mainObject = std::make_unique<Opm::Main>(argc, argv); auto mainObject = std::make_unique<Opm::Main>(argc, argv);
auto ret = mainObject->runStatic<TypeTag>(); auto ret = mainObject->runStatic<TypeTag>();
// Destruct mainObject as the destructor calls MPI_Finalize! // Destruct mainObject as the destructor calls MPI_Finalize!