mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-14 00:18:22 -05:00
22 lines
703 B
Python
22 lines
703 B
Python
from CoolProp.Plots import PropertyPlot
|
|
|
|
#plot = PropertyPlot("HEOS::ISOBUTAN[0.8]&PROPANE[0.2]", 'PH', unit_system='EUR', tp_limits='ACHP')
|
|
# plot.calc_isolines()
|
|
# plot.show()
|
|
|
|
#plot = PropertyPlot("HEOS::ISOBUTAN[0.8]&PROPANE[0.2]", 'TS', unit_system='EUR', tp_limits='ORC')
|
|
# plot.calc_isolines()
|
|
# plot.show()
|
|
|
|
plot = PropertyPlot("REFPROP::ISOBUTAN[0.8]&PROPANE[0.2]", 'PH', unit_system='EUR', tp_limits='ACHP')
|
|
plot.calc_isolines()
|
|
plot.show()
|
|
|
|
#plot = PropertyPlot("REFPROP::ISOBUTAN[0.8]&PROPANE[0.2]", 'TS', unit_system='EUR', tp_limits='ORC')
|
|
# plot.calc_isolines()
|
|
# plot.show()
|
|
|
|
plot = PropertyPlot("HEOS::R134a", 'PH', unit_system='EUR', tp_limits='ACHP')
|
|
plot.calc_isolines()
|
|
plot.show()
|