-
Notifications
You must be signed in to change notification settings - Fork 64
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
I want to calculate HumRatio from Enthalpy, Relative Humidity, and Pressure #93
Comments
Apologies for the delayed response. |
I am facing a similar issue where I have enthalpy and want to know the dry bulb temperature at saturation (effectively the above but only at 100% relative humidity)... Since this doesn't exist yet I have curve fitted the dry bulb temperature at saturation for any given enthalpy between 10 and 90 kJ/kg. The following equation will give you TDryBulb (in deg Celsius) at saturation as a function of enthalpy (in kJ/kg!); assuming sea level pressure. Accuracy is +/- 0.015:
Any point on the same enthalpy curve can be interpolated to give a reasonable estimate for non-saturated cases. |
I am working on research to make an automated fogging cooling system by sensing current humidity and set the target humidity.
I want to calculate Absolute Humidity from Enthalpy, Relative Humidity, and Pressure.
There is an exisiting function to find HumidityRatio in this library:
psychrolib.GetHumRatioFromRelHum(TDryBulb, RelHum, Pressure)
The problem is that function also needs TDryBulb. In my case, I don't have the TDryBulb, but I have the enthalpy, relative humidity and pressure. Conventionally I use the psychrometric chart to find the answer. But for this case, I need to use python to calculate this value.
Is there any existing function that can help me with this case? I still cannot find the roundabout. Maybe I have to find the TDryBulb first by using enthalpy and RelHum, then put the value to existing formula and get the HumRatio. But there is also not exist in this library.
I've found someone create a polynomial function to find enthalpy from TDryBulb and Relhum, but I cannot make it working otherwise to find the TDryBulb from enthalpy and Relhum. Here is the reference. https://www.mrexcel.com/board/threads/excel-formula-for-calculating-airs-enthalpy-from-dry-bulb-temperature-and-relative-humidity.871843/
I hope there will be new feature to include function:
GetHumRatioFromRelHumAndEnthalphy(Enthalphy, RelHum, Pressure)
or GetTdrybulbFromEnthalphy(Enthalphy, Relhum, Pressure)
Or is there anyone can help to drop the formula? I really appreciate that.
The text was updated successfully, but these errors were encountered: