10 #include "gtest/gtest.h" 15 const Real rho = 998.0;
16 const Real vel = -2.5;
26 const Real k = 1.0020;
32 const Real beta = 0.000214;
34 const Real T_bulk = 0;
36 const Real rho = 998.0;
46 const Real rho = 998.0;
55 const Real rho = 0.15;
62 const Real vel = -10.0;
64 const Real diffusivity = 1.5;
auto peclet(const T1 &vel, const T2 &L, const T3 &diffusivity)
Compute Peclet number.
TEST(HeatTransferUtils, reynolds)
Real peclet(Real vel, Real L, Real diffusivity)
Compute Peclet number.
auto thermalDiffusivity(const T1 &k, const T2 &rho, const T3 &cp)
Compute thermal diffusivity.
auto grashof(const T1 &beta, const T2 &T_s, const T3 &T_bulk, const T4 &L, const T5 &rho, const T6 &mu, Real gravity_magnitude)
Compute Grashof number.
static const std::string cp
static const std::string mu
Real reynolds(Real rho, Real vel, Real L, Real mu)
Compute Reynolds number.
auto reynolds(const T1 &rho, const T2 &vel, const T3 &L, const T4 &mu)
Compute Reynolds number.
auto prandtl(const T1 &cp, const T2 &mu, const T3 &k)
Compute Prandtl number.
Real laplace(Real sigma, Real rho, Real L, Real mu)
Compute Laplace number.
auto laplace(const T1 &sigma, const T2 &rho, const T3 &L, const T4 &mu)
Compute Laplace number.
static const std::string thermal_diffusivity
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.
static const std::string k