diff options
Diffstat (limited to '1439/CH9/EX9.14/9_14.sce')
-rwxr-xr-x | 1439/CH9/EX9.14/9_14.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1439/CH9/EX9.14/9_14.sce b/1439/CH9/EX9.14/9_14.sce new file mode 100755 index 000000000..b1fbe0dc8 --- /dev/null +++ b/1439/CH9/EX9.14/9_14.sce @@ -0,0 +1,14 @@ +clc
+//initialisation of variables
+dH= -17.889 //cal deg^-1
+T= 25 //C
+dS= -19.28 //cal deg^-1
+R= 1.987 //cal mole^-1 deg^-1
+//CALCULATIONS
+dG= dH-dS*(273.1+T)
+Kp= 10^(dG/(-R*(273.1+T)*2.303))
+///RESULTS
+printf ('Kp= %.1e ',Kp)
+
+
+//ANSWER IN THE TEXTBOOK IS WRONG
|