diff options
Diffstat (limited to '944/CH6/EX6.23')
-rwxr-xr-x | 944/CH6/EX6.23/example6_23_TACC.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/944/CH6/EX6.23/example6_23_TACC.sce b/944/CH6/EX6.23/example6_23_TACC.sce new file mode 100755 index 000000000..6d9180bcf --- /dev/null +++ b/944/CH6/EX6.23/example6_23_TACC.sce @@ -0,0 +1,28 @@ +//example 6.23
+
+clear;
+clc;
+
+//Given:
+T=298;//Temperature[K]
+P=1;//pressure [atm]
+m=0.02;//Ionic strength of HCl solution in CH3OH[mol/Kg]
+E=32.6;//Di-electric constant
+d=0.787;//Density[gm/cm3]
+
+//To find the mean activity coefficient
+I=0.5*(0.02*1*1+0.02*1*1);//Ionic strength of HCl solution[mol/Kg]
+a=I*d;
+b=(E^3)*(298^3);
+x=(a/b)^0.5;
+Y=10^(-1.825*1000000*1*1*x);//mean activity coefficient
+printf("The mean activity coefficient is %f ",Y);
+
+
+
+
+
+
+
+
+
|