diff options
Diffstat (limited to '2339/CH1/EX1.1.6/Ex1_6.sce')
-rwxr-xr-x | 2339/CH1/EX1.1.6/Ex1_6.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2339/CH1/EX1.1.6/Ex1_6.sce b/2339/CH1/EX1.1.6/Ex1_6.sce new file mode 100755 index 000000000..b1ec7dc7e --- /dev/null +++ b/2339/CH1/EX1.1.6/Ex1_6.sce @@ -0,0 +1,15 @@ +clc +clear + +Th=0.22; //Thermal Efficiency +Hr=1260; //Heat Rejected in MJ/hr +CV=42; //Calorific Value of Coal +X=1-Th; +HI=Hr/X; //Heat Input in MJ/hr + +O=((HI-Hr)*1000)/3600; //Output +Mf=HI/CV; //Mass of Fuel Used + +printf('Power Output is %2.2f kW',O); +printf('\n'); +printf('Mass of Fuel used per hour: %2.1f kg/hr',Mf); |