Go to the source code of this file.
|
class | RichardsSeff2gasVG |
| van-Genuchten gas effective saturation as a function of (Pwater, Pgas), and its derivs wrt to those pressures. More...
|
|
◆ validParams< RichardsSeff2gasVG >()
Definition at line 19 of file RichardsSeff2gasVG.C.
22 params.addRequiredRangeCheckedParam<Real>(
"al",
24 "van-Genuchten alpha parameter. Must "
25 "be positive. Single-phase VG seff = "
26 "(1 + (-al*c)^(1/(1-m)))^(-m)");
27 params.addRequiredRangeCheckedParam<Real>(
30 "van-Genuchten m parameter. Must be between 0 and 1, and optimally "
31 "should be set to >0.5 Single-phase VG seff = (1 + "
32 "(-al*p)^(1/(1-m)))^(-m)");
33 params.addClassDescription(
"van-Genuchten effective saturation as a function of (Pwater, Pgas) "
34 "suitable for use for the gas phase in two-phase simulations. With "
35 "Pc=Pgas-Pwater, seff = 1 - (1 + (al*pc)^(1/(1-m)))^(-m)");