Go to the source code of this file.
◆ registerMooseObject()
registerMooseObject |
( |
"NavierStokesApp" |
, |
|
|
NSThermalBC |
|
|
) |
| |
◆ validParams< NSThermalBC >()
Definition at line 21 of file NSThermalBC.C.
23 InputParameters params = validParams<NodalBC>();
24 params.addClassDescription(
"NS thermal BC.");
25 params.addRequiredCoupledVar(
NS::density,
"density");
26 params.addRequiredParam<Real>(
"initial",
"Initial temperature");
27 params.addRequiredParam<Real>(
"final",
"Final temperature");
28 params.addRequiredParam<Real>(
"duration",
29 "Time over which temperature ramps up from initial to final");
30 params.addRequiredParam<UserObjectName>(
"fluid_properties",
31 "The name of the user object for fluid properties");