summaryrefslogtreecommitdiff
path: root/2465/CH18/EX18.1/Ex18_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '2465/CH18/EX18.1/Ex18_1.sce')
-rw-r--r--2465/CH18/EX18.1/Ex18_1.sce27
1 files changed, 0 insertions, 27 deletions
diff --git a/2465/CH18/EX18.1/Ex18_1.sce b/2465/CH18/EX18.1/Ex18_1.sce
deleted file mode 100644
index d93962d69..000000000
--- a/2465/CH18/EX18.1/Ex18_1.sce
+++ /dev/null
@@ -1,27 +0,0 @@
-//Chapter-18,Example 1,Page 404
-clc();
-close();
-
-H=6
-
-W= 2200 //water equivalent of bomb calorimeter
-
-w= 550 //weight of water taken
-
-del_t = 2.42 //rise in temperature
-
-m= 0.92 //weight of coal burnt
-
-L =580 //latent heat of steam
-
-fuse = 10 //fuse correction
-
-acid =50 //acid correction
-
-HCV=((W+w)*(del_t)-(acid+fuse))/m
-
-NCV=HCV-(0.09*H*L)
-
-printf("HCV = %.2f cal/g",HCV)
-
-printf("\n NCV = %.2f cal/g",NCV)