diff options
Diffstat (limited to '1652/CH19/EX19.5')
-rwxr-xr-x | 1652/CH19/EX19.5/19_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1652/CH19/EX19.5/19_5.sce b/1652/CH19/EX19.5/19_5.sce new file mode 100755 index 000000000..2a62fb5b7 --- /dev/null +++ b/1652/CH19/EX19.5/19_5.sce @@ -0,0 +1,13 @@ +clc
+//Initialization of variables
+c=0.5 //M
+c1=0.000025 //M
+D2=0.280
+D1=0.417
+//calculations
+c2=D2*c1/(D1)
+dC=c1-c2
+SCN=c- 6*c2 -4*dC
+K=dC*SCN^2 /c2
+//results
+printf("Kc for dissociation = %.2f M^2",K)
|