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;
36 return rho * std::fabs(vel) * L /
mu;
54 grashof(Real beta, Real T_s, Real T_bulk, Real L, Real rho, Real
mu, Real gravity_magnitude)
57 return gravity_magnitude * beta * std::abs(T_s - T_bulk) *
std::pow(L, 3) * (rho * rho) /
68 const ADReal & gravity_magnitude)
71 return gravity_magnitude * beta * std::abs(T_s - T_bulk) *
std::pow(L, 3) * (rho * rho) /
93 return k / (rho *
cp);
100 return k / (rho *
cp);
104 peclet(Real vel, Real L, Real diffusivity)
107 return std::fabs(vel) * L / diffusivity;
114 return std::fabs(vel) * L / diffusivity;
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.
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