summaryrefslogtreecommitdiff
path: root/2762/CH3/EX3.1.3/3_1_3.sce
blob: 3829dd2c6b01012d4c172d686ea9505ab220a5b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Transport Processes and Seperation Process Principles
//Chapter 3
//Example 3.1-3
//Principles of Momentum Transfer and Applications
//given data
basis=1;//taking basis as 1 m3 of packed bed
rho=962;//bulk density of packed bed
m=rho*basis;//total mass
rho2=1600;//density of solid cylinders 
V=m/rho2;//volume of the cylinder
E=(basis-V)/(basis);//void fraction
mprintf("void fraction = %f",E);
D=0.02;//diameter of cylinder
Av=6/D;// Av= Sp/Vp where Sp is the surface area of the particle and D is the diameter of the particle
Dp=6/Av;//effectice diameter
mprintf(" ii) effectice diameter = %f m",Dp);
a=(6/Dp)*(1-E);//value of a
mprintf(" iii) value of a= %f m-1",a)
//end