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

Go to the source code of this file.

Classes

class  PorousFlowRelativePermeabilityConst
 This class simply sets a constant relative permeability at the nodes. More...
 

Functions

template<>
InputParameters validParams< PorousFlowRelativePermeabilityConst > ()
 

Function Documentation

◆ validParams< PorousFlowRelativePermeabilityConst >()

template<>
InputParameters validParams< PorousFlowRelativePermeabilityConst > ( )

Definition at line 16 of file PorousFlowRelativePermeabilityConst.C.

17 {
18  InputParameters params = validParams<PorousFlowRelativePermeabilityBase>();
19  params.addParam<Real>("kr", 1.0, "Relative permeability");
20  params.addClassDescription(
21  "This class sets the relative permeability to a constant value (default = 1)");
22  return params;
23 }
validParams< PorousFlowRelativePermeabilityBase >
InputParameters validParams< PorousFlowRelativePermeabilityBase >()
Definition: PorousFlowRelativePermeabilityBase.C:14