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");
36 : NodalBC(parameters),
37 _specified_rho(getParam<Real>(
"specified_rho")),
38 _specified_temperature(getParam<Real>(
"specified_temperature")),
39 _specified_velocity_magnitude(getParam<Real>(
"specified_velocity_magnitude")),