Go to the source code of this file.
|
class | NSInflowThermalBC |
| This class is used on a boundary where the incoming flow values (rho, u, v, T) are all completely specified. More...
|
|
◆ validParams< NSInflowThermalBC >()
Definition at line 19 of file NSInflowThermalBC.C.
21 InputParameters params = validParams<NodalBC>();
23 params.addClassDescription(
"This class is used on a boundary where the incoming flow values "
24 "(rho, u, v, T) are all completely specified.");
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");