Fixed Humid air example that was hanging

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2015-01-20 20:57:06 -07:00
parent 6d5e6cfacf
commit f03d0b5bb9

View File

@@ -46,10 +46,10 @@ To use the HAProps function, import it and do some calls, do something like this
In [2]: h = HAPropsSI('H','T',298.15,'P',101325,'R',0.5); print h
# Temperature of saturated air at the previous enthalpy
In [2]: T = HAPropsSI('T','P',101.325,'H',h,'R',1.0); print T
In [2]: T = HAPropsSI('T','P',101325,'H',h,'R',1.0); print T
# Temperature of saturated air - order of inputs doesn't matter
In [2]: T = HAPropsSI('T','H',h,'R',1.0,'P',101.325); print T
In [2]: T = HAPropsSI('T','H',h,'R',1.0,'P',101325); print T
Or go to the :ref:`Humid-Air` documentation.