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/CH11/EX11.1.4/example11_4.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/CH11/EX11.1.4/example11_4.sce')
-rwxr-xr-x | 1379/CH11/EX11.1.4/example11_4.sce | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/1379/CH11/EX11.1.4/example11_4.sce b/1379/CH11/EX11.1.4/example11_4.sce new file mode 100755 index 000000000..faaac5c07 --- /dev/null +++ b/1379/CH11/EX11.1.4/example11_4.sce @@ -0,0 +1,35 @@ +
+
+//exapple 11.4
+clc; funcprot(0);
+// Initialization of Variable
+U=2.032/10^4;
+pi=3.1428;
+rho=852;
+g=9.81;
+mu=1.92/1000;
+mf=125/3600;//mass flow rate
+//calculation
+//part 1
+G=U*rho;
+A=mf/G;
+d=sqrt(4*A/pi);
+disp(d, "the diameter of vessel will be in(m):");
+//part 2
+A=0.201;
+e=0.43;
+ms=102;//mass of solids
+rhos=1500;//density of solid
+L=ms/rhos/A;
+Lmf=L/(1-e);
+disp(Lmf , "depth of bed in (m):")
+//part 3
+d1=0.2/1000;
+U=2*5.5/10^3*e^3*d1^2*(rhos-rho)*g/mu/(1-e);
+//now euating for e
+//a=e^3/(1-e)
+a=U/5.5*10^3/(d1^2*(rhos-rho)*g/mu);
+y=poly([-a a 0 1],'e',"coeff");
+e2=roots(y);
+L=Lmf*(1-e)/(1-e2(3));
+disp(L,"depth of fluidised bed under operating condition in (m):")
|