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

Go to the source code of this file.

Classes

class  InternalEnergyAux
 Compute internal energy given equation of state pressure and density. More...
 

Functions

template<>
InputParameters validParams< InternalEnergyAux > ()
 

Function Documentation

◆ validParams< InternalEnergyAux >()

template<>
InputParameters validParams< InternalEnergyAux > ( )

Definition at line 17 of file InternalEnergyAux.C.

18 {
19  InputParameters params = validParams<AuxKernel>();
20  params.addRequiredCoupledVar("density", "Density (conserved form)");
21  params.addRequiredCoupledVar("pressure", "Pressure");
22  params.addRequiredParam<UserObjectName>("fp", "The name of the equation of state user object");
23 
24  return params;
25 }