diff options
Diffstat (limited to '3831/CH14/EX14.10/Ex14_10.sce')
-rw-r--r-- | 3831/CH14/EX14.10/Ex14_10.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3831/CH14/EX14.10/Ex14_10.sce b/3831/CH14/EX14.10/Ex14_10.sce new file mode 100644 index 000000000..dfe7a8af1 --- /dev/null +++ b/3831/CH14/EX14.10/Ex14_10.sce @@ -0,0 +1,22 @@ +// Example 14_10
+clc;funcprot(0);
+// Given data
+PR=2.00;// The pressure ratio
+T_1=70+460;// R
+T_3=80.0+459.67;// R
+n_s_e=65/100;// The isentropic efficiency of the expander
+n_s_c=65/100;// The isentropic efficiency of the compressor
+k=1.40;// The specific heat ratio
+
+// Calculation
+// (a)
+COP_rBa=(((PR)^((k-1)/k))-1)^-1;// The COP for a reversed Brayton R/AC ASC
+T_4s=T_3/((PR)^((k-1)/k));// R
+T_4s=T_4s-459.67;// °F
+// (b)
+T_4=T_3-((T_3-(T_4s+459.67))*(n_s_e));// R
+T_4=T_4-459.67;// °F
+T_2s=(T_1*T_3)/(T_4s+459.67);// R
+COP_rB=(T_1-(T_4+459.67))/(((T_2s-T_1)/(n_s_c))-((T_3-(T_4s+459.67))*(n_s_e)));// The COP for a reversed Brayton cycle R/AC
+printf("\n(a)The COP for a reversed Brayton R/AC ASC,COP=%1.2f \n(b)The COP for a reversed Brayton cycle R/AC,COP=%0.3f",COP_rBa,COP_rB);
+// The answer provided in the textbook is wrong
|