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

Go to the source code of this file.

Classes

class  NSTemperatureAux
 Temperature is an auxiliary value computed from the total energy based on the FluidProperties. More...
 

Functions

template<>
InputParameters validParams< NSTemperatureAux > ()
 

Function Documentation

◆ validParams< NSTemperatureAux >()

template<>
InputParameters validParams< NSTemperatureAux > ( )

Definition at line 24 of file NSTemperatureAux.C.

25 {
26  InputParameters params = validParams<AuxKernel>();
27 
28  params.addClassDescription("Temperature is an auxiliary value computed from the total energy "
29  "based on the FluidProperties.");
30  // Mark variables as required
31  params.addRequiredCoupledVar(NS::specific_volume, "specific volume");
32  params.addRequiredCoupledVar(NS::internal_energy, "internal energy");
33  params.addRequiredParam<UserObjectName>("fluid_properties",
34  "The name of the user object for fluid properties");
35 
36  return params;
37 }
NS::specific_volume
const std::string specific_volume
Definition: NS.h:30
NS::internal_energy
const std::string internal_energy
Definition: NS.h:29