You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a good way to do reverse lookups of the values?
For instance, I need to get:
pressure as a function of enthalpy and density
temperature as a function of enthalpy and pressure
Currently the only way I can see is to do a binary search using an initial guess at the pressure/temperature, but this is very inefficient.
Thanks!
The text was updated successfully, but these errors were encountered:
#24 adds Temperature_Ph and Temperature_Ps. IF-97 actually has backward equations for some of those ranges, but i added a root-finding strategy for those regions that don't have one. on the phase transition, the enthalpy varies, but the temperature remains constants, so if P < Pc and hl(Tsat(P)) <= h <= hv(Tsat(P)), then the temperature is Tsat(P).
Is there a good way to do reverse lookups of the values?
For instance, I need to get:
Currently the only way I can see is to do a binary search using an initial guess at the pressure/temperature, but this is very inefficient.
Thanks!
The text was updated successfully, but these errors were encountered: