summaryrefslogtreecommitdiff
path: root/2465/CH4/EX4.6/Example_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '2465/CH4/EX4.6/Example_6.sce')
-rw-r--r--2465/CH4/EX4.6/Example_6.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2465/CH4/EX4.6/Example_6.sce b/2465/CH4/EX4.6/Example_6.sce
new file mode 100644
index 000000000..7509cd20a
--- /dev/null
+++ b/2465/CH4/EX4.6/Example_6.sce
@@ -0,0 +1,18 @@
+//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)
+
+