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

Go to the source code of this file.

Classes

class  RichardsFlux
 Kernel = grad(permeability*relativepermeability/viscosity * (grad(pressure) - density*gravity)) This is mass flow according to the Richards equation. More...
 

Functions

template<>
InputParameters validParams< RichardsFlux > ()
 

Function Documentation

◆ validParams< RichardsFlux >()

template<>
InputParameters validParams< RichardsFlux > ( )

Definition at line 23 of file RichardsFlux.C.

24 {
25  InputParameters params = validParams<Kernel>();
26  params.addParam<bool>(
27  "linear_shape_fcns",
28  true,
29  "If you are using second-order Lagrange shape functions you need to set this to false.");
30  params.addRequiredParam<UserObjectName>(
31  "richardsVarNames_UO", "The UserObject that holds the list of Richards variable names.");
32  return params;
33 }