blob: 63c61276ce6ba7f2761831664e6b0f6e5c61ff9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
T1 = 90 // Operating temperature of power plant in degree Celsius
T2 = 20 // Atmospheric temperature in degree Celsius
W = 1 // Power production from power plant in kW
E = 1880 // Capability of energy collection in kJ/m^2 h
printf("\n Example 6.6")
e_max = 1-((T2+273)/(T1+273)) // maximum efficiency
Qmin = W/e_max // Minimum heat requirement per second
Qmin_ = Qmin*3600 // Minimum heat requirement per hour
Amin = Qmin_/E // Minimum area requirement
printf("\n Minimum area required for the collector plate is %d m^2",ceil(Amin))
|