diff options
Diffstat (limited to '3825/CH9/EX9.7/Ex9_7.sce')
-rw-r--r-- | 3825/CH9/EX9.7/Ex9_7.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3825/CH9/EX9.7/Ex9_7.sce b/3825/CH9/EX9.7/Ex9_7.sce new file mode 100644 index 000000000..e92a73568 --- /dev/null +++ b/3825/CH9/EX9.7/Ex9_7.sce @@ -0,0 +1,18 @@ +clc
+ro=16
+gama=1.4
+T1=310.15 //temperature in kelvin
+T2=T1*(ro^(gama-1))
+mprintf("T2=%fK\n",T2)//ans vary due to roundoff error
+deltas=1.2
+CP=1.0047
+T3=(%e^(deltas/CP))*T2
+mprintf("T3=%fK\n",T3)//ans vary due to roundoff error
+q1=CP*(T3-T2)
+rc=T3/T2
+mprintf("rc=%f\n",rc)//ans vary due to roundoff error
+mprintf("q1=%fkJ/kg\n",q1)//ans vary due to roundoff error
+Eta=1-(((rc^gama)-1)/((gama*ro^(gama-1))*(rc-1)))
+mprintf("Eta=%f",Eta)//ans vary due to roundoff error
+
+
|