diff options
Diffstat (limited to '2339/CH5/EX5.10.1/Ex5_10.sce')
-rwxr-xr-x | 2339/CH5/EX5.10.1/Ex5_10.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2339/CH5/EX5.10.1/Ex5_10.sce b/2339/CH5/EX5.10.1/Ex5_10.sce new file mode 100755 index 000000000..ba0d98e5a --- /dev/null +++ b/2339/CH5/EX5.10.1/Ex5_10.sce @@ -0,0 +1,21 @@ +clc
+clear
+
+//At 10 bar pressure
+Tsat=179.9;
+Tsup=250;
+Cps=2.1; //in kJ/kg K
+
+Hg=2778.1; //in kJ/kg
+Ms=10; //in kg/kg of coal
+Hsup=Hg+(Cps*(Tsup-Tsat));
+
+Hfw=155;
+Me=(Ms*(Hsup-Hfw))/2257;
+
+FOE=Me/Ms; //Factor of Evaporation
+BP=(Me*370)/21.296;
+printf('Equivalent Evaporation: %3.1f kg/kg of coal',Me);
+printf('\n');
+printf('Boiler Power: %3.1f kW',BP);
+printf('\n');
|