summaryrefslogtreecommitdiff
path: root/1379/CH11/EX11.1.6/example11_6.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1379/CH11/EX11.1.6/example11_6.sce
downloadScilab-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.6/example11_6.sce')
-rwxr-xr-x1379/CH11/EX11.1.6/example11_6.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/1379/CH11/EX11.1.6/example11_6.sce b/1379/CH11/EX11.1.6/example11_6.sce
new file mode 100755
index 000000000..0f320919f
--- /dev/null
+++ b/1379/CH11/EX11.1.6/example11_6.sce
@@ -0,0 +1,23 @@
+
+
+//exapple 11.6
+clc; funcprot(0);
+// Initialization of Variable
+dt=12.7/1000;
+d=1.8/1000;
+Q=2.306/10^6;
+pi=3.1428;
+//calculation
+//part 1
+Sc=4/dt;
+S=6/d;
+f=(1+0.5*Sc/S)^2;
+U=Q*4/pi/dt^2;//velocity
+Ua=f*U;//actual velocity
+disp(Ua,"minimum fluidising velocity found using smaller glass column in (m/s):")
+//part 2
+dt=1.5;
+Sc=4/dt;
+f=(1+0.5*Sc/S)^2;
+Ua=f*U;//actual velocity
+disp(Ua,"fluidising velocity found using larger glass column in (m/s):")