summaryrefslogtreecommitdiff
path: root/2465/CH4/EX4.8/Ex4_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '2465/CH4/EX4.8/Ex4_8.sce')
-rw-r--r--2465/CH4/EX4.8/Ex4_8.sce23
1 files changed, 0 insertions, 23 deletions
diff --git a/2465/CH4/EX4.8/Ex4_8.sce b/2465/CH4/EX4.8/Ex4_8.sce
deleted file mode 100644
index 2a642f92e..000000000
--- a/2465/CH4/EX4.8/Ex4_8.sce
+++ /dev/null
@@ -1,23 +0,0 @@
-//Chapter-4,Example 8,Page 94
-clc;
-close;
-
-delta_H_C= -393 // enthalpy for carbon
-
-delta_H_H2= -286 //enthalpy for hydrogen
-
-delta_H_C3H8=-2220 //enthalpy for propane
-
-// According to Hess's Law... delta_H1 = delta_H2 - delta_H3
-
-//delta_H2 for reaction... 3C +4H2 +5O2 ----> 3CO2 +4H2O
-
-delta_H2= 3*delta_H_C +4*delta_H_H2
-
-//delta_H2 for reaction... C3H8 + 5O2 ----> 3CO2 +4H2O
-
-delta_H3= delta_H_C3H8
-
-delta_Hf= delta_H2 - delta_H3 //enthalpy for propane at 298 K
-
-printf('the enthalpy of formation of propane at 298K is %.f Kcal', delta_Hf)