diff options
Diffstat (limited to '1388/CH6/EX6.11')
-rwxr-xr-x | 1388/CH6/EX6.11/6_11.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1388/CH6/EX6.11/6_11.sce b/1388/CH6/EX6.11/6_11.sce new file mode 100755 index 000000000..7f51d53ff --- /dev/null +++ b/1388/CH6/EX6.11/6_11.sce @@ -0,0 +1,14 @@ +clc
+//initialisation of variables
+m= 10^-2
+m1= 10^-22
+G= -22.15 //kcal
+G1= -5.81 //kcal
+G2= 20.6 //kcal
+T= 25 //C
+R= 1.987 //cal/mol K
+//CALCULATIONS
+G3= G-(G1+G2)
+Ksp= 10^(G3*10^3/(2.303*R*(273+T)))
+//RESULTS
+printf (' Ksp = %.e ',Ksp)
|