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 /1379/CH13/EX13.1.6/example13_6.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 '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):")
|