summaryrefslogtreecommitdiff
path: root/1019/CH3/EX3.7/Example_3_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '1019/CH3/EX3.7/Example_3_7.sce')
-rw-r--r--1019/CH3/EX3.7/Example_3_7.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1019/CH3/EX3.7/Example_3_7.sce b/1019/CH3/EX3.7/Example_3_7.sce
new file mode 100644
index 000000000..75f69d72c
--- /dev/null
+++ b/1019/CH3/EX3.7/Example_3_7.sce
@@ -0,0 +1,13 @@
+//Example 3.7
+clear;
+clc;
+
+//Given
+delHfCO2 = -393.5;//heat of formation in kJ of carbondioxide
+delHfH2O = -285.8;//heat of formation in kJ of water
+delH = -3303;//heat of reaction in kJ
+
+//To determine the heat of formation of benzene
+delHfC6H6 = (3*delHfH2O)+(6*delHfCO2)-(delH);//heat of formation of benzene in kJ
+mprintf('heat of formation of benzene = %f kJ',delHfC6H6);
+//end \ No newline at end of file