diff options
Diffstat (limited to '1379/CH13/EX13.1.6/example13_6.sce')
-rwxr-xr-x | 1379/CH13/EX13.1.6/example13_6.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1379/CH13/EX13.1.6/example13_6.sce b/1379/CH13/EX13.1.6/example13_6.sce new file mode 100755 index 000000000..11cc0e8ae --- /dev/null +++ b/1379/CH13/EX13.1.6/example13_6.sce @@ -0,0 +1,18 @@ +
+
+//exapple 13.6
+clc; funcprot(0);
+// Initialization of Variable
+rho=1.210;//density of air
+mu=1.78/10^5;
+g=9.81;
+rhos=2655;//density of ore
+pi=3.1428;
+d=0.095;
+dp=2*10^-6//particle diameter
+dt=0.333;//dia of cyclone separator
+h=1.28;
+//calculation
+U=dp^2*g*(rhos-rho)/18/mu;
+Q=0.2*(pi*d^2/4)^2*d*g/U/pi/h/dt;
+disp(Q,"volumetric flow rate in(m^3/s):")
|