blob: 338c6ec47ae3ac4b1b106b802a16fda4ed45b43b (
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
|
//Fluid Systems - By - Shiv Kumar
//Chapter 11- Centrifugal Pumps
//Example 11.3
//To Find the Power of the Pump.
clc
clear
//Given Data:-
H=40; //Total Head, m
Q=50; //Discharge, litres/s
eta_o=62/100; //Overall EEfficiency
//Data Used:-
rho=1000; //Density of Water, kg/m^3
g=9.81; //Acceleration due to gravity, m/s^2
//Computations:-
Q=Q/1000; //m^3/s
P=rho*Q*g*H/(eta_o*1000); //kW
//Result:-
printf("The Power of the Pump, P=%.3f kW \n",P)
|