diff options
Diffstat (limited to '3821/CH11/EX11.10/Example11_10.sce')
-rw-r--r-- | 3821/CH11/EX11.10/Example11_10.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3821/CH11/EX11.10/Example11_10.sce b/3821/CH11/EX11.10/Example11_10.sce new file mode 100644 index 000000000..96836ec28 --- /dev/null +++ b/3821/CH11/EX11.10/Example11_10.sce @@ -0,0 +1,17 @@ +///Chapter No 11 Steam Boilers
+////Example 11.10 Page No 242
+//Find Draught produce in terms of water
+//Input data
+clc;
+clear;
+ma=18; //Boileruses of per Kg of fuel in Kg/Kg
+hw=25*10^-3; //Chimney height to produce draught in mm
+Tg=315+273; //Temperature of chimney gases in degree celsius
+Ta=27+273; //Out side air temp in degree celsius
+
+//Calculation
+//Draught produce in terms of water column in m
+H=(hw/(353*(1/Ta-1/Tg*((ma+1)/ma))))*1000;
+
+//Output
+printf('Draught produce in terms of water column=%f m \n',H);
|