diff options
Diffstat (limited to '1388/CH7/EX7.25/7_25.sce')
-rwxr-xr-x | 1388/CH7/EX7.25/7_25.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1388/CH7/EX7.25/7_25.sce b/1388/CH7/EX7.25/7_25.sce new file mode 100755 index 000000000..2d58ce724 --- /dev/null +++ b/1388/CH7/EX7.25/7_25.sce @@ -0,0 +1,13 @@ +clc
+//initialisation of variables
+V= -0.658 //volt
+V1= -0.3363 //volt
+n= 1 //electron
+F= 96438 //coloumb
+R= 8.314 //j/mol K
+T= 25 //C
+//CLACULATIONS
+V2= V-V1
+Ksp= 10^(V2*n*F/(2.303*R*(273.2+T)))
+//RESULTS
+printf (' Solubility constant = %.1e volt',Ksp)
|