summaryrefslogtreecommitdiff
path: root/3856/CH8/EX8.6
diff options
context:
space:
mode:
Diffstat (limited to '3856/CH8/EX8.6')
-rw-r--r--3856/CH8/EX8.6/Ex8_6.sce19
-rw-r--r--3856/CH8/EX8.6/Ex8_6.txt1
2 files changed, 20 insertions, 0 deletions
diff --git a/3856/CH8/EX8.6/Ex8_6.sce b/3856/CH8/EX8.6/Ex8_6.sce
new file mode 100644
index 000000000..503b719a7
--- /dev/null
+++ b/3856/CH8/EX8.6/Ex8_6.sce
@@ -0,0 +1,19 @@
+//Calculate the value of Standard Molar Enthalpy of formation of Sodium ion (delfHNa)for reaction Na(s)+1/2Cl2(g)=Na^+(aq)+Cl^-(aq)
+
+//Example 8.6
+
+clc;
+
+clear;
+
+delrH=-406.9; //Standard Enthalpy of reaction in kJ mol^-1
+
+delfH2=-167.2; //Standard molar Enthalpy of Chloride ion in kJ mol^-1
+
+delfH3=0; //Standard molar Enthalpy of Chlorine gas in kJ mol^-1
+
+delfH4=0; //Standard molar Enthalpy of Sodium in kJ mol^-1
+
+delfH1=delrH+delfH3+delfH4-delfH2; //Standard molar Enthalpy of Sodium ion in kJ mol^-1
+
+printf("Standard Molar Enthalpy of Sodium ion = %.1f kJ mol^-1",delfH1);
diff --git a/3856/CH8/EX8.6/Ex8_6.txt b/3856/CH8/EX8.6/Ex8_6.txt
new file mode 100644
index 000000000..6b0235121
--- /dev/null
+++ b/3856/CH8/EX8.6/Ex8_6.txt
@@ -0,0 +1 @@
+ Standard Molar Enthalpy of Sodium ion = -239.7 kJ mol^-1 \ No newline at end of file