mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-26 03:00:17 -06:00
Renaming enableEvaporation to enableVapwat
This commit is contained in:
parent
b25af99362
commit
c69f7f2c99
@ -97,7 +97,7 @@ class BlackOilIntensiveQuantities
|
||||
enum { enablePolymer = getPropValue<TypeTag, Properties::EnablePolymer>() };
|
||||
enum { enableFoam = getPropValue<TypeTag, Properties::EnableFoam>() };
|
||||
enum { enableBrine = getPropValue<TypeTag, Properties::EnableBrine>() };
|
||||
enum { enableEvaporation = getPropValue<TypeTag, Properties::EnableEvaporation>() };
|
||||
enum { enableVapwat = getPropValue<TypeTag, Properties::EnableVapwat>() };
|
||||
enum { has_disgas_in_water = getPropValue<TypeTag, Properties::EnableDisgasInWater>() };
|
||||
enum { enableSaltPrecipitation = getPropValue<TypeTag, Properties::EnableSaltPrecipitation>() };
|
||||
enum { enableTemperature = getPropValue<TypeTag, Properties::EnableTemperature>() };
|
||||
@ -134,7 +134,7 @@ public:
|
||||
enableTemperature,
|
||||
enableEnergy,
|
||||
compositionSwitchEnabled,
|
||||
enableEvaporation,
|
||||
enableVapwat,
|
||||
enableBrine,
|
||||
enableSaltPrecipitation,
|
||||
has_disgas_in_water,
|
||||
@ -144,7 +144,7 @@ public:
|
||||
enableTemperature,
|
||||
enableEnergy,
|
||||
compositionSwitchEnabled,
|
||||
enableEvaporation,
|
||||
enableVapwat,
|
||||
enableBrine,
|
||||
enableSaltPrecipitation,
|
||||
has_disgas_in_water,
|
||||
@ -157,7 +157,7 @@ public:
|
||||
fluidState_.setRs(0.0);
|
||||
fluidState_.setRv(0.0);
|
||||
}
|
||||
if (enableEvaporation) {
|
||||
if (enableVapwat) {
|
||||
fluidState_.setRvw(0.0);
|
||||
}
|
||||
if (has_disgas_in_water) {
|
||||
|
@ -159,7 +159,7 @@ struct EnableFoam<TypeTag, TTag::BlackOilModel> { static constexpr bool value =
|
||||
template<class TypeTag>
|
||||
struct EnableBrine<TypeTag, TTag::BlackOilModel> { static constexpr bool value = false; };
|
||||
template<class TypeTag>
|
||||
struct EnableEvaporation<TypeTag, TTag::BlackOilModel> { static constexpr bool value = false; };
|
||||
struct EnableVapwat<TypeTag, TTag::BlackOilModel> { static constexpr bool value = false; };
|
||||
template<class TypeTag>
|
||||
struct EnableDisgasInWater<TypeTag, TTag::BlackOilModel> { static constexpr bool value = false; };
|
||||
template<class TypeTag>
|
||||
|
@ -103,7 +103,7 @@ class BlackOilPrimaryVariables : public FvBasePrimaryVariables<TypeTag>
|
||||
enum { enableFoam = getPropValue<TypeTag, Properties::EnableFoam>() };
|
||||
enum { enableBrine = getPropValue<TypeTag, Properties::EnableBrine>() };
|
||||
enum { enableSaltPrecipitation = getPropValue<TypeTag, Properties::EnableSaltPrecipitation>() };
|
||||
enum { enableEvaporation = getPropValue<TypeTag, Properties::EnableEvaporation>() };
|
||||
enum { enableVapwat = getPropValue<TypeTag, Properties::EnableVapwat>() };
|
||||
enum { enableEnergy = getPropValue<TypeTag, Properties::EnableEnergy>() };
|
||||
enum { enableTemperature = getPropValue<TypeTag, Properties::EnableTemperature>() };
|
||||
enum { enableMICP = getPropValue<TypeTag, Properties::EnableMICP>() };
|
||||
|
@ -63,7 +63,7 @@ template<class TypeTag, class MyTypeTag>
|
||||
struct EnableSaltPrecipitation { using type = UndefinedProperty; };
|
||||
//! Enable the ECL-blackoil extension for water evaporation
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct EnableEvaporation { using type = UndefinedProperty; };
|
||||
struct EnableVapwat { using type = UndefinedProperty; };
|
||||
//! Enable the ECL-blackoil extension for disolution of gas into water
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct EnableDisgasInWater { using type = UndefinedProperty; };
|
||||
|
Loading…
Reference in New Issue
Block a user