summaryrefslogtreecommitdiff
path: root/3733/CH4/EX4.17/Ex4_17.sce
blob: 5c683ed67e81403688a57ed3c72a4ebd8b7a2293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Example 4_17
clc;funcprot(0);
//Given data
P_1=93;// kW
H_1=64;// m
H_2=88;// m

//Calculation
//(i)For the same size,the speed is proportional to the square root of head and so
// N=N_2/N_1
N=sqrt(H_2/H_1);
// By solving N, it gives the relation N_2=1.173 N_2
N_i=((N*100)-100);//The speed increases in % 
//(ii)For the same wheel,power varies as H^3/2 and so
P_2=P_1*(H_2/H_1)^(3/2);// kW
printf('\n The speed increases by %0.1f percentage.\n The power developed,P=%0.0f kW',N_i,P_2);