diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2762/CH3/EX3.1.3/3_1_3.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2762/CH3/EX3.1.3/3_1_3.sce')
-rwxr-xr-x | 2762/CH3/EX3.1.3/3_1_3.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2762/CH3/EX3.1.3/3_1_3.sce b/2762/CH3/EX3.1.3/3_1_3.sce new file mode 100755 index 000000000..3829dd2c6 --- /dev/null +++ b/2762/CH3/EX3.1.3/3_1_3.sce @@ -0,0 +1,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
|