blob: 283f7c48a6daa894fd92aa36636ff220eba1c92c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//Fluid Systems- By Shiv Kumar
//Chapter 7- Performance of Water Turbine
//Example 7.10
// To Calculate Speed and Power Developed by the Prototype when working Under a Head of 8 m.
clc
clear
//Given:-
Lr=1/5; //Scale Ratio
DmbyDp=Lr;
//For Prototype
Hp=8; //Head, m
//For Model
Pm=5; //Power, kW
Hm=2; //Head, m
Nm=600; //rpm
//Computations
Np=Nm*DmbyDp*(Hp/Hm)^(1/2); //rpm
Pp=Pm*(Np/Nm)^3/(DmbyDp^5); //KW
//Results
printf("For the Prototype (Working Under a Head of 8 m:\n")
printf(" Speed, Np=%.f rpm\n Power Developed, Pp=%.f kW",Np,Pp)
|