CoolProp icon indicating copy to clipboard operation
CoolProp copied to clipboard

request  for r513a

Open yasiaee opened this issue 2 years ago • 3 comments

yasiaee avatar Feb 21 '23 16:02 yasiaee

image

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 avatar Mar 29 '23 14:03 Padanian

@Padanian Thank you so much for your response, Do you know how can I use HEOS backend in Python code?

yasiaee avatar Mar 30 '23 14:03 yasiaee

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

Padanian avatar Mar 30 '23 14:03 Padanian