summaryrefslogtreecommitdiff
path: root/944/CH6/EX6.23/example6_23_TACC.sce
blob: 6d9180bcfa3b6f11e70d2632985691bbbdd6189c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);