summaryrefslogtreecommitdiff
path: root/2465/CH4/EX4.6/Ex4_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '2465/CH4/EX4.6/Ex4_6.sce')
-rw-r--r--2465/CH4/EX4.6/Ex4_6.sce18
1 files changed, 0 insertions, 18 deletions
diff --git a/2465/CH4/EX4.6/Ex4_6.sce b/2465/CH4/EX4.6/Ex4_6.sce
deleted file mode 100644
index 7509cd20a..000000000
--- a/2465/CH4/EX4.6/Ex4_6.sce
+++ /dev/null
@@ -1,18 +0,0 @@
-//Chapter-4,Example 6,Page 93
-clc;
-close;
-
-delta_H1= -337.2 // Heat combustion for ethylene
-
-delta_H2=-68.3 // Heat combustion for hudrogen
-
-delta_H3= 372.8 // Heat combustion for ethane
-
-//Given reaction is...
-// C2H4(g) +H2(g) ---> C2H6(g)
-
-delta_H= delta_H1 + delta_H2 +delta_H3
-
-printf('the heat combustion for given reaction is %.2f Kcal',delta_H)
-
-