20 params.
addRequiredParam<MaterialPropertyName>(
"T",
"Material property name of fluid temperature");
22 "Hw",
"Material property name of wall heat transfer coefficient");
23 params.
addParam<Real>(
"scaling_factor", 1.,
"Scaling factor");
29 _T_wall(coupledValue(
"T_wall")),
30 _T(getMaterialProperty<Real>(
"T")),
31 _Hw(getMaterialProperty<Real>(
"Hw")),
32 _scaling_factor(getParam<Real>(
"scaling_factor"))
registerMooseObject("ThermalHydraulicsApp", ConvectiveHeatFlux1PhaseAux)
static InputParameters validParams()
Computes convective heat flux for 1-phase flow.
virtual Real computeValue()
const Real & _scaling_factor
Scaling factor.
static InputParameters validParams()
const VariableValue & _T_wall
Wall temperature.
const MaterialProperty< Real > & _T
Fluid temperature.
const MaterialProperty< Real > & _Hw
Wall heat transfer coefficient.
ConvectiveHeatFlux1PhaseAux(const InputParameters ¶meters)