-
Notifications
You must be signed in to change notification settings - Fork 21
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
Calculating dry air density #5
Comments
|
You can find a complete list of handled quantities and assumptions in the docstring for atmos.calculate. |
I see. Indeed using your suggestion I can calculate it via the ideal gas law. Apparently How would you feel about separating It's nice that you're still somewhat maintaining |
rho is the air density including moisture (I suppose that's what you mean by moist air density). If you'd like a dry density, you can do that by saying the air is dry :) Just set any moisture measure you want to zero (e.g. |
How to do vertical integration, I found someone did But module 'atmos' has no attribute 'int_pres' |
Let me start by saying this is a great piece of code. I am considering using it for most of the pre-processing calculations that I currently do in my package (Pymicra). Right now the pre-processing is coded in a very ugly way (https://github.com/tomchor/pymicra/blob/master/pymicra/micro/util.py) and this would be an elegant solution.
I'd like to ask a couple of things:
1 - is there a way to calculate density of dry air? I couldn't find one.
2 - if not, how hard would it be to implement it?
3 - Is this package still being maintained? Although I would very much like to implement this in my code, this is something I have to take into consideration.
Cheers
The text was updated successfully, but these errors were encountered: