Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
148 changes: 148 additions & 0 deletions src/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2920,3 +2920,151 @@ description = "Parameter controlling steepness of (logistic) transition between
value = 1e-3
type = "float"
description = "Parameter controlling exponential scale of favoring cloud top for cloud top calculations (unitless)."

# Orographic gravity wave (OGW)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The equation references aren't accompanied by a DOI paper link; could you please include that here as well ?

[ogw_mountain_height_width_exponent]
value = 0.4
type = "float"
description = "Mountain height width exponent (γ), L ∝ h^γ (equation 14, paper suggests γ ≈ 0.4)"

[ogw_number_density_exponent]
value = 0.0
type = "float"
description = "Number density exponent (ϵ), where number density of orography in a grid cell is n(h) ∝ h^(-ε)"

[ogw_mountain_shape_parameter]
value = 0.5
type = "float"
description = "Mountain shape parameter (β), L(z) = L_b(1 - z/h)^β (equation 12), β=1 for triangular mountains and β<1 for blunt mounrains, β>1 for pointy mountains."
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description = "Mountain shape parameter (β), L(z) = L_b(1 - z/h)^β (equation 12), β=1 for triangular mountains and β<1 for blunt mounrains, β>1 for pointy mountains."
description = "Mountain shape parameter (β), L(z) = L_b(1 - z/h)^β (equation 12), β=1 for triangular mountains and β<1 for blunt mountains, β>1 for pointy mountains."


[ogw_critical_height_threshold]
value = 0.1
type = "float"
description = "h_crit = h_frac * (V / N), demarcating the split between propagating and non-propagating orographic gravity waves"

[ogw_density_scale_factor]
value = 1.2
type = "float"
description = "Density scale factor (ρscale)"

[ogw_reference_mountain_width]
value = 80000.0
type = "float"
description = "Reference mountain width (L0) in meters"

[ogw_linear_drag_coefficient]
value = 0.9
type = "float"
description = "Linear drag coefficient (a0); (equation 13)"

[ogw_nonlinear_drag_coefficient]
value = 3.0
type = "float"
description = "Nonlinear drag coefficient (a1); equation (13)"

[ogw_critical_froude_number]
value = 0.7
type = "float"
description = "Critical Froude number (Fr_crit) computed from the critical height threshold"

# Non-orographic gravity wave (NOGW)

[nogw_source_pressure]
value = 31500.0
type = "float"
description = "Source level pressure (Pa)"

[nogw_damp_pressure]
value = 85.0
type = "float"
description = "Damping level pressure (Pa)"

[nogw_source_height]
value = 15000.0
type = "float"
description = "Source level height (m)"

[nogw_Bw]
value = 0.4
type = "float"
description = "Westward wave spectral amplitude (m^2/s^2)"

[nogw_Bn]
value = 0.0
type = "float"
description = "Northward wave spectral amplitude (m^2/s^2)"

[nogw_dc]
value = 0.8
type = "float"
description = "Phase speed resolution (m/s)"

[nogw_cmax]
value = 99.6
type = "float"
description = "Maximum phase speed (m/s)"

[nogw_c0]
value = 0.0
type = "float"
description = "Reference phase speed (m/s)"

[nogw_nk]
value = 1.0
type = "float"
description = "Number of wave bands"

[nogw_cw]
value = 35.0
type = "float"
description = "Westward phase speed half-width (m/s)"

[nogw_cw_tropics]
value = 35.0
type = "float"
description = "Tropical westward phase speed half-width (m/s)"

[nogw_cn]
value = 2.0
type = "float"
description = "Northward phase speed half-width (m/s)"

[nogw_Bt_0]
value = 0.0043
type = "float"
description = "Base total source momentum flux (Pa)"

[nogw_Bt_n]
value = 0.0
type = "float"
description = "Northern hemisphere total momentum flux amplitude (Pa)"

[nogw_Bt_s]
value = 0.0
type = "float"
description = "Southern hemisphere total momentum flux amplitude (Pa)"

[nogw_Bt_eq]
value = 0.0043
type = "float"
description = "Equatorial total momentum flux amplitude (Pa)"

[nogw_phi0_n]
value = 15.0
type = "float"
description = "Northern hemisphere latitude center (degrees)"

[nogw_phi0_s]
value = -15.0
type = "float"
description = "Southern hemisphere latitude center (degrees)"

[nogw_dphi_n]
value = 10.0
type = "float"
description = "Northern hemisphere latitude width (degrees)"

[nogw_dphi_s]
value = -10.0
type = "float"
description = "Southern hemisphere latitude width (degrees)"
Loading