1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| import os, numpy as np from ctREFPROP.ctREFPROP import REFPROPFunctionLibrary
def calculate_properties(): RP = REFPROPFunctionLibrary(os.environ['RPPREFIX']) RP.SETPATHdll(os.environ['RPPREFIX'])
MOLAR_BASE_SI = RP.GETENUMdll(0, "MASS BASE SI").iEnum
substance = "HYDROGEN"
temperature = 298.15 pressure = 101325
H_result = RP.REFPROPdll(substance, "PT","H", MOLAR_BASE_SI, 0, 0, pressure, temperature, [1.0]) D_result = RP.REFPROPdll(substance, "PT","D", MOLAR_BASE_SI, 0, 0, pressure, temperature, [1.0]) S_result = RP.REFPROPdll(substance, "PT","S", MOLAR_BASE_SI, 0, 0, pressure, temperature, [1.0]) if H_result.ierr == 0 and D_result.ierr == 0 and S_result.ierr == 0: print("计算得到的H=:",H_result.Output[0]) print("计算得到的D=:",D_result.Output[0]) print("计算得到的S=:",S_result.Output[0]) else: print(f"错误: {H_result.herr}")
if __name__=='__main__': os.environ['RPPREFIX'] = r'D:/REFPROP10'
calculate_properties()
|