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;
55 grashof(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)
73 return gravity_magnitude * beta *
abs(T_s - T_bulk) *
pow(L, 3) * (rho * rho) / (
mu *
mu);
94 return k / (rho *
cp);
101 return k / (rho *
cp);
105 peclet(Real vel, Real L, Real diffusivity)
108 return std::fabs(vel) * L / diffusivity;
116 return fabs(vel) * L / diffusivity;
MetaPhysicL::DualNumber< V, D, asd > abs(const MetaPhysicL::DualNumber< V, D, asd > &a)
Real thermalDiffusivity(Real k, Real rho, Real cp)
Compute thermal diffusivity.
DualNumber< Real, DNDerivativeType, true > ADReal
Real peclet(Real vel, Real L, Real diffusivity)
Compute Peclet number.
static const std::string cp
static const std::string mu
void mooseDeprecated(Args &&... args)
Real reynolds(Real rho, Real vel, Real L, Real mu)
Compute Reynolds number.
ExpressionBuilder::EBTerm pow(const ExpressionBuilder::EBTerm &left, T exponent)
Real laplace(Real sigma, Real rho, Real L, Real mu)
Compute Laplace number.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
Real grashof(Real beta, Real T_s, Real T_bulk, Real L, Real rho, Real mu, Real gravity_magnitude)
Compute Grashof number.
Real prandtl(Real cp, Real mu, Real k)
Compute Prandtl number.
MooseUnits pow(const MooseUnits &, int)
static const std::string k