summaryrefslogtreecommitdiff
path: root/1379/CH11/EX11.1.6/example11_6.sce
blob: 0f320919f12f53195c9447ffaa01db816bf10087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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):")