summaryrefslogtreecommitdiff
path: root/1052/CH26/EX26.4
diff options
context:
space:
mode:
Diffstat (limited to '1052/CH26/EX26.4')
-rwxr-xr-x1052/CH26/EX26.4/264.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1052/CH26/EX26.4/264.sce b/1052/CH26/EX26.4/264.sce
new file mode 100755
index 000000000..a04024cd2
--- /dev/null
+++ b/1052/CH26/EX26.4/264.sce
@@ -0,0 +1,25 @@
+clc;
+//Example 26.4
+//page no 387
+printf("\nExample 26.4 page no 387\n\n");
+//air is used to fluidize a bed of speherical particles
+D=0.2//bed diameter,m
+d_p=7.4e-5//diameter of 200 mesh particles from table 23.2,m
+rho_s=2200//ultimate solid density
+rho_f=1.2//density of air
+meu=1.89e-5//viscosity of air
+g=9.807//grav. constant
+e=0.45//bed porosity
+L_mf=0.3//length at minimum fluidization
+//assume laminar flow
+//applying equation 26.29
+v_mf=(1-e)*g*rho_s*d_p^2/(150*e^3*meu)//minimum fluidizaton veloctiy
+printf("\n min. fluidization velocity v_mf=%f m/s",v_mf);
+//check the flow regime
+R_e=v_mf*d_p/(meu*(1-e))
+printf("\n Reynolds no R_e=%f ",R_e);
+//since R_e= 1.79 <10,flow is laminar
+m_dot=%pi*v_mf*D^2*rho_f/4//mass flow rate
+printf("\n mass flow rate m_dot =%f kg/s",m_dot);
+P_fr=round((1-e)*rho_s*g*L_mf)//gas pressure drop across the bed
+printf("\n gas pressure drop P_fr=%f Pa",P_fr);