blob: f927b863d889183e6ab88c77ab50bdeea66a6571 (
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
30
31
32
33
|
//Fluid Systems - By - Shiv Kumar
//Chapter 11- Centrifugal Pumps
//Example 11.5
//To Find the Discharge of Pump.
clc
clear
//Given Data:-
Hm=14.5; //Manometric Head, m
N=1000; //Speed, rpm
beta_o=30; //Vane Angle at outlet, degrees
Do=300; //Outer Diameter of the Impeller, mm
bo=50; //Width at Outlet, mm
eta_man=95/100; //Manometric Efficiency
//Data Used:-
g=9.81; //Acceleration due to gravity, m/s^2
//Computations:-
Do=Do/1000; //m
bo=bo/1000; //m
uo=%pi*Do*N/60; //m/s
Vwo=g*Hm/(uo*eta_man); //m/s
Vfo=tand(beta_o)*(uo-Vwo); //m/s
Q=%pi*Do*bo*Vfo*1000; //Discharge, litres/s
//Results:-
printf("The Discharge of the Pump=%.2f litres/s\n",Q) //The answer vary due to round off error
|