summaryrefslogtreecommitdiff
path: root/1358/CH2/EX2.20/Example220.sce
blob: bd854319f9ece8563ea88400fb426545f99e439c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Turbomachinery Design and Theory,Rama S. R. Gorla and Aijaz A. Khan, Chapter 2, Example 20")
disp("Specific speed for a single impeller is given by")
disp("Ns = N*Q^0.5/H^0.75")
Ns = 700
H = 105
N = 900
Q = 5500/60//l/s
H = (N*Q^0.5/Ns)^(4/3)
disp("Hence total number of stages :")
Ht = 105;
Stages = Ht/H
disp("Stages in series are 4")