summaryrefslogtreecommitdiff
path: root/32/CH11/EX11.04
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.04
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.04')
-rwxr-xr-x32/CH11/EX11.04/11_04.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/32/CH11/EX11.04/11_04.sce b/32/CH11/EX11.04/11_04.sce
new file mode 100755
index 000000000..af55ee893
--- /dev/null
+++ b/32/CH11/EX11.04/11_04.sce
@@ -0,0 +1,27 @@
+//pathname=get_absolute_file_path('11.04.sce')
+//filename=pathname+filesep()+'11.04-data.sci'
+//exec(filename)
+//Height of chimney(in m):
+H=60
+//Ambient air temperature(in K):
+Ta=17+273
+//Temperature of burnt gases(in K):
+Tg=300+273
+//Temperature of the artificial burnt gases(in K):
+Tga=150+273
+//Mass per kg of fuel required for complete combustion(in kg):
+m=19
+//Specific heat of hot gases(in kJ/kg.K):
+Cpg=1.0032
+//Calorific value of burnt fuel(in kJ/kg):
+c=32604
+//Draught (in mm of water column):
+hw=353*H*(1/Ta-(m+1)/(m*Tg))
+//Chimney efficiency:
+n=9.81*H*(m/(m+1)*Tg/Ta-1)/(Cpg*(Tg-Tga)*10^3)*100
+//Extra heat carried away by flue gases(in kJ):
+Q=(m+1)*Cpg*(Tg-Tga)
+printf("\n RESULT \n")
+printf("\nDraught = %f mm of water",hw)
+printf("\nChimney efficiency = %f percent",n)
+printf("\nExtra heat carried away by flue gases per kg of fuel burnt = %f kJ",Q) \ No newline at end of file