diff options
Diffstat (limited to '3825/CH9/EX9.10/Ex9_10.sce')
-rw-r--r-- | 3825/CH9/EX9.10/Ex9_10.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3825/CH9/EX9.10/Ex9_10.sce b/3825/CH9/EX9.10/Ex9_10.sce new file mode 100644 index 000000000..22e770e05 --- /dev/null +++ b/3825/CH9/EX9.10/Ex9_10.sce @@ -0,0 +1,14 @@ +clc
+h1=178.8372
+hg=h1
+h4=75.1013
+h3=h4
+Eabs=211
+m=Eabs/(h1-h4)
+mprintf("m=%fkg/min\n",m)//ans vary due to roundoff error
+Etrans=300
+W=Etrans-Eabs
+mprintf("W=%fkJ/min\n",W)//ans vary due to roundoff error
+COPR=Eabs/W
+mprintf("COPR=%f\n",COPR)//ans vary due to roundoff error
+
|