19 params.
addRequiredParam<MaterialPropertyName>(
"q_wall",
"Wall heat flux material property");
20 params.
addRequiredParam<MaterialPropertyName>(
"T",
"Fluid phase temperature material property");
23 "htc_wall",
"Fluid phase wall heat transfer coefficient material property");
25 "kappa",
"Fluid phase wall contact fraction material property");
35 _q_wall(declareADProperty<Real>(getParam<MaterialPropertyName>(
"q_wall"))),
36 _T(getADMaterialProperty<Real>(
"T")),
37 _T_wall(adCoupledValue(
"T_wall")),
38 _htc_wall(getADMaterialProperty<Real>(
"htc_wall")),
39 _kappa(getADMaterialProperty<Real>(
"kappa"))
registerMooseObject("ThermalHydraulicsApp", ADConvectionHeatFluxMaterial)
Computes heat flux from convection for a given fluid phase.
const ADMaterialProperty< Real > & _T
Fluid temperature for phase.
static InputParameters validParams()
ADConvectionHeatFluxMaterial(const InputParameters ¶meters)
ADMaterialProperty< Real > & _q_wall
Wall heat flux.
virtual void computeQpProperties() override
const ADVariableValue & _T_wall
Wall temperature.
const ADMaterialProperty< Real > & _kappa
Wall contact fraction for phase.
const ADMaterialProperty< Real > & _htc_wall
Wall heat transfer coefficient for phase.
static InputParameters validParams()