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

Go to the source code of this file.

Classes

class  StagnationTemperatureAux
 Compute stagnation temperature from specific volume, specific internal energy, and velocity. More...
 

Functions

template<>
InputParameters validParams< StagnationTemperatureAux > ()
 

Function Documentation

◆ validParams< StagnationTemperatureAux >()

template<>
InputParameters validParams< StagnationTemperatureAux > ( )

Definition at line 17 of file StagnationTemperatureAux.C.

18 {
19  InputParameters params = validParams<AuxKernel>();
20  params.addRequiredCoupledVar("e", "Specific internal energy");
21  params.addRequiredCoupledVar("v", "Specific volume");
22  params.addRequiredCoupledVar("vel", "Velocity");
23  params.addRequiredParam<UserObjectName>("fp", "The name of the user object for fluid properties");
24  params.addClassDescription("Computes stagnation temperature from specific volume, specific "
25  "internal energy, and velocity");
26  return params;
27 }