www.mooseframework.org
Functions
RichardsDensityAux.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "RichardsApp"  ,
RichardsDensityAux   
)

◆ validParams< RichardsDensityAux >()

template<>
InputParameters validParams< RichardsDensityAux > ( )

Definition at line 18 of file RichardsDensityAux.C.

19 {
20  InputParameters params = validParams<AuxKernel>();
21  params.addRequiredCoupledVar("pressure_var", "The variable that represents the pressure");
22  params.addRequiredParam<UserObjectName>("density_UO",
23  "Name of user object that defines the density.");
24  params.addClassDescription("auxillary variable which is fluid density");
25  return params;
26 }