www.mooseframework.org
Classes | Functions
PorousFlowCapillaryPressureBC.h File Reference

Go to the source code of this file.

Classes

class  PorousFlowCapillaryPressureBC
 Brooks-Corey effective saturation, capillary pressure and relative permeability functions. More...
 

Functions

template<>
InputParameters validParams< PorousFlowCapillaryPressureBC > ()
 

Function Documentation

◆ 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