CoolProp
CoolProp copied to clipboard
request for r513a
See https://github.com/CoolProp/CoolProp/issues/2222#issuecomment-1470403158 You can use the HEOS backend like (C# shown)
string R513A=”HEOS::R134A[0.440]&R1234yf[0.560]” double t1 = PropsSI("H", "P", x, "Q", 1, R513A)
@Padanian Thank you so much for your response, Do you know how can I use HEOS backend in Python code?
Almost the same as c#
class Main(Thread): def run(self): R513A = 'HEOS::R134A[0.440]&R1234yf[0.560]' t1 = PropsSI("H", "P", x, "Q", 1, R513A)
EDIT: you take care of the tabs/leading spaces