blob: 96836ec281f726ceb249034fa8c29341de301b7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
///Chapter No 11 Steam Boilers
////Example 11.10 Page No 242
//Find Draught produce in terms of water
//Input data
clc;
clear;
ma=18; //Boileruses of per Kg of fuel in Kg/Kg
hw=25*10^-3; //Chimney height to produce draught in mm
Tg=315+273; //Temperature of chimney gases in degree celsius
Ta=27+273; //Out side air temp in degree celsius
//Calculation
//Draught produce in terms of water column in m
H=(hw/(353*(1/Ta-1/Tg*((ma+1)/ma))))*1000;
//Output
printf('Draught produce in terms of water column=%f m \n',H);
|