19 params.
addRequiredParam<MaterialPropertyName>(
"q_wall",
"Wall heat flux material property");
20 params.
addRequiredParam<MaterialPropertyName>(
"T",
"Fluid phase temperature material property");
21 params.
addRequiredParam<MaterialPropertyName>(
"T_wall",
"Wall temperature material property");
23 "htc_wall",
"Fluid phase wall heat transfer coefficient material property");
25 "kappa",
"Fluid phase wall contact fraction material property");
28 "Computes heat flux from convection with heat structure for a given fluid phase.");
36 _q_wall(declareADProperty<
Real>(getParam<MaterialPropertyName>(
"q_wall"))),
37 _T(getADMaterialProperty<
Real>(
"T")),
38 _T_wall(getADMaterialProperty<
Real>(
"T_wall")),
39 _htc_wall(getADMaterialProperty<
Real>(
"htc_wall")),
40 _kappa(getADMaterialProperty<
Real>(
"kappa"))
ADConvectionHeatFluxHSMaterial(const InputParameters ¶meters)
const ADMaterialProperty< Real > & _T
Fluid temperature for phase.
ADMaterialProperty< Real > & _q_wall
Wall heat flux.
const ADMaterialProperty< Real > & _T_wall
Wall temperature.
static InputParameters validParams()
registerMooseObject("ThermalHydraulicsApp", ADConvectionHeatFluxHSMaterial)
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
virtual void computeQpProperties() override
const ADMaterialProperty< Real > & _kappa
Wall contact fraction for phase.
static InputParameters validParams()
Computes heat flux from convection with heat structure for a given fluid phase.
const ADMaterialProperty< Real > & _htc_wall
Wall heat transfer coefficient for phase.