From 6b0dbfdf2d5702bb0caa49d7c6d944304d01977b Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Tue, 6 Feb 2024 08:18:32 +0100 Subject: [PATCH] rename EclAquiferModel property to AquiferModel --- ebos/ebos.hh | 2 +- ebos/eclproblem.hh | 8 ++++---- ebos/eclproblem_properties.hh | 4 ++-- opm/simulators/flow/BlackoilModel.hpp | 2 +- opm/simulators/flow/SimulatorFullyImplicitBlackoil.hpp | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/ebos/ebos.hh b/ebos/ebos.hh index 9bbe1e684..176dd63e6 100644 --- a/ebos/ebos.hh +++ b/ebos/ebos.hh @@ -103,7 +103,7 @@ struct UseVolumetricResidual { // by default use flow's aquifer model for now template -struct EclAquiferModel { +struct AquiferModel { using type = BlackoilAquiferModel; }; diff --git a/ebos/eclproblem.hh b/ebos/eclproblem.hh index afc93e0fe..da47ae586 100644 --- a/ebos/eclproblem.hh +++ b/ebos/eclproblem.hh @@ -173,7 +173,7 @@ class EclProblem : public GetPropType using Indices = GetPropType; using IntensiveQuantities = GetPropType; using WellModel = GetPropType; - using EclAquiferModel = GetPropType; + using AquiferModel = GetPropType; using SolventModule = BlackOilSolventModule; using PolymerModule = BlackOilPolymerModule; @@ -1499,10 +1499,10 @@ public: WellModel& wellModel() { return wellModel_; } - const EclAquiferModel& aquiferModel() const + const AquiferModel& aquiferModel() const { return aquiferModel_; } - EclAquiferModel& mutableAquiferModel() + AquiferModel& mutableAquiferModel() { return aquiferModel_; } // temporary solution to facilitate output of initial state from flow @@ -2772,7 +2772,7 @@ private: GlobalEqVector drift_; WellModel wellModel_; - EclAquiferModel aquiferModel_; + AquiferModel aquiferModel_; bool enableEclOutput_; std::unique_ptr eclWriter_; diff --git a/ebos/eclproblem_properties.hh b/ebos/eclproblem_properties.hh index b34bd84aa..716ccad33 100644 --- a/ebos/eclproblem_properties.hh +++ b/ebos/eclproblem_properties.hh @@ -115,7 +115,7 @@ struct EnableApiTracking { // The class which deals with ECL aquifers template -struct EclAquiferModel { +struct AquiferModel { using type = UndefinedProperty; }; @@ -241,7 +241,7 @@ public: // by default use the dummy aquifer "model" template -struct EclAquiferModel { +struct AquiferModel { using type = EclBaseAquiferModel; }; diff --git a/opm/simulators/flow/BlackoilModel.hpp b/opm/simulators/flow/BlackoilModel.hpp index 1b8b79331..56588a9e0 100644 --- a/opm/simulators/flow/BlackoilModel.hpp +++ b/opm/simulators/flow/BlackoilModel.hpp @@ -98,7 +98,7 @@ struct UseVolumetricResidual { }; template -struct EclAquiferModel { +struct AquiferModel { using type = BlackoilAquiferModel; }; diff --git a/opm/simulators/flow/SimulatorFullyImplicitBlackoil.hpp b/opm/simulators/flow/SimulatorFullyImplicitBlackoil.hpp index f85f8feba..6c003897e 100644 --- a/opm/simulators/flow/SimulatorFullyImplicitBlackoil.hpp +++ b/opm/simulators/flow/SimulatorFullyImplicitBlackoil.hpp @@ -151,7 +151,7 @@ public: using MaterialLaw = GetPropType; using SolutionVector = GetPropType; using MaterialLawParams = GetPropType; - using AquiferModel = GetPropType; + using AquiferModel = GetPropType; using TimeStepper = AdaptiveTimeStepping; using PolymerModule = BlackOilPolymerModule;