summaryrefslogtreecommitdiff
path: root/32/CH11/EX11.06/11_06.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /32/CH11/EX11.06/11_06.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '32/CH11/EX11.06/11_06.sce')
-rwxr-xr-x32/CH11/EX11.06/11_06.sce33
1 files changed, 33 insertions, 0 deletions
diff --git a/32/CH11/EX11.06/11_06.sce b/32/CH11/EX11.06/11_06.sce
new file mode 100755
index 000000000..730e0ca87
--- /dev/null
+++ b/32/CH11/EX11.06/11_06.sce
@@ -0,0 +1,33 @@
+//pathname=get_absolute_file_path('11.06.sce')
+//filename=pathname+filesep()+'11.06-data.sci'
+//exec(filename)
+//Rate at which coal is burnt(in kg/hr):
+R=2.5*10^3
+//Mass per kg of fuel required for complete combustion(in kg):
+m=20
+//Temperature of burnt gases(in K):
+Tg=327+273
+//Ambient air temperature(in K):
+Ta=27+273
+//Pressure head(in mm):
+h=7+6+3+2
+//Ratio of actual natural draught to theoretical draught:
+na=0.90
+//Acceleration due to gravity(in m/s^2):
+g=9.81
+//Actual natural draught(in mm of water):
+hw=h/na
+//Height of chimney(in m):
+H=hw/(353*(1/Ta-(m+1)/(m*Tg)))
+//Density of hot gases(in kg/m^3):
+dg=353/Tg*(m+1)/m
+//Height of hot gases column(in m):
+hg=H*((m+1)/m*Tg/Ta-1)
+//Mass flow rate of hot gases(in kg/s):
+Mg=R*hw/3600
+//Velocity of got gases(in m/s):
+C=sqrt(2*g*hg)
+//Diameter of chimney(in m):
+D=sqrt((4*Mg)/(%pi*C*dg))
+printf("\n RESULT \n")
+printf("\nDiameter of chimney = %f m",D) \ No newline at end of file