summaryrefslogtreecommitdiff
path: root/1379/CH11/EX11.1.7/example11_7.sce
blob: 356377e6ed6e86593a79f02681478aac5e5ed152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


//exapple 11.7 
clc; funcprot(0);
// Initialization of Variable
e=0.4;//incipent to fluidisation
//calculation
//part 1
disp("for Re<500");
disp("the ratio of terminal velocity & minimmum fluidising velocity is");
a=3.1*1.75/e^3;
disp(sqrt(a));
//part 2
disp("for Re>500");
disp("the ratio of terminal velocity & minimmum fluidising velocity is");
a=150*(1-e)/18/e^3;
disp(a);