summaryrefslogtreecommitdiff
path: root/3821/CH11/EX11.12/Example11_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '3821/CH11/EX11.12/Example11_12.sce')
-rw-r--r--3821/CH11/EX11.12/Example11_12.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3821/CH11/EX11.12/Example11_12.sce b/3821/CH11/EX11.12/Example11_12.sce
new file mode 100644
index 000000000..8d7c7fec7
--- /dev/null
+++ b/3821/CH11/EX11.12/Example11_12.sce
@@ -0,0 +1,18 @@
+///Chapter No 11 Steam Boilers
+////Example 11.12 Page No 243
+///Find Mean temperature of fuel gases
+//Input data
+clc;
+clear;
+H=27; //Chimney height in m
+hw=15; //Draught produces of water column in mm
+ma=21; //Gases formed per Kg of fuel burnt in Kg/Kg
+Ta=25+273; //Temperature of the ambient air in degree celsius
+
+
+//Calculation
+Tg=-(((ma+1)/ma)/((hw/(353*H))-(1/Ta))) //Mean temperature of fuel gases in K
+
+//Output
+printf('Mean temperature of fuel gases= %f K \n',Tg);
+