www.mooseframework.org
Functions
PorousFlowRelativePermeabilityFLAC.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PorousFlowApp"  ,
PorousFlowRelativePermeabilityFLAC   
)

◆ validParams< PorousFlowRelativePermeabilityFLAC >()

template<>
InputParameters validParams< PorousFlowRelativePermeabilityFLAC > ( )

Definition at line 16 of file PorousFlowRelativePermeabilityFLAC.C.

17 {
18  InputParameters params = validParams<PorousFlowRelativePermeabilityBase>();
19  params.addRequiredRangeCheckedParam<Real>(
20  "m", "m >= 0", "relperm = (1 + m)seff^m - m seff^(m+1)");
21  params.addClassDescription(
22  "This Material calculates relative permeability of a phase using a model inspired by FLAC");
23  return params;
24 }
validParams< PorousFlowRelativePermeabilityBase >
InputParameters validParams< PorousFlowRelativePermeabilityBase >()
Definition: PorousFlowRelativePermeabilityBase.C:14