Hi all,
I'm calling CoolProp.dll version 6.4.3 from Matlab to calculate R410A properties.
To get the specific heat capacity at constant pressure (cp) of the saturated vapor at T = 277.65 K I would do:
cp = calllib('coolprop', 'PropsSI', 'C', 'T', 277.65, 'Q', 1, 'R410A') = 1.1726e+03
J/kgKWhich is wrong (
saturation tables say 780.41 J/kgK).
Googling around I found
this instruction for pseudo-pure fluids, and then
this answer here in the group, so I replaced the vapor quality specification with a nearly zero density, and I get a reasonable value:
cp = calllib('coolprop', 'PropsSI', 'C', 'T', 277.65, 'D', 1e-10, 'R410A') = 774.7494 J/kgK
That said, I have two questions:
1) Is PropsSI('C', 'T', T, 'D', 1e-10) a sort of cp_ideal_gas(T)?
2) How can I get cp of saturated and subcooled liquid?
Thank you so much
Luca