Go to the source code of this file.
◆ registerMooseObject()
◆ validParams< PorousFlowRelativePermeabilityVG >()
Definition at line 17 of file PorousFlowRelativePermeabilityVG.C.
20 params.addRequiredRangeCheckedParam<Real>(
21 "m",
"m > 0 & m < 1",
"The van Genuchten exponent of the phase");
22 params.addRangeCheckedParam<Real>(
"seff_turnover",
24 "seff_turnover > 0 & seff_turnover <= 1",
25 "The relative permeability will be a cubic for seff > "
26 "seff_turnover. The cubic is chosen so that its derivative "
27 "and value matche the VG function at seff=seff_turnover");
28 params.addParam<
bool>(
"zero_derivative",
30 "Employ a cubic for seff>seff_turnover that has zero derivative at seff=1");
31 params.addParam<
bool>(
"wetting",
33 "If true, use the van Genuchten form appropriate for a wetting (liquid) "
34 "phase. If false, use the non-wetting (gas) expression.");
35 params.addClassDescription(
"This Material calculates relative permeability of a phase "
36 "using the van Genuchten model");