summaryrefslogtreecommitdiff
path: root/3856/CH4/EX4.9/Ex4_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3856/CH4/EX4.9/Ex4_9.sce')
-rw-r--r--3856/CH4/EX4.9/Ex4_9.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3856/CH4/EX4.9/Ex4_9.sce b/3856/CH4/EX4.9/Ex4_9.sce
new file mode 100644
index 000000000..467d6a390
--- /dev/null
+++ b/3856/CH4/EX4.9/Ex4_9.sce
@@ -0,0 +1,19 @@
+//Calulate the standard Enthalpy of the reaction C6H12O6(s)+6O2(g)givs 6CO2(g)+6H2O(l)at 298 K
+
+//Examlpe 4.9
+
+clc;
+
+clear;
+
+delfHbar1=-393.5; //standard Molar Enthalpy of formation at 298 K and 1 Bar for CO2 in kJ mol^-1
+
+delfHbar2=-285.8; //standard Molar Enthalpy of formation at 298 K and 1 Bar for H2O in kJ mol^-1
+
+delfHbar3=-1274.5; //standard Molar Enthalpy of formation at 298 K and 1 Bar for C6H12O6 in kJ mol^-1
+
+delfHbar4=0; //standard Molar Enthalpy of formation at 298 K and 1 Bar for O2 in kJ mol^-1
+
+delfHbar=(6*delfHbar1+6*delfHbar2)-(delfHbar3+6*delfHbar4); //standard Enthalpy of the reaction in kJ mol^-1
+
+printf("Standard Enthalpy of the reaction = %.1f kJ mol^-1",delfHbar);