>> CoolProp.PropsSI('U','T',400,'P',101325,'CarbonMonoxide')/1000*28
ans =
1.2040e+04
>> CoolProp.PropsSI('U','T',300,'P',101325,'CarbonMonoxide')/1000*28
ans =
9.9486e+03
--
You received this message because you are subscribed to the Google Groups "coolprop-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to coolprop-users+unsubscribe@googlegroups.com.
To post to this group, send email to coolprop-users@googlegroups.com.
Visit this group at https://groups.google.com/group/coolprop-users.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to coolprop-user...@googlegroups.com.
To post to this group, send email to coolpro...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to coolprop-users+unsubscribe@googlegroups.com.
To post to this group, send email to coolprop-users@googlegroups.com.
Process 1-2 sees an internal energy increase, and the coolprops calls reflect that...
State 1:
>> CoolProp.PropsSI('U','P',1.5e5,'Q',.2,'Water')
ans =
8.7742e+05
>> CoolProp.PropsSI('U','P',1.5e5,'D', 1/.3723,'Water')
ans =
1.1247e+06
>> CoolProp.PropsSI('U','Q',1.0,'D',1/.3723,'Water')
ans =
6.4069e+05
To unsubscribe from this group and stop receiving emails from it, send an email to coolprop-users+unsubscribe@googlegroups.com.
To post to this group, send email to coolprop-users@googlegroups.com.
The system moves from states red->green->magenta. Here are the coolprop calls for each state.
State_1 (given information - saturated liquid vapor mix, q=0.2, P=1.5 bar):
>> T1=CoolProp.PropsSI('T','P',1.5e5,'Q',0.2,'Water')
T1 =
384.4994
>> U1=CoolProp.PropsSI('U','P',1.5e5,'Q',0.2,'Water')
U1 =
8.7742e+05
>> D1=CoolProp.PropsSI('D','P',1.5e5,'Q',0.2,'Water')
D1 =
4.2974
>> V1=1/D1
V1 =
0.2327
>> V2=1.6*V1
V2 =
0.3723
>> D2=1/V2
D2 =
2.6859
>> T2=CoolProp.PropsSI('T','D',D2,'P',1.5e5,'Water')
T2 =
384.4994
>> U2=CoolProp.PropsSI('U','D',D2,'P',1.5e5,'Water')
U2 =
1.1248e+06
>> D3=D2
D3 =
2.6859
>> V3=1/D3
V3 =
0.3723
>> T3=CoolProp.PropsSI('T','D',D3,'Q',1.0,'Water')
T3 =
425.2474
>> P3=CoolProp.PropsSI('P','D',D3,'Q',1.0,'Water')
P3 =
5.0355e+05
>> U3=CoolProp.PropsSI('U','D',D3,'Q',1,'Water')
U3 =
6.4069e+05
>> U3=CoolProp.PropsSI('U','T',T3,'Q',1,'Water')
U3 =
2.5609e+06
>> D3
D3 =
2.6859
>> T3
T3 =
425.2474
>> CoolProp.PropsSI('D','T',T3,'Q',1,'Water')
ans =
2.6859
>> CoolProp.PropsSI('T','D',D3,'Q',1,'Water')
ans =
425.2474
>> P3=CoolProp.PropsSI('P','D',D3,'T',T3,'Water')
P3 =
5.0355e+05
>> U3=CoolProp.PropsSI('U','T',T3,'P',P3,'Water')
Warning: Saturation pressure [503546 Pa] corresponding to T [425.247 K] is within 1e-4 400f given p [503546 Pa]
Error using CoolPropMATLAB_wrap
Fatal error.
Error in CoolProp.PropsSI (line 2)
[varargout{1:max(1,nargout)}] = CoolPropMATLAB_wrap(353,varargin{:});
>> CoolProp.PropsSI('U','T',T3,'D',D3,'Water')
ans =
2.5609e+06
>> CoolProp.PropsSI('U','P',P3,'D',D3,'Water')
ans =
2.5609e+06
>> CoolProp.PropsSI('U','P',P3,'Q',1,'Water')
ans =
2.5609e+06
>> CoolProp.PropsSI('U','T',T3,'Q',1,'Water')
ans =
2.5609e+06
>> CoolProp.PropsSI('U','D',D3,'Q',1,'Water')
ans =
6.4069e+05
To unsubscribe from this group and stop receiving emails from it, send an email to coolprop-users+unsubscribe@googlegroups.com.
To post to this group, send email to coolprop-users@googlegroups.com.