OGS
MaterialPropertyLib::CapillaryPressureVanGenuchten Class Reference

Detailed Description

The van Genuchten capillary pressure model.

The van Genuchten capillary pressure model ([42]) is:

\[p_c(S)=p_b (S_\text{eff}^{-1/m}-1)^{1-m}\]

with effective saturation defined as

\[S_\text{eff}=\frac{S-S_r}{S_{\text{max}}-S_r}.\]

Above, \(S_r\) and \(S_{\text{max}}\) are the residual and the maximum saturations. The exponent \(m \in (0,1)\) and the pressure scaling parameter \(p_b\) (it is equal to \(\rho g/\alpha\) in original publication) are given by the user. The scaling parameter \(p_b\) is given in same units as pressure.

In the original work another exponent \(n\) is used, but usually set to \(n = 1 / (1 - m)\), and also in this implementation.

The the capillary pressure is computed from saturation as above but is cut off at maximum capillary pressure given by user.

Definition at line 34 of file CapillaryPressureVanGenuchten.h.

#include <CapillaryPressureVanGenuchten.h>

Inheritance diagram for MaterialPropertyLib::CapillaryPressureVanGenuchten:
[legend]
Collaboration diagram for MaterialPropertyLib::CapillaryPressureVanGenuchten:
[legend]

Public Member Functions

 CapillaryPressureVanGenuchten (std::string name, double const residual_liquid_saturation, double const residual_gas_saturation, double const exponent, double const p_b, double const maximum_capillary_pressure)
void checkScale () const override
PropertyDataType value (VariableArray const &variable_array, ParameterLib::SpatialPosition const &pos, double const t, double const dt) const override
PropertyDataType dValue (VariableArray const &variable_array, Variable const variable, ParameterLib::SpatialPosition const &pos, double const t, double const dt) const override
Public Member Functions inherited from MaterialPropertyLib::Property
virtual ~Property ()
virtual PropertyDataType initialValue (ParameterLib::SpatialPosition const &pos, double const t) const
virtual PropertyDataType value () const
virtual PropertyDataType value (VariableArray const &variable_array, VariableArray const &variable_array_prev, ParameterLib::SpatialPosition const &pos, double const t, double const dt) const
virtual PropertyDataType dValue (VariableArray const &variable_array, VariableArray const &variable_array_prev, Variable const variable, ParameterLib::SpatialPosition const &pos, double const t, double const dt) const
virtual PropertyDataType d2Value (VariableArray const &variable_array, Variable const variable1, Variable const variable2, ParameterLib::SpatialPosition const &pos, double const t, double const dt) const
 Default implementation: 2nd derivative of any constant property is zero.
virtual void setProperties (std::vector< std::unique_ptr< Phase > > const &phases)
 Default implementation:
void setScale (std::variant< Medium *, Phase *, Component * > scale)
template<typename T>
initialValue (ParameterLib::SpatialPosition const &pos, double const t) const
template<typename T>
value () const
template<typename T>
value (VariableArray const &variable_array, VariableArray const &variable_array_prev, ParameterLib::SpatialPosition const &pos, double const t, double const dt) const
template<typename T>
value (VariableArray const &variable_array, ParameterLib::SpatialPosition const &pos, double const t, double const dt) const
template<typename T>
dValue (VariableArray const &variable_array, VariableArray const &variable_array_prev, Variable const variable, ParameterLib::SpatialPosition const &pos, double const t, double const dt) const
template<typename T>
dValue (VariableArray const &variable_array, Variable const variable, ParameterLib::SpatialPosition const &pos, double const t, double const dt) const
template<typename T>
d2Value (VariableArray const &variable_array, Variable const &variable1, Variable const &variable2, ParameterLib::SpatialPosition const &pos, double const t, double const dt) const

Private Attributes

double const S_L_res_
 Residual saturation of liquid phase.
double const S_L_max_
 Maximum saturation of liquid phase.
double const m_
 Exponent.
double const p_b_
 Pressure scaling factor.
double const p_cap_max_
 Maximum capillary pressure.

Additional Inherited Members

Protected Attributes inherited from MaterialPropertyLib::Property
std::string name_
PropertyDataType value_
 The single value of a property.
PropertyDataType dvalue_
std::variant< Medium *, Phase *, Component * > scale_

Constructor & Destructor Documentation

◆ CapillaryPressureVanGenuchten()

MaterialPropertyLib::CapillaryPressureVanGenuchten::CapillaryPressureVanGenuchten ( std::string name,
double const residual_liquid_saturation,
double const residual_gas_saturation,
double const exponent,
double const p_b,
double const maximum_capillary_pressure )

Definition at line 13 of file CapillaryPressureVanGenuchten.cpp.

22 m_(exponent),
23 p_b_(p_b),
24 p_cap_max_(maximum_capillary_pressure)
25{
26 name_ = std::move(name);
27
29 {
31 "Van Genuchten capillary pressure model: The residual liquid "
32 "saturation value S_L_res = {:g} is out of admissible range [0, "
33 "1].",
34 S_L_res_);
35 }
37 {
39 "Van Genuchten capillary pressure model: The maximum liquid "
40 "saturation value S_L_max = {:g} is out of admissible range [0, "
41 "1].",
42 S_L_max_);
43 }
44 if (S_L_res_ >= S_L_max_)
45 {
47 "Van Genuchten capillary pressure model: The maximum liquid "
48 "saturation S_L_max = {:g} must not be less or equal to the "
49 "residual liquid saturion S_L_res = {:g}.",
51 }
52 if (!(m_ > 0 && m_ < 1))
53 {
55 "Van Genuchten capillary pressure model: The exponent value m = "
56 "{:g} is out of of admissible range (0, 1).",
57 m_);
58 }
59 if (p_b_ <= 0)
60 {
62 "Van Genuchten capillary pressure model: The pressure scaling "
63 "value p_b = {:g} must be positive.",
64 p_b_);
65 }
66 if (p_cap_max_ < 0)
67 {
69 "Van Genuchten capillary pressure model: The maximum capillary "
70 "pressure value p_cap_max = {:g} must be non-negative.",
72 }
73}
#define OGS_FATAL(...)
Definition Error.h:19
double const S_L_res_
Residual saturation of liquid phase.
double const S_L_max_
Maximum saturation of liquid phase.

References m_, MaterialPropertyLib::name, MaterialPropertyLib::Property::name_, OGS_FATAL, p_b_, p_cap_max_, MaterialPropertyLib::residual_gas_saturation, MaterialPropertyLib::residual_liquid_saturation, S_L_max_, and S_L_res_.

Member Function Documentation

◆ checkScale()

void MaterialPropertyLib::CapillaryPressureVanGenuchten::checkScale ( ) const
inlineoverridevirtual

Reimplemented from MaterialPropertyLib::Property.

Definition at line 44 of file CapillaryPressureVanGenuchten.h.

45 {
46 if (!std::holds_alternative<Medium*>(scale_))
47 {
49 "The property 'CapillaryPressureVanGenuchten' is implemented "
50 "on the 'media' scale only.");
51 }
52 }
std::variant< Medium *, Phase *, Component * > scale_

References OGS_FATAL, and MaterialPropertyLib::Property::scale_.

◆ dValue()

PropertyDataType MaterialPropertyLib::CapillaryPressureVanGenuchten::dValue ( VariableArray const & variable_array,
Variable const variable,
ParameterLib::SpatialPosition const & pos,
double const t,
double const dt ) const
overridevirtual
Returns
\( \frac{\partial p_c(S)}{\partial S} \)

Reimplemented from MaterialPropertyLib::Property.

Definition at line 101 of file CapillaryPressureVanGenuchten.cpp.

105{
106 if (variable != Variable::liquid_saturation)
107 {
108 OGS_FATAL(
109 "CapillaryPressureVanGenuchten::dValue is implemented for "
110 "derivatives with respect to liquid saturation only.");
111 }
112
113 double const S_L = variable_array.liquid_saturation;
114
115 if (S_L <= S_L_res_)
116 {
117 return 0.;
118 }
119
120 if (S_L >= S_L_max_)
121 {
122 return 0.;
123 }
124
125 double const S_eff = (S_L - S_L_res_) / (S_L_max_ - S_L_res_);
126
127 assert(0 < S_eff && S_eff < 1.0);
128
129 double const val1 = std::pow(S_eff, -1.0 / m_);
130 double const p_cap = p_b_ * std::pow(val1 - 1.0, 1.0 - m_);
131 if (p_cap >= p_cap_max_)
132 {
133 return 0.;
134 }
135
136 double const val2 = std::pow(val1 - 1.0, -m_);
137 return p_b_ * (m_ - 1.0) * val1 * val2 / (m_ * (S_L - S_L_res_));
138}

References MaterialPropertyLib::liquid_saturation, MaterialPropertyLib::VariableArray::liquid_saturation, m_, OGS_FATAL, p_b_, p_cap_max_, S_L_max_, and S_L_res_.

◆ value()

PropertyDataType MaterialPropertyLib::CapillaryPressureVanGenuchten::value ( VariableArray const & variable_array,
ParameterLib::SpatialPosition const & pos,
double const t,
double const dt ) const
overridevirtual
Returns
\( p_c(S) \).

Reimplemented from MaterialPropertyLib::Property.

Definition at line 75 of file CapillaryPressureVanGenuchten.cpp.

79{
80 double const S_L = variable_array.liquid_saturation;
81
82 if (S_L <= S_L_res_)
83 {
84 return p_cap_max_;
85 }
86
87 if (S_L >= S_L_max_)
88 {
89 return 0.;
90 }
91
92 double const S_eff = (S_L - S_L_res_) / (S_L_max_ - S_L_res_);
93 assert(0 <= S_eff && S_eff <= 1);
94
95 double const p_cap =
96 p_b_ * std::pow(std::pow(S_eff, -1.0 / m_) - 1.0, 1.0 - m_);
97 assert(p_cap > 0);
98 return std::min(p_cap, p_cap_max_);
99}

References MaterialPropertyLib::VariableArray::liquid_saturation, m_, p_b_, p_cap_max_, S_L_max_, and S_L_res_.

Member Data Documentation

◆ m_

double const MaterialPropertyLib::CapillaryPressureVanGenuchten::m_
private

Exponent.

Definition at line 70 of file CapillaryPressureVanGenuchten.h.

Referenced by CapillaryPressureVanGenuchten(), dValue(), and value().

◆ p_b_

double const MaterialPropertyLib::CapillaryPressureVanGenuchten::p_b_
private

Pressure scaling factor.

Definition at line 71 of file CapillaryPressureVanGenuchten.h.

Referenced by CapillaryPressureVanGenuchten(), dValue(), and value().

◆ p_cap_max_

double const MaterialPropertyLib::CapillaryPressureVanGenuchten::p_cap_max_
private

Maximum capillary pressure.

Definition at line 72 of file CapillaryPressureVanGenuchten.h.

Referenced by CapillaryPressureVanGenuchten(), dValue(), and value().

◆ S_L_max_

double const MaterialPropertyLib::CapillaryPressureVanGenuchten::S_L_max_
private

Maximum saturation of liquid phase.

Definition at line 69 of file CapillaryPressureVanGenuchten.h.

Referenced by CapillaryPressureVanGenuchten(), dValue(), and value().

◆ S_L_res_

double const MaterialPropertyLib::CapillaryPressureVanGenuchten::S_L_res_
private

Residual saturation of liquid phase.

Definition at line 68 of file CapillaryPressureVanGenuchten.h.

Referenced by CapillaryPressureVanGenuchten(), dValue(), and value().


The documentation for this class was generated from the following files: