19 mooseDoOnce(
mooseDeprecated(
"This function has been moved a different file and namespace. "
20 "Please replace inclusion of DimensionlessFlowNumbers.h "
21 "with inclusion of HeatTransferUtils.h and then replace 'fp::' with "
22 "'HeatTransferUtils::'."));
29 return rho * std::fabs(vel) * L /
mu;
37 return rho * fabs(vel) * L /
mu;
55grashof(Real beta, Real T_s, Real T_bulk, Real L, Real
rho, Real
mu, Real gravity_magnitude)
58 return gravity_magnitude * beta * std::abs(T_s - T_bulk) * std::pow(L, 3) * (
rho *
rho) /
69 const ADReal & gravity_magnitude)
72 using std::abs, std::pow;
73 return gravity_magnitude * beta * abs(T_s - T_bulk) *
pow(L, 3) * (
rho *
rho) / (
mu *
mu);
80 return sigma *
rho * L / (
mu *
mu);
87 return sigma *
rho * L / (
mu *
mu);
94 return k / (
rho * cp);
101 return k / (
rho * cp);
105peclet(Real vel, Real L, Real diffusivity)
108 return std::fabs(vel) * L / diffusivity;
116 return fabs(vel) * L / diffusivity;
DualNumber< Real, DNDerivativeType, true > ADReal
ExpressionBuilder::EBTerm pow(const ExpressionBuilder::EBTerm &left, T exponent)
void mooseDeprecated(Args &&... args)
Real prandtl(Real cp, Real mu, Real k)
Compute Prandtl number.
Real thermalDiffusivity(Real k, Real rho, Real cp)
Compute thermal diffusivity.
Real laplace(Real sigma, Real rho, Real L, Real mu)
Compute Laplace number.
Real peclet(Real vel, Real L, Real diffusivity)
Compute Peclet number.
Real reynolds(Real rho, Real vel, Real L, Real mu)
Compute Reynolds number.
Real grashof(Real beta, Real T_s, Real T_bulk, Real L, Real rho, Real mu, Real gravity_magnitude)
Compute Grashof number.