summaryrefslogtreecommitdiff
path: root/1967/CH16/EX16.3/16_3.sce
blob: 3d0d0c745b9528c0302b6ded9ba5f2950ce261fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clc
//initialisation of variables
clear
mu= 1
mb= 2
m= 1 
m1= 2
//CALCULATIONS
ym1= 0.5*(mu*m^2+mu*m^2)
ym2= 0.5*(mb*m^2+m*m1^2)
ym3= 0.5*(mu*m1^2+mu*m1^2)
//RESULTS
printf ('ionic strength of solution = %.f *m',ym1)
printf ('\n ionic strength of solution = %.f *m',ym2)
printf ('\n ionic strength of solution = %.f *m',ym3)