www.mooseframework.org
Functions
RichardsFlux.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("RichardsApp", RichardsFlux)
 
template<>
InputParameters validParams< RichardsFlux > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "RichardsApp"  ,
RichardsFlux   
)

◆ 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 }