blob: 057d720c9fe719e210142c1aa5e16806a1f24d23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Example 32_7
clc;funcprot(0);
//Given data
UF=0.5;// Use factor
CF=0.4;// Capacity factor
//Calculation
// Use factor=E/(P_c*t);.... (1)
// Capacity factor=(average load/P_c)=(E/(P_c*8760));....(2)
// Dividing euations (1) and (2) we get,
T=(8760*CF)/(UF);// hours
printf('\nThe number of hours of its operation during the year=%0.0f hours',T);
|