Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ These stability functions are obtained by regression to experimental data.
The stability parameter for stable atmospheric conditions is defined as
```math
dζ = min(ζmax, Aˢζ)
ψₛ = - (ζ +( ζ - Dˢ ) ) exp( - dζ) - Cˢ Dˢ
ψₛ = - Bˢ * ζ⁺ -* (ζ⁺ - Dˢ) * exp(- dζ) - Cˢ *
```

While the stability parameter for unstable atmospheric conditions is calculated
Expand Down Expand Up @@ -329,7 +329,7 @@ end
dζ = min(ζmax, Aˢ * ζ⁺)

# Stability parameter for _stable_ atmospheric conditions
ψₛ = - (Bˢ * ζ⁺ + Cˢ * (ζ⁺ - Dˢ)) * exp(- dζ) - Cˢ * Dˢ
ψₛ = - Bˢ * ζ⁺ - Cˢ * (ζ⁺ - Dˢ) * exp(- dζ) - Cˢ * Dˢ

# Stability parameter for _unstable_ atmospheric conditions
fᵤ₁ = sqrt(sqrt(1 - Aᵘ * ζ⁻))
Expand Down
Loading