-
Notifications
You must be signed in to change notification settings - Fork 29
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
Exoplanet context #462
Comments
I love it! We're getting exoplanets 💚 There's a few things we'd need to figure out/discuss/implement/test regarding exoplanets that probably can be moved into their own issues but just to list them for now
I'd say easiest is if you start figuring out "exactly what forms" you'd like to simulate, and then we can work out what's needed and I can give some of these more internal issues a higher priority? |
Sounds like a plan!
|
Can can create spectral_grid = SpectralGrid(trunc=31,nlev=8) # life of every simulation starts by defining the resolution
almost_earth = EarthAtmosphere(heat_capacity=500)
model = PrimtiveWetModel(;spectral_grid, atmosphere=almost_earth) You could, however, also define your own atmosphere struct MarsAtmosphere <: SpeedyWeather.AbstractAtmosphere
p1
p2
p3
end with parameters Reminder to self to document this in the documentation 😉
Yes, technically our time axis just counts up in seconds, however, for convenience that's pu into a
We have advection, condensation and evaporation, regarding clouds we started to work on this in relation to radiation (see #460). I would love to hear your perspective here on what interaction between the different parameterizations would you envisage, e.g. how large-scale condensation determines clouds, their properties and what of that is important for a general radiation scheme. |
I'd be interested in applying SpeedyWeather.jl to exoplanet climate and adding in some commonly-used parameterizations of clouds and chemistry we use! I've yet to work out exactly what forms I want the latter part of this to take, but to start with, I think a lot of the aspects of the physics for Earth models are too precise for what we know about exoplanets. Is there a breakdown of the physics I can start with (the docs don't seem to have much about this) so I can try removing stuff I don't need + adding new components?
The text was updated successfully, but these errors were encountered: