www.mooseframework.org
Functions
SpecificEnthalpyAux.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("FluidPropertiesApp", SpecificEnthalpyAux)
 
template<>
InputParameters validParams< SpecificEnthalpyAux > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "FluidPropertiesApp"  ,
SpecificEnthalpyAux   
)

◆ validParams< SpecificEnthalpyAux >()

template<>
InputParameters validParams< SpecificEnthalpyAux > ( )

Definition at line 17 of file SpecificEnthalpyAux.C.

18 {
19  InputParameters params = validParams<AuxKernel>();
20  params.addRequiredCoupledVar("p", "Pressure");
21  params.addRequiredCoupledVar("T", "Temperature");
22  params.addRequiredParam<UserObjectName>("fp", "The name of the user object for fluid properties");
23  params.addClassDescription("Computes specific enthalpy from pressure and temperature");
24  return params;
25 }