www.mooseframework.org
Functions
NSInflowThermalBC.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("NavierStokesApp", NSInflowThermalBC)
 
template<>
InputParameters validParams< NSInflowThermalBC > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "NavierStokesApp"  ,
NSInflowThermalBC   
)

◆ validParams< NSInflowThermalBC >()

template<>
InputParameters validParams< NSInflowThermalBC > ( )

Definition at line 19 of file NSInflowThermalBC.C.

20 {
21  InputParameters params = validParams<NodalBC>();
22 
23  params.addClassDescription("This class is used on a boundary where the incoming flow values "
24  "(rho, u, v, T) are all completely specified.");
25  // Boundary condition values, all required except for velocity which defaults to zero.
26  params.addRequiredParam<Real>("specified_rho", "Density of incoming flow");
27  params.addRequiredParam<Real>("specified_temperature", "Temperature of incoming flow");
28  params.addParam<Real>("specified_velocity_magnitude", 0., "Velocity magnitude of incoming flow");
29  params.addRequiredParam<UserObjectName>("fluid_properties",
30  "The name of the user object for fluid properties");
31 
32  return params;
33 }