From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3821/CH11/EX11.1/Example11_1.sce | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 3821/CH11/EX11.1/Example11_1.sce (limited to '3821/CH11/EX11.1') diff --git a/3821/CH11/EX11.1/Example11_1.sce b/3821/CH11/EX11.1/Example11_1.sce new file mode 100644 index 000000000..ab90694a0 --- /dev/null +++ b/3821/CH11/EX11.1/Example11_1.sce @@ -0,0 +1,25 @@ +///Chapter No 11 Steam Boilers +////Example 11.1 Page No 228 +///Find Mass of evaporation +//Input data +clc; +clear; +ms=5000; //Boiler produces wet steam in Kg/h +x=0.95; //Dryness function +P=10; //Operating pressure in bar +mf=5500; //Bour in the furnace in Kg +Tw=40; //Feed water temp in degree celsius + +//Calculation +//from steam table +hfw=167.45; //In KJ/Kg +hf=762.61; //In KJ/Kg +hfg=2031.6; //In KJ/Kg +hs=(hf+x*hfg); //Enthalpy of wet stream in KJ/Kg +me=ms/mf; //Mass of evaporation +E=((me*(hs-hfw))/(2257))*10; //Equivalent evaporation in Kg/Kg of coal + +//Output +printf('Enthalpy of wet stream=%f KJ/Kg \n',hs); +printf('Mass of evaporation=%f KJ/Kg \n',me); +printf('Equivalent evaporation = %f Kg/Kg of coal \n',E); -- cgit