www.mooseframework.org
Functions
PorousFlowCapillaryPressureBC.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PorousFlowApp"  ,
PorousFlowCapillaryPressureBC   
)

◆ validParams< PorousFlowCapillaryPressureBC >()

template<>
InputParameters validParams< PorousFlowCapillaryPressureBC > ( )

Definition at line 17 of file PorousFlowCapillaryPressureBC.C.

18 {
19  InputParameters params = validParams<PorousFlowCapillaryPressure>();
20  params.addRequiredParam<Real>("lambda", "Brooks-Corey exponent lambda");
21  params.addRequiredRangeCheckedParam<Real>(
22  "pe", "pe > 0", "Brooks-Corey entry pressure. Must be positive");
23  params.addClassDescription("Brooks-Corey capillary pressure");
24  return params;
25 }
validParams< PorousFlowCapillaryPressure >
InputParameters validParams< PorousFlowCapillaryPressure >()
Definition: PorousFlowCapillaryPressure.C:14