www.mooseframework.org
Functions
PorousFlowRelativePermeabilityVG.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("PorousFlowApp", PorousFlowRelativePermeabilityVG)
 
template<>
InputParameters validParams< PorousFlowRelativePermeabilityVG > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PorousFlowApp"  ,
PorousFlowRelativePermeabilityVG   
)

◆ validParams< PorousFlowRelativePermeabilityVG >()

template<>
InputParameters validParams< PorousFlowRelativePermeabilityVG > ( )

Definition at line 17 of file PorousFlowRelativePermeabilityVG.C.

18 {
19  InputParameters params = validParams<PorousFlowRelativePermeabilityBase>();
20  params.addRequiredRangeCheckedParam<Real>(
21  "m", "m > 0 & m < 1", "The van Genuchten exponent of the phase");
22  params.addRangeCheckedParam<Real>("seff_turnover",
23  1.0,
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",
29  false,
30  "Employ a cubic for seff>seff_turnover that has zero derivative at seff=1");
31  params.addParam<bool>("wetting",
32  true,
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");
37  return params;
38 }
validParams< PorousFlowRelativePermeabilityBase >
InputParameters validParams< PorousFlowRelativePermeabilityBase >()
Definition: PorousFlowRelativePermeabilityBase.C:14