summaryrefslogtreecommitdiff
path: root/2705/CH1/EX1.10/Ex1_10.sce
blob: 801ac3a6f059ceb017464be267cdf38ceb2749a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
clear;
clc;
disp('Example 1.10');



//  Given values
m_dot = 3.045; //  use of coal, [tonne/h]
c = 28; // calorific value of the coal, [MJ/kg]
P_out = 4.1; //  output of turbine, [MW]

//  solution
m_dot = m_dot*10^3/3600; // [kg/s]

P_in = m_dot*c; //  power input by coal, [MW]

n = P_out/P_in; //  thermal efficiency formula

mprintf('\n Thermal efficiency of the plant is  =  %f \n',n);

//End