summaryrefslogtreecommitdiff
path: root/3681/CH4/EX4.22/Ex4_22.sce
blob: ee640b754076716d6740a81a24d6f2a1b20281d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Calculating the volume of air required per second and fan power
clc;
disp('Example 4.22, Page No. = 4.50')
// Given Data
MVA = 50;// MVA rating of turbo-alternator
Q = 1500;// Total loss (in kW)
Ti = 25;// Inlet temperature of air (in degree celsius)
T = 30;// Temperature limit (in degree celsius)
H = 760;// Baromatric height (in mm of mercury)
P = 2000;// Pressure (in N per meter square)
nf = 0.4;// Fan efficiency
// Assumption
cp = 995;// Specific heat of air at constant pressure (in J per kg per degree celsius)
V = 0.775;// Volume of 1 kg of air at N.T.P. (in meter cube)
// Calculation of the volume of air required per second and fan power
Va = (V*Q*10^(3)/(cp*T))*((Ti+273)/273)*(760/H);// Volume of air (in meter cube per second)
Pf = (P*Va/nf)*10^(-3);// Fan power (in kW)
disp(Va,'Volume of air (meter cube per second)=');
disp(Pf,'Fan power (kW)=');
//in book Va is equal to 42.6 (meter cube per second) and Pf is equal to 212.5 (kW).  The answers vary due to round off error