diff options
Diffstat (limited to '1439/CH9/EX9.15/9_15.sce')
-rwxr-xr-x | 1439/CH9/EX9.15/9_15.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1439/CH9/EX9.15/9_15.sce b/1439/CH9/EX9.15/9_15.sce new file mode 100755 index 000000000..35ec0eaa8 --- /dev/null +++ b/1439/CH9/EX9.15/9_15.sce @@ -0,0 +1,15 @@ +clc
+//initialisation of variables
+HCO2= -94.2598 //kcal
+HH2= 0 //kcal
+HCO= -32.8079 //kcal
+HH2O= -54.6357 //kcal
+R= 1.987 //cal deg^-1 mole^-1
+T= 25 //C
+//CALCULATIONS
+Kp= 10^(-(HCO2-HCO-HH2O)/(R*2.303*(273.1+T)))
+//RESULTS
+printf ('Kp= %.2e ',Kp)
+
+
+//ANSWER IN THE TEXTBOO IS WRONG
|