summaryrefslogtreecommitdiff
path: root/1019/CH5/EX5.11
diff options
context:
space:
mode:
Diffstat (limited to '1019/CH5/EX5.11')
-rw-r--r--1019/CH5/EX5.11/Example_5_11.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/1019/CH5/EX5.11/Example_5_11.sce b/1019/CH5/EX5.11/Example_5_11.sce
new file mode 100644
index 000000000..190934397
--- /dev/null
+++ b/1019/CH5/EX5.11/Example_5_11.sce
@@ -0,0 +1,19 @@
+//Example 5.11
+clear;
+clc;
+
+//Given
+DHoHH=435;//Bond dissociation energy of H-H bond in kJ mol^-1
+DHoClCl=240;//Bond dissociation energy of Cl-Cl bond in kJ mol^-1
+DHoHCl=430;//Bond dissociation energy of H-Cl bond in kJ mol^-1
+SoH2=130.59;//Standard entropy of hydrogen molecule in J K^- mol^-1
+SoCl2=222.95;//Standard entropy of chlorine molecule J K^- mol^-1
+SoHCl=186.68;//Standard entropy of HCl molecule J K^- mol^-1
+T=298;//Temperature in K
+
+//To determine the free energy change
+delHo=DHoHH+DHoClCl-(2*DHoHCl);
+delSo=(SoHCl*2)-SoCl2-SoH2;
+delGo=delHo-(T*delSo*10^(-3));
+mprintf('Free energy change = %f kJ',delGo);
+//end \ No newline at end of file