diff options
Diffstat (limited to '3685/CH13/EX13.9/Ex13_9.sce')
-rw-r--r-- | 3685/CH13/EX13.9/Ex13_9.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3685/CH13/EX13.9/Ex13_9.sce b/3685/CH13/EX13.9/Ex13_9.sce new file mode 100644 index 000000000..1d325db7e --- /dev/null +++ b/3685/CH13/EX13.9/Ex13_9.sce @@ -0,0 +1,12 @@ +clc
+//Given that
+nc = 0.85 // Compressor efficiency
+nt = 0.9 // Turbine efficiency
+r = 3.5 // Ratio of max and min temperature
+gama = 1.4 // Ratio of heat capacities for air
+printf("\n Example 13.9 \n")
+x = (gama-1)/gama
+r_opt = ((nc*nt*r)^(2/3))^(1/x)
+printf("\n Optimum specific output is %f ",r_opt)
+//The answers vary due to round off error
+
|