|
ERF
Energy Research and Forecasting: An Atmospheric Modeling Code
|
Functions | |
| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real | geom_length (amrex::Real l_g_raw, amrex::Real l_g_max) |
| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real | smooth_Rt (amrex::Real Rt, amrex::Real Rt_crit, amrex::Real Rt_min) |
| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real | turb_length (amrex::Real l_g, amrex::Real N2, amrex::Real tke, amrex::Real Cmu0_pow3, amrex::Real inv_Cb_sq, amrex::Real Rt_crit, amrex::Real Rt_min, amrex::Real eps) |
| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real | unstable_length_bound (amrex::Real l_g, amrex::Real Cmu0_pow3, amrex::Real inv_Cb_sq, amrex::Real Rt_min) |
| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real | dissipation (amrex::Real rho, amrex::Real Cmu0_pow3, amrex::Real tke, amrex::Real length) |
| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real | richardson (amrex::Real length, amrex::Real N2, amrex::Real tke, amrex::Real Cmu0_pow3) |
| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real | cmu (amrex::Real Rt, amrex::Real Cmu0) |
| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real | cmu_prime (amrex::Real Rt, amrex::Real Cmu0) |
Variables | |
| constexpr amrex::Real | Rt_min_lower_bound = amrex::Real(-3.6) |
| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real AL01::cmu | ( | amrex::Real | Rt, |
| amrex::Real | Cmu0 | ||
| ) |
Momentum stability function (AL01 Eq. 31).
Referenced by ComputeTurbulentViscosityRANS().

| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real AL01::cmu_prime | ( | amrex::Real | Rt, |
| amrex::Real | Cmu0 | ||
| ) |
Scalar stability function (AL01 Eq. 32).
Referenced by ComputeTurbulentViscosityRANS().

| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real AL01::dissipation | ( | amrex::Real | rho, |
| amrex::Real | Cmu0_pow3, | ||
| amrex::Real | tke, | ||
| amrex::Real | length | ||
| ) |
Dissipation rate per unit volume, rho Cmu0^3 k^1.5 / L (AL01 Eq. 19).
Referenced by ComputeTurbulentViscosityRANS().

| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real AL01::geom_length | ( | amrex::Real | l_g_raw, |
| amrex::Real | l_g_max | ||
| ) |
Geometric length scale with the harmonic cap (AL01 Eq. 22 plus limiter).
| l_g_raw | kappa times (wall distance + z0) |
| l_g_max | upper bound, about kappa times 0.1 zi |
Referenced by ComputeTurbulentViscosityRANS().

| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real AL01::richardson | ( | amrex::Real | length, |
| amrex::Real | N2, | ||
| amrex::Real | tke, | ||
| amrex::Real | Cmu0_pow3 | ||
| ) |
Turbulent Richardson number, Eq. 29 combined with Eq. 19: Rt = k^2 N^2 / eps^2 = L^2 N^2 / (k Cmu0^6).
Referenced by ComputeDiffusivityYSU(), and ComputeTurbulentViscosityRANS().

| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real AL01::smooth_Rt | ( | amrex::Real | Rt, |
| amrex::Real | Rt_crit, | ||
| amrex::Real | Rt_min | ||
| ) |
Burchard & Petersen smoothing of Rt below Rt_crit, which maps (-inf, Rt_crit) onto (Rt_min, Rt_crit) so the stability functions stay finite in strongly unstable air: Rt_s = Rt - (Rt - Rt_crit)^2 / (Rt + Rt_min - 2 Rt_crit). Written with x = Rt - Rt_crit and a = Rt_min - Rt_crit as Rt_s = Rt_crit + a x / (x + a), which is the same function without the cancellation of two O(|Rt|) terms that returned garbage for |Rt| beyond about 1e15 (tiny k under a strong unstable N^2). Limits: Rt_crit as x -> 0, Rt_min as x -> -inf.
Referenced by ComputeTurbulentViscosityRANS(), and turb_length().

| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real AL01::turb_length | ( | amrex::Real | l_g, |
| amrex::Real | N2, | ||
| amrex::Real | tke, | ||
| amrex::Real | Cmu0_pow3, | ||
| amrex::Real | inv_Cb_sq, | ||
| amrex::Real | Rt_crit, | ||
| amrex::Real | Rt_min, | ||
| amrex::Real | eps | ||
| ) |
Turbulent length scale: neutral (l_g), stable (Eq. 26) or unstable (Eq. 28).
Unstable: Eq. 28 is Eq. 26 rewritten with the dissipation of Eq. 19 on the right-hand side. Iterating it (dissipation from the new length, length from the new Rt) is the fixed-point map of Eq. 26 with N^2 < 0, which has no fixed point once l_g^2 |N^2| exceeds Cb^2 k (AL01, p. 78), so the length grows without bound in strongly convective, weakly turbulent air. Here Eq. 28 is evaluated once with the dissipation of the geometric length and the Burchard & Petersen smoothed Rt, as in the Kynema KLAxell implementation, which bounds the unstable length by l_g sqrt(1 + Cmu0^6 |Rt_min| / Cb^2), about 1.31 l_g for the defaults.
| l_g | capped geometric length |
| N2 | Brunt-Vaisala frequency squared |
| tke | turbulent kinetic energy (floored, > 0) |
| Cmu0_pow3 | Cmu0 cubed |
| inv_Cb_sq | one over Cb squared |
| Rt_crit,Rt_min | smoothing parameters |
| eps | threshold below which N2 counts as neutral |
Referenced by ComputeTurbulentViscosityRANS().


| AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE amrex::Real AL01::unstable_length_bound | ( | amrex::Real | l_g, |
| amrex::Real | Cmu0_pow3, | ||
| amrex::Real | inv_Cb_sq, | ||
| amrex::Real | Rt_min | ||
| ) |
Upper bound of the unstable length for given smoothing parameters.
|
constexpr |
Lowest admissible Rt_min: the poles of cmu' (Rt = -1/0.277) and of cmu (larger root of 1 + 0.308 Rt + 0.00837 Rt^2) both sit near -3.6.