Merge pull request #4661 from totto82/addDisgasToThermal

enable disgasw and vapwat for thermal model
This commit is contained in:
Tor Harald Sandve
2023-05-23 08:49:21 +02:00
committed by GitHub

View File

@@ -52,6 +52,17 @@ template<class TypeTag>
struct EnableEnergy<TypeTag, TTag::EclFlowGasWaterEnergyProblem> {
static constexpr bool value = true;
};
template<class TypeTag>
struct EnableDisgasInWater<TypeTag, TTag::EclFlowGasWaterEnergyProblem> {
static constexpr bool value = true;
};
template<class TypeTag>
struct EnableEvaporation<TypeTag, TTag::EclFlowGasWaterEnergyProblem> {
static constexpr bool value = true;
};
//! The indices required by the model
template<class TypeTag>
struct Indices<TypeTag, TTag::EclFlowGasWaterEnergyProblem>