summaryrefslogtreecommitdiff
path: root/2339/CH5/EX5.3.1/Ex5_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '2339/CH5/EX5.3.1/Ex5_3.sce')
-rwxr-xr-x2339/CH5/EX5.3.1/Ex5_3.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/2339/CH5/EX5.3.1/Ex5_3.sce b/2339/CH5/EX5.3.1/Ex5_3.sce
new file mode 100755
index 000000000..75e3cc2f6
--- /dev/null
+++ b/2339/CH5/EX5.3.1/Ex5_3.sce
@@ -0,0 +1,22 @@
+clc
+clear
+
+P=12; //in bar
+CV=34000; //in kJ/kg
+T=250; //in C
+Ms=10; //in kg/kg of coal
+Tfw=36; //in C
+Hfw=150.74; //in kJ/kg
+Hg=2784.8; //in kJ/kg
+Tsup=T;
+Tsat=188; //in C
+Cps=2.1; //in kJ/kg K
+H=Hg+(Cps*(Tsup-Tsat));
+
+Me=(Ms*(H-Hfw))/2257;
+printf('Equivalent evaporation: %3.2f kg/kg of coal',Me);
+printf('\n');
+
+Eff=(Me*250)/21.296;
+printf('Boiler Power: %3.2f kW',Eff);
+printf('\n');