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

Go to the source code of this file.

Classes

class  PorousFlowRelativePermeabilityFLAC
 Material to calculate relative permeability inspired by the formula used in FLAC: relperm = (1 + m) seff^m - m seff^(m + 1) More...
 

Functions

template<>
InputParameters validParams< PorousFlowRelativePermeabilityFLAC > ()
 

Function Documentation

◆ 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