Hello There,
I am writing a program with graphical user interface that let user select two input combination for water. Once given two input, other state properties are calculated and show in table. The program currently uses IAPWS module in the background.
Now I want to use CoolProp to calculate state properties for water and other pure substances as well. I am new to CoolProp
What's the best way of calculating other state properties given two independent properties?
Should I use
AbstractState Class?
- AS = AbstractState("HEOS", "Water")
- AS.update(CoolProp.PQ_INPUTS, 101325, 1)
Then, accessing all other properties from the object
or, use the PropsSI Function?
This is the program that i am writing: