summaryrefslogtreecommitdiff
path: root/1394/CH8/EX8.3.1/Ex8_3_1.sce
blob: e4bcca8fcd0c8743660d40d79d44f573845c25d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

clc
//initialization of variables
l = 0.07 // flim thickness in cm 
v = 3 // water flow in cm/sec
D = 1.8*10^-5 // diffusion coefficient in cm^2/sec
crat = 0.1 // Ratio of c1 and c1(sat)
//Calculations
z = (((l^2)*v)/(1.38*D))*((log(1-crat))^2) //Column length
//Results
printf("the column length needed is %.1f cm",z)