-
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
Calculate absolute humidity from temperature and relative humidity #3
Comments
You can calculate AH from density (rho, in kg/m^3), pressure (p, in Pa), relative humidity (RH, in percent), and temperature (T, in degK) using the following sequence of formulas:
You can also use |
can I use the FluidSolver for this? |
Yes, using debug=True. Though it should be simpler to use calculate. Specifically:
The second returned value should be a list of functions, and you can look at their docstrings or at their |
Hey there, Thanks for the simple sequence of formulas. Its really convenient. Can you please provide reference from where you got the formulas? I want to add them in my report for reference. Many thanks. |
@iamz33 when writing I put references down in the docstrings for equations, using an automatic documentation thing I wrote in the equations module. The dictionary |
Ah, cool. You can also access the references of the equations using e.g. |
Perfect!! Thanks. |
Hi!
I got a bit lost in all of these formulas. Could someone tell what would be the most elegant way to calculate the absolute humidity from a given temperature and a relative humidity value?
Best, vrs01
The text was updated successfully, but these errors were encountered: