www.mooseframework.org
Functions
NSIntegratedBC.C File Reference

Go to the source code of this file.

Functions

template<>
InputParameters validParams< NSIntegratedBC > ()
 

Function Documentation

◆ validParams< NSIntegratedBC >()

template<>
InputParameters validParams< NSIntegratedBC > ( )

Definition at line 22 of file NSIntegratedBC.C.

23 {
24  InputParameters params = validParams<IntegratedBC>();
25 
26  params.addClassDescription("This class couples together all the variables for the compressible "
27  "Navier-Stokes equations to allow them to be used in derived "
28  "IntegratedBC classes.");
29 
30  params.addRequiredCoupledVar(NS::velocity_x, "x-velocity");
31  params.addCoupledVar(NS::velocity_y, "y-velocity"); // only required in >= 2D
32  params.addCoupledVar(NS::velocity_z, "z-velocity"); // only required in 3D
33 
34  params.addRequiredCoupledVar(NS::density, "density");
35  params.addRequiredCoupledVar(NS::momentum_x, "x-momentum");
36  params.addCoupledVar(NS::momentum_y, "y-momentum"); // only required in >= 2D
37  params.addCoupledVar(NS::momentum_z, "z-momentum"); // only required in 3D
38  params.addRequiredCoupledVar(NS::total_energy, "total energy");
39  params.addRequiredParam<UserObjectName>("fluid_properties",
40  "The name of the user object for fluid properties");
41  params.addParam<Real>("specified_pressure", 0.0, "The specified pressure for this boundary");
42 
43  return params;
44 }

Referenced by validParams< NSEnergyInviscidBC >(), validParams< NSEnergyViscousBC >(), validParams< NSMassBC >(), validParams< NSMomentumInviscidBC >(), validParams< NSMomentumViscousBC >(), validParams< NSPenalizedNormalFlowBC >(), validParams< NSPressureNeumannBC >(), and validParams< NSWeakStagnationBaseBC >().

NS::velocity_x
const std::string velocity_x
Definition: NS.h:22
NS::velocity_y
const std::string velocity_y
Definition: NS.h:23
NS::velocity_z
const std::string velocity_z
Definition: NS.h:24
NS::momentum_y
const std::string momentum_y
Definition: NS.h:18
NS::density
const std::string density
Definition: NS.h:16
NS::momentum_z
const std::string momentum_z
Definition: NS.h:19
NS::momentum_x
const std::string momentum_x
Definition: NS.h:17
NS::total_energy
const std::string total_energy
Definition: NS.h:20