Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hybrid vertical coordinates #329

Closed
milankl opened this issue May 16, 2023 · 3 comments
Closed

Hybrid vertical coordinates #329

milankl opened this issue May 16, 2023 · 3 comments
Labels
enhancement 🔍 New feature or request vertical ⬆️ Affecting the vertical dimension

Comments

@milankl
Copy link
Member

milankl commented May 16, 2023

Most atmospheric models use hybrid sigma-pressure coordinates, this could be one way of defining them easily

pref = 1013

# sigma coordinates
nlev = 8
σ_half = range(0,1,length=nlev+1)
p_σ = σ_half*ps'

# hybrid coordinates
γ(σ) = @. σ
A,B = σ_half.*(1 .- γ(σ_half)),σ_half.*γ(σ_half)
p_h = A*(pref*ones(n))' .+ B*ps'

image
(green) sigma-pressure coordinates (black) sigma coordinates

@milankl milankl added enhancement 🔍 New feature or request vertical ⬆️ Affecting the vertical dimension labels May 16, 2023
@milankl milankl added this to the v0.6 milestone May 16, 2023
@milankl
Copy link
Member Author

milankl commented Aug 23, 2023

Following

image

and

image

from the GFDL spectral model documentation.

@milankl milankl removed this from the v0.6 milestone Aug 30, 2023
@milankl
Copy link
Member Author

milankl commented Nov 7, 2023

Currently going rather the other direction with #409 as I don't see a good argument yet that a more sophisticated vertical coordinate is essential

@milankl
Copy link
Member Author

milankl commented Dec 18, 2023

With NeuralGCM basically beating all other weather forecasts I'm tempted to postpone the idea of hybrid coordinates for now, as I don't see a big urgency for these.

@milankl milankl closed this as completed Dec 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement 🔍 New feature or request vertical ⬆️ Affecting the vertical dimension
Projects
None yet
Development

No branches or pull requests

1 participant