summaryrefslogtreecommitdiff
path: root/1439/CH9/EX9.22
diff options
context:
space:
mode:
Diffstat (limited to '1439/CH9/EX9.22')
-rwxr-xr-x1439/CH9/EX9.22/9_22.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1439/CH9/EX9.22/9_22.sce b/1439/CH9/EX9.22/9_22.sce
new file mode 100755
index 000000000..6c5790f73
--- /dev/null
+++ b/1439/CH9/EX9.22/9_22.sce
@@ -0,0 +1,16 @@
+clc
+//initialisation of variables
+T= 25 //C
+R= 1.987 //cal mole^-1 K^-1
+n= 2
+dH= -21.840 //cal mole^-1
+HHCl= -37.73 //cal mole^-1
+HH2= -24.44 //cal mole^-1
+HCl= -45.95 //cal mole^-1
+//CALCULATIONS
+K= 10^((-1/(2.303*R))*((dH*n/(273.15+T))+n*HHCl-HH2-HCl))
+//RESULTS
+printf ('equilibrium constant= %.1e ',K)
+
+
+//ANSWER IN THE TEXTBOOK IS WRONG