summaryrefslogtreecommitdiff
path: root/3821/CH11/EX11.19
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3821/CH11/EX11.19
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3821/CH11/EX11.19')
-rw-r--r--3821/CH11/EX11.19/Example11_19.sce31
1 files changed, 31 insertions, 0 deletions
diff --git a/3821/CH11/EX11.19/Example11_19.sce b/3821/CH11/EX11.19/Example11_19.sce
new file mode 100644
index 000000000..8dd5a4031
--- /dev/null
+++ b/3821/CH11/EX11.19/Example11_19.sce
@@ -0,0 +1,31 @@
+///Chapter No 11 Steam Boilers
+////Example 11.19 Page No 252
+///Find Velocity of the flue gases in the chimney
+//Input data
+clc;
+clear;
+H2=38; //Stack height in m
+d1=1.8; //Stack diameter in m
+ma1=18; //Flue gases per kg of the fuel burnt
+Tg1=277+273; //Average temp of the flue gases in degree celsius
+Ta1=27+273; //Temperature of outside air in degree celsius
+h11=0.4; //Theorical draught is lost in friction in %
+g1=9.81;
+pi1=3.142
+
+//Calculation
+H3=H2*(((Tg1/Ta1)*(ma1/(ma1+1))-1)); //Theoretical draught produced in hot gas column in m
+gp1=0.40*H3; //Draught is lost in friction at the grate and passing in m
+hgc1=H3-gp1; //Actual draught produced in hot gas column in m
+V1=sqrt(2*g1*hgc1); //Velocity of the flue gases in the chimney in m/s
+rhog1=((353*(ma1+1))/(ma1*Tg1)); //Density of flue gases in Kg/m^3
+mg1=rhog1*((pi1/4)*d1^2)*V1; //Mass of gas fowing throgh the chimney in Kg/s
+
+
+//Output
+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',gp1);
+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);
+printf('Density of flue gases=%f Kg/m^3 \n',rhog1);
+printf('Mass of gas fowing throgh the chimney=%f Kg/s \n',mg1);