summaryrefslogtreecommitdiff
path: root/3821/CH11/EX11.7/Example11_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3821/CH11/EX11.7/Example11_7.sce')
-rw-r--r--3821/CH11/EX11.7/Example11_7.sce34
1 files changed, 34 insertions, 0 deletions
diff --git a/3821/CH11/EX11.7/Example11_7.sce b/3821/CH11/EX11.7/Example11_7.sce
new file mode 100644
index 000000000..59c089fd0
--- /dev/null
+++ b/3821/CH11/EX11.7/Example11_7.sce
@@ -0,0 +1,34 @@
+///Chapter No 11 Steam Boilers
+////Example 11.7 Page No 234
+///Find Boiler efficiency
+///Input data
+clc;
+clear;
+E=12; //Boiler found steam in Kg/Kg
+CV=35000; //Calorific value in KJ/Kg
+ms=15000; //Boiler produces in Kg/h
+P=20; //Boiler pressure in bar
+Tw=40; //Feed water in degree celsius
+mf=1800; //Fuel consumption
+
+
+//Calculation
+//R=me(hs-hfw)
+hfw=167.45; //In KJ/Kg
+hg=2797.2; //In KJ/Kg
+Ts=211.37; //In degree celsius
+Cps=2.3;
+R=E*2257; //Equivalent evaporation in KJ/Kg of coal
+etaboiler=(R/CV)*100; //Boiler efficiency in %
+me=ms/mf; //Equivalent mass evaporation in KJ/Kg of coal
+hs=(R/me)+hfw; //In KJ/Kg
+Tsup=((hs-hg)/Cps)+Ts; //Enthalpy of superheated steam in degree celsius
+
+
+
+//Output
+printf('Equivalent evaporation=%f KJ/Kg of coal \n',R);
+printf('Boiler efficiency=%f percent \n',etaboiler);
+printf('Equivalent mass evaporation= %f KJ/Kg of coal \n',me);
+printf('hs=%f KJ/Kg \n',hs);
+printf('Enthalpy of superheated steam=%f degree celsius \n',Tsup);