summaryrefslogtreecommitdiff
path: root/3821/CH11/EX11.18/Example11_18.sce
diff options
context:
space:
mode:
Diffstat (limited to '3821/CH11/EX11.18/Example11_18.sce')
-rw-r--r--3821/CH11/EX11.18/Example11_18.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/3821/CH11/EX11.18/Example11_18.sce b/3821/CH11/EX11.18/Example11_18.sce
new file mode 100644
index 000000000..6c78ce225
--- /dev/null
+++ b/3821/CH11/EX11.18/Example11_18.sce
@@ -0,0 +1,27 @@
+///Chapter No 11 Steam Boilers
+////Example 11.18 Page No 251
+///Find Actual draught produced in hot gas
+//Input data
+clc;
+clear;
+H2=24; //Chimney height in m
+Ta1=25+273; //Ambient temperature in degree celsius
+Tg1=300+273; //Temp of flue gases passing through the chimney in degree celsius
+ma1=20; //Combustion space of fuel burnt in Kg/kg of fuel
+g1=9.81;
+
+//Calculation
+hw1=((353*H2)*((1/Ta1)-((1/Tg1)*((ma1+1)/ma1)))); //Theoretical draught produced in water column in m
+ //Calculation mistake in book of hw1 it is correct according to data &calculation
+H3=H2*(((Tg1/Ta1)*(ma1/(ma1+1))-1)); //Theoretical draught produced in hot gas column in m
+H4=0.5*H3; //Draught is lost in friction at the grate and passing in m
+hgc1=H3-H4; //Actual draught produced in hot gas column in m
+V1=sqrt(2*g1*H4); //Velocity of the flue gases in the chimney in m/s
+
+
+//Output
+printf('Theoretical draught produced in water column=%f m \n',hw1);
+printf('Theoretical draught produced in hot gas column= %f m \n',H3);
+printf('Draught is lost in friction at the grate and passing=%f m \n ',H4);
+printf('Actual draught produced in hot gas column= %f m \n',hgc1);
+printf('Velocity of the flue gases in the chimney= %f m/s \n',V1);