100% found this document useful (2 votes)
2K views

Lab-07 Unit Commitment Using Priority List Scheme

The document discusses using the priority list (merit order) method to solve the unit commitment problem (UCP). It describes calculating the full load average cost for each generator and ranking them from lowest to highest cost. The highest priority generators are committed first until the power demand is met. The example provided commits generators 1 and 2 at 40% and 15% of their capacity respectively to meet a demand of 550MW at minimum cost. In conclusion, UCP selects the most economical generating units to meet forecasted load while economic dispatch further minimizes costs within the committed schedule.

Uploaded by

Ahsan Ali
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
100% found this document useful (2 votes)
2K views

Lab-07 Unit Commitment Using Priority List Scheme

The document discusses using the priority list (merit order) method to solve the unit commitment problem (UCP). It describes calculating the full load average cost for each generator and ranking them from lowest to highest cost. The highest priority generators are committed first until the power demand is met. The example provided commits generators 1 and 2 at 40% and 15% of their capacity respectively to meet a demand of 550MW at minimum cost. In conclusion, UCP selects the most economical generating units to meet forecasted load while economic dispatch further minimizes costs within the committed schedule.

Uploaded by

Ahsan Ali
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 4

Unit Commitment Using Priority List Scheme

Objectives:

Methods to solve the U.C problem

To understand Priority List Scheme

To solve Unit Commitment Problem (UCP) using Priority List Scheme

Theory:
The different methods to solve the U.C problem are:1. LR method
2. Priority list method
3. Dynamic programming method
The P.L method is also called the merit order method. In this method, the number of combinations
are reduced. Important features of this method are that first Full Load Average Cost is calculated
generators are then loaded on the bases of FLA cost is loaded & generator with minimum cost is
loaded first and so on.

SYSTEM
H 1 ( P1 ) = 510 + 72 P1 + 0.00142 P1

H 2 ( P2 ) = 310 + 7.85P2 + 0.00194 P2


H 3 ( P3 ) = 78 + 7.97 P3 + 0.00482 P3
LIMITS
150 P1 600
100 P2 400
50 P3 200
COSTS
C1 = 1.1 $ / h
C2 = 1.0 $ / h
C3 = 1.2 $ / h
Power Demand = 550 MW

Code:
function [p,cost]=Pri_list(h,C,plower,pupper,pd)
%h=[510 72 0.00142;310 7.85 0.00194;78 7.97 0.00482];
%C=[1.1 1.0 1.2];
%plower=[150 100 50];
%pupper=[600 400 200];
%pd=550;
n=length(plower);
disp('F(p)=')
for i=1:n
cost(i,:)=h(i,:)*C(1,i);
disp(cost(i,:));
end
for i=1:n
a(i,1)=cost(i,1);
b(i,1)=cost(i,2);
y(i,1)=cost(i,3);
end
disp('full load average cost=')
for i=1:n
fla(i,1)=(a(i,1)+b(i,1)*pupper(1,i)+y(i,1)*pupper(1,i)^2)/pupper(1,i);
disp(fla(i,1))
end
p=fla;
p(:,2)=plower';
p(:,3)=pupper';
p=sortrows(p);
p(1,4)=p(1,2);
p(1,5)=p(1,3);
for i=1:n-1
p(i+1,4)=p(i+1,2)+p(i,4);
p(i+1,5)=p(i+1,3)+p(i,5);
end
for i=1:n
if pd>=p(i,5)
p(i,6)=p(i,3);
end
if pd<p(i,5)

g=0;
for j=1:i-1
g=g+p(j,3);
end
p(i,6)=pd-g;
end
end
for i=1:n
if p(i,6)<0
p(i,6)=0;
end
end
c=p(:,6);
cost=sum( [sum(a) sum(b.*c) sum(y.*c.*c)]);
end
Result:
F(p)=
561.0000 79.2000 0.0016
310.0000 7.8500 0.0019
93.6000 9.5640 0.0058
full load average cost=
9.7922
9.4010
11.1888
p=
1.0e+003 *
0.0094 0.1000 0.4000 0.1000 0.4000 0.4000
0.0112 0.0500 0.2000 0.1500 0.6000 0.1500
0.0811 0.1500 0.6000 0.3000 1.2000
0
cost =
3.4116e+004

Conclusion:
Unit Commitment Problem is a problem on broad basis i.e. to select units from a no. of available
stations to meet forecasted load on the system during certain period. Economic Dispatch Problem
is a step within UCP which is performed for all possible combinations. Also EDP is performed
later when UC has already been done to minimize the cost.

You might also like