Go to the source code of this file.
|
| TEST (HeatTransferUtils, reynolds) |
|
| TEST (HeatTransferUtils, prandtl) |
|
| TEST (HeatTransferUtils, grashof) |
|
| TEST (HeatTransferUtils, laplace) |
|
| TEST (HeatTransferUtils, thermal_diffusivity) |
|
| TEST (HeatTransferUtils, peclet) |
|
◆ TEST() [1/6]
TEST |
( |
HeatTransferUtils |
, |
|
|
reynolds |
|
|
) |
| |
Definition at line 13 of file HeatTransferUtilsTest.C.
15 const Real rho = 998.0;
16 const Real vel = -2.5;
static const std::string mu
auto reynolds(const T1 &rho, const T2 &vel, const T3 &L, const T4 &mu)
Compute Reynolds number.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
◆ TEST() [2/6]
TEST |
( |
HeatTransferUtils |
, |
|
|
prandtl |
|
|
) |
| |
Definition at line 22 of file HeatTransferUtilsTest.C.
26 const Real k = 1.0020;
static const std::string cp
static const std::string mu
auto prandtl(const T1 &cp, const T2 &mu, const T3 &k)
Compute Prandtl number.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
static const std::string k
◆ TEST() [3/6]
TEST |
( |
HeatTransferUtils |
, |
|
|
grashof |
|
|
) |
| |
Definition at line 30 of file HeatTransferUtilsTest.C.
32 const Real beta = 0.000214;
34 const Real T_bulk = 0;
36 const Real rho = 998.0;
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 mu
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
◆ TEST() [4/6]
TEST |
( |
HeatTransferUtils |
, |
|
|
laplace |
|
|
) |
| |
Definition at line 43 of file HeatTransferUtilsTest.C.
46 const Real rho = 998.0;
static const std::string mu
auto laplace(const T1 &sigma, const T2 &rho, const T3 &L, const T4 &mu)
Compute Laplace number.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
◆ TEST() [5/6]
TEST |
( |
HeatTransferUtils |
, |
|
|
thermal_diffusivity |
|
|
) |
| |
Definition at line 52 of file HeatTransferUtilsTest.C.
55 const Real rho = 0.15;
auto thermalDiffusivity(const T1 &k, const T2 &rho, const T3 &cp)
Compute thermal diffusivity.
static const std::string cp
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
static const std::string k
◆ TEST() [6/6]
TEST |
( |
HeatTransferUtils |
, |
|
|
peclet |
|
|
) |
| |
Definition at line 60 of file HeatTransferUtilsTest.C.
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.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real