21 params.
addParam<MaterialPropertyName>(
"Hw",
23 "Heat transfer coefficient material property");
24 params.
addRequiredParam<MaterialPropertyName>(
"rho",
"Density of the liquid");
25 params.
addRequiredParam<MaterialPropertyName>(
"vel",
"x-component of the liquid velocity");
27 params.
addRequiredParam<MaterialPropertyName>(
"cp",
"Specific heat of the fluid");
28 params.
addRequiredParam<MaterialPropertyName>(
"mu",
"Dynamic viscosity of the fluid");
29 params.
addRequiredParam<MaterialPropertyName>(
"k",
"Heat conductivity of the fluid");
33 "Computes wall heat transfer coefficient using Dittus-Boelter equation");
40 _Hw(declareADProperty<
Real>(
"Hw")),
41 _rho(getADMaterialProperty<
Real>(
"rho")),
42 _vel(getADMaterialProperty<
Real>(
"vel")),
43 _D_h(getADMaterialProperty<
Real>(
"D_h")),
44 _k(getADMaterialProperty<
Real>(
"k")),
45 _mu(getADMaterialProperty<
Real>(
"mu")),
46 _cp(getADMaterialProperty<
Real>(
"cp")),
47 _T(getADMaterialProperty<
Real>(
"T")),
48 _T_wall(getADMaterialProperty<
Real>(
"T_wall"))
registerMooseObject("ThermalHydraulicsApp", ADWallHeatTransferCoefficient3EqnDittusBoelterMaterial)
auto Prandtl(const T1 &cp, const T2 &mu, const T3 &k)
Compute Prandtl number.
Computes wall heat transfer coefficient using Dittus-Boelter equation.
auto Reynolds(const T1 &volume_fraction, const T2 &rho, const T3 &vel, const T4 &D_h, const T5 &mu)
Compute Reynolds number.
static const std::string HEAT_TRANSFER_COEFFICIENT_WALL
const ADMaterialProperty< Real > & _vel
Velocity.
const ADMaterialProperty< Real > & _cp
Dynamic viscosity.
static InputParameters validParams()
static InputParameters validParams()
ADMaterialProperty< Real > & _Hw
Wall heat transfer coefficient.
const ADMaterialProperty< Real > & _rho
Density.
const ADMaterialProperty< Real > & _D_h
Hydraulic diameter.
const ADMaterialProperty< Real > & _T
Fluid temperature.
auto wallHeatTransferCoefficient(const T1 &Nu, const T2 &k, const T3 &D_h)
Compute wall heat transfer coefficient.
const ADMaterialProperty< Real > & _T_wall
Wall temperature.
const ADMaterialProperty< Real > & _mu
Dynamic viscosity.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
MooseUnits pow(const MooseUnits &, int)
const ADMaterialProperty< Real > & _k
Heat conduction.
virtual void computeQpProperties()
ADWallHeatTransferCoefficient3EqnDittusBoelterMaterial(const InputParameters ¶meters)