blob: b4b94bb301b6c7a19bdb063ae9e172fe158a78b1 (
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
|
//Fluid Systems- By Shiv Kumar
//Chapter 7- Performance of Water Turbine
//Example 7.8
// To Find Model Runner Speed and Prototype to Model Scale ratio
clc
clear
//Given:-
//For Prototype
Pp=30; //Power Developed, MW
Hp=55; //Head, m
Np=100; //Speed, rpm
Pp=Pp*1000; //KW
//For Model
Pm=25 ; //Power Developed, KW
Hm=6; //Head, m
//Computations:-
Nm=Np*(Hm/Hp)^(5/4)*(Pp/Pm)^(1/2); //rpm
DpbyDm=((Pp/Pm)*(Nm/Np)^3)^(1/5); //A Ratio(Dimensionless)
Lr= DpbyDm; //Scale Ratio
//Results
printf("The Model Runner Speed, Nm=%.2f rpm And\n",Nm)
printf("Prototype to Model Scale Ratio,Lr=%.2f",Lr) //The Answer vary due to Round off Error
|