rename EclAquiferModel property to AquiferModel

This commit is contained in:
Arne Morten Kvarving
2024-02-06 08:18:32 +01:00
parent 991f89816e
commit 6b0dbfdf2d
5 changed files with 9 additions and 9 deletions

View File

@@ -98,7 +98,7 @@ struct UseVolumetricResidual<TypeTag, TTag::FlowProblem> {
};
template<class TypeTag>
struct EclAquiferModel<TypeTag, TTag::FlowProblem> {
struct AquiferModel<TypeTag, TTag::FlowProblem> {
using type = BlackoilAquiferModel<TypeTag>;
};

View File

@@ -151,7 +151,7 @@ public:
using MaterialLaw = GetPropType<TypeTag, Properties::MaterialLaw>;
using SolutionVector = GetPropType<TypeTag, Properties::SolutionVector>;
using MaterialLawParams = GetPropType<TypeTag, Properties::MaterialLawParams>;
using AquiferModel = GetPropType<TypeTag, Properties::EclAquiferModel>;
using AquiferModel = GetPropType<TypeTag, Properties::AquiferModel>;
using TimeStepper = AdaptiveTimeStepping<TypeTag>;
using PolymerModule = BlackOilPolymerModule<TypeTag>;