summaryrefslogtreecommitdiff
path: root/2441/CH1/EX1.7/Ex1_7.sce
blob: fa7fe2be9ceff6740a36a3cf0c2c9b0ea5126c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//exa 1.7
clc;clear;close;
format('v',9);
dmax=40;//MW//Maximum demand
CF=0.5;//Capacity Factor
UF=0.8;//Utilisation Factor
LF=CF/UF;///Load Factor
disp(LF,"(a) Load Factor : ");
C=dmax/UF;//MW//Plant Capacity
disp(C,"(b) Plant Capacity(MW) : ");
RC=C-dmax;//MW//Reserve Capacity
disp(RC,"(c) Reserve Capacity(MW) : ");
p=dmax*LF*24*365;//MWh//Annual Energy Production
disp(p,"(d) Annual Energy Production(MWh) : ");