summaryrefslogtreecommitdiff
path: root/3821/CH11/EX11.12/Example11_12.sce
blob: 8d7c7fec74c12e8a9411cc4e9b600e80498e96b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
///Chapter No 11 Steam Boilers
////Example 11.12 Page No 243
///Find Mean temperature of fuel gases
//Input data
clc;
clear;
H=27;                                //Chimney height in m
hw=15;                              //Draught produces of water column in mm
ma=21;                               //Gases formed per Kg of fuel burnt in Kg/Kg
Ta=25+273;                           //Temperature of the ambient air in degree celsius


//Calculation
Tg=-(((ma+1)/ma)/((hw/(353*H))-(1/Ta))) //Mean temperature of fuel gases in K

//Output
printf('Mean temperature of fuel gases= %f K \n',Tg);