diff options
Diffstat (limited to '3825/CH8/EX8.3/Ex8_3.sce')
-rw-r--r-- | 3825/CH8/EX8.3/Ex8_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3825/CH8/EX8.3/Ex8_3.sce b/3825/CH8/EX8.3/Ex8_3.sce new file mode 100644 index 000000000..100957904 --- /dev/null +++ b/3825/CH8/EX8.3/Ex8_3.sce @@ -0,0 +1,14 @@ +clc
+hi=2947.95
+si=7.0248
+se=si
+sg=7.3598
+sf=1.3027
+Xe=(se-sf)/(sg-sf)
+mprintf("Xe=%g\n",Xe)//ans vary due to roundoff error
+hg=2675.4
+hf=417.54
+he=(Xe*hg)+(1-Xe)*hf
+mprintf("he=%fkJ/kg\n",he)//ans vary due to roundoff error
+W=hi-he
+mprintf("W=%fkJ/s",W)//ans vary due to roundoff error
|