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

Go to the source code of this file.

Classes

class  RichardsDensityPrimePrimeAux
 Second derivative of fluid density wrt porepressure. More...
 

Functions

template<>
InputParameters validParams< RichardsDensityPrimePrimeAux > ()
 

Function Documentation

◆ validParams< RichardsDensityPrimePrimeAux >()

template<>
InputParameters validParams< RichardsDensityPrimePrimeAux > ( )

Definition at line 18 of file RichardsDensityPrimePrimeAux.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 d^2(density)/dp^2");
25  return params;
26 }