SlideShare a Scribd company logo
1 of 23
Download to read offline
ECE 5314: Power System Operation & Control
Lecture 6: Unit Commitment
Vassilis Kekatos
R1 A. J. Wood, B. F. Wollenberg, and G. B. Sheble, Power Generation, Operation, and Control,
Wiley, 2014, Chapters 3-4.
R2 A. Gomez-Exposito, A. J. Conejo, C. Canizares, Electric Energy Systems: Analysis and
Operation, Chapter 5.
Lecture 6 V. Kekatos 1
Motivation
Economic dispatch assumes all units to be online and ready to produce, but:
• ramping and must-stay-on/off constraints
• start-up/shut-down costs (cooling vs. banking)
• crew constraints (units that cannot be started together)
• spinning (coal) and offline (hydro, gas) reserves
• fuel constraints (use it or loose it)
• must-run status (due to voltage regulation or other functions)
Such constraints are accommodated by unit commitment problems
• bad news: non-convex, hard to solve
• good news: solved in advance (day-ahead)
Lecture 6 V. Kekatos 2
Static unit commitment
• Extend ED to include on/off scheduling of units
• Binary variable: ui = 1 if unit i is scheduled to be on; 0 otherwise
• If unit i is scheduled to be on, it has to produce at least Pmin
i
min
{Pi,ui}i
N
X
i=1
uiCi(Pi)
s.to
N
X
i=1
Pi = D
uiPmin
i ≤ Pi ≤ uiPmax
i , ∀ i
ui ∈ {0, 1}, ∀ i
• For economic dispatch, all ui’s have already been decided
Lecture 6 V. Kekatos 3
An example
Two generators with quadratic costs Ci(Pi) = C0i + aiPi + bi
2
P2
i
C0i [$/h] ai [$/MWh] bi [$/(MW)2h] Pmin
i [MW] Pmax
i [MW]
G1 100 20 0.05 0 400
G2 200 25 0.10 0 300
Unit commitment for different loads D
Case D [MW] P1 [MW] P2 [MW] λ [$/MWh] Cost [$/h]
(1,0) 40 40 0 22 940
(0,1) 40 0 40 29 1,280
(1,1) 40 40 0 22 1,140
(1,0) 250 250 0 33 6,663
(0,1) 250 0 250 50 9,575
(1,1) 250 200 50 30 6,675
(1,0) 300 300 0 35 8,350
(0,1) 300 0 300 55 12,200
(1,1) 300 233 67 32 8,217
Lecture 6 V. Kekatos 4
Avoiding bilinear products
• MILPs are the ‘easiest’ mixed-integer programs
• To remain within MILP class, need to avoid products of variables
• Generation capacity constraints
uiPmin
i ≤ Pi ≤ uiPmax
i vs. uiPmin
i ≤ uiPi ≤ uiPmax
i
• Generation cost uiCi(Pi) for Ci(Pi) = C0i + aiPi + bi
2
P2
i
uiCo,i + aiPi +
bi
2
P2
i vs. uiCo,i + aiuiPi +
bi
2
uiP2
i
Lecture 6 V. Kekatos 5
Multi-period unit commitment
N generation units over T control periods (24 hours of a day)
min
{P t
i ,ut
i,st
i}i,t
T
X
t=1
N
X
i=1
ut
iCt
i (Pt
i ) + st
i
s.to
N
X
i=1
Pt
i = Dt
, ∀ t
ut
iPmin
i ≤ Pt
i ≤ ut
iPmax
i , ∀ i, t
ut
i ∈ {0, 1}, ∀ i, t ←− integral (binary) constraint
st
i ≥ si(ut
i − ut−1
i ), ∀ i, t ←− startup cost si
st
i ≥ 0, ∀ i, t ←− startup cost variable
Decisions are coupled across time through the startup cost
What if I replace ut
i ∈ {0, 1} with ut
i ∈ [0, 1] for all i, t?
Lecture 6 V. Kekatos 6
More unit commitment constraints
Additional constraints coupling decisions across time
• Ramp up constraint: Pt
i − Pt−1
i ≤ Rup
i
• Ramp down constraint: Pt−1
i − Pt
i ≤ Rdown
i
• Spinning reserves:
N
X
i=1
ut
iPmax
i ≥ D + Preserve
• Must-stay-on for Li periods:
ut
i − ut−1
i ≤ uτ
i , τ = t + 1, . . . , min{t + Li − 1, T}
• Must-stay-off for `i periods:
ut−1
i − ut
i ≤ 1 − uτ
i , τ = t + 1, . . . , min{t + `i − 1, T}
Lecture 6 V. Kekatos 7
Mixed-Integer (Non-)Linear Programs
Optimization problems with continuous and integer/binary variables
Brute-force method should solve 2NT
EDs!
Even MILPs are NP-hard in general! (sometimes MINLPs linearized to MILPs)
Common solution approaches:
1. Dynamic programming [Bell, 1950]
2. Branch and bound algorithms [Land & Doig, 1960]
3. Lagrangian relaxation [Muckstadt & Koenig, 1977; Bertsekas, 1983]
4. Bender’s decomposition [Bender, 1962]
Lecture 6 V. Kekatos 8
Branch and bound method
Smart way to enumerate possible solutions; widely used in discrete optimization
1. Find lower and upper bounds (`, u) on f∗
2. Problem with all binary constraints relaxed to box cons. added in queue
3. Solve the next problem in the queue to get (x̂, ˆ
f)
4. If x̂ is binary and ˆ
f < u, UPDATE x̄ ← x̂ and u ← ˆ
f
5. If x̂ is non-binary, then
5.1 If ` < ˆ
f ≤ u, then
BRANCH: pick a variable with non-binary value x̂i and add two problems in
the queue, one with constraint xi = 0 and the other with xi = 1
5.2 If ˆ
f > u (including infeasibility with ˆ
f = ∞), then
CUT this branch since the solution cannot be improved
6. If queue is empty, output minimizer x̄; else go to Step 3.
There exists variations where ` progressively increases
Lecture 6 V. Kekatos 9
Example on branch and bound method
min
{Pi,ui}2
i=1
2
X
i=1
uiC0i + aiPi + bi
2
P2
i
s.to P1 + P2 = 300
0 ≤ Pi ≤ uiPmax
i , i = 1, 2
ui ∈ {0, 1}, i = 1, 2
Problem P̂1 P̂2 û1 û2
ˆ
f ` u x̄
u1, u2 ∈ [0, 1] 236.1 63.9 0.59 0.21 8,019 8,019 +∞ –
u1 = 0, u2 ∈ [0, 1] 0 300 0 1 12,200 8,019 12,200 store
u1 = 1, u2 ∈ [0, 1] 237.8 62.2 1 0.21 8,059 8,059 12,200 branch
u1 = 1, u2 = 0 300 0 1 0 8,350 8,059 8,350 store
u1 = 1, u2 = 1 233 67 1 1 8,217 8,059 8,217 store
Lecture 6 V. Kekatos 10
Dynamic programming method
Multi-stage problems (continuous/discrete) with a recursive structure
• Stages: indexed by n = 1, . . . , N
• States: xn (discrete or continuous)
• Decision: un ∈ Un(xn) (actions, controls, opt. variables)
• Dynamic system: xn+1 = fn(xn, un) for n = 1, . . . , N
• Per-stage cost: cn(xn, un) for n = 1, . . . , N, and final cost cN+1(xN+1)
Lecture 6 V. Kekatos 11
Problems solved with dynamic programming
Given state recursion, per-state costs and constraints, minimize the total cost
J∗
(x1) = min
{un}
N
X
n=1
cn(xn, un) + cN+1(xN+1)
s.to xn+1 = fn(xn, un), ∀n (dynamic system)
un ∈ Un(xn), ∀n (control options)
DP widely used in a variety of applications:
• optimal (stochastic) control
• financial applications
• Kalman filter and hidden Markov models (HMMs)
• graph theory and networking problems
• wireless communications (Viterbi algorithm)
Lecture 6 V. Kekatos 12
Optimality principle
Solving the tail problem after stage k for a state value xk is optimal regardless
how you reached xk
J∗
k (xk) = min
{uk}N
k=1
N
X
n=k
cn(xn, un) + cN+1(xN+1)
s.to xn+1 = fn(xn, un), ∀n = k, . . . , N (dynamic system)
un ∈ Un(xn), ∀n = k, . . . , N (control options)
Lecture 6 V. Kekatos 13
Recursive solution
Find last action uN
J∗
N (xN ) = min
uN
cN (xN , uN ) + cN+1(xN+1)
s.to xN+1 = fN (xN , uN )
uN ∈ UN (xN )
Find uN−1
J∗
N−1(xN−1) = min
uN−1
cN−1(xN−1, uN−1) + J∗
N (xN )
s.to xN = fN (xN−1, uN−1)
uN−1 ∈ UN−1(xN−1)
Lecture 6 V. Kekatos 14
Dynamic programming algorithm
1. Start with J∗
N+1(xN+1) = cN+1(xN+1)
2. Go backwards: solve the previous stage for all possible values of state xk
J∗
k (xk) = min
uk
ck(xk, uk) + J∗
k+1(xk+1)
s.to xk+1 = fk(xk, uk)
uk ∈ Uk(xk)
or equivalently
J∗
k (xk) = min
uk
ck(xk, uk) + J∗
k+1(fk(xk, uk))
s.to uk ∈ Uk(xk)
until you reach the initial state x1
Lecture 6 V. Kekatos 15
Finite-state problems
Number of possible states per stage is discrete
• nodes correspond to state values; arcs correspond to actions
• ck
ij: transitioning cost from state i to j at stage k, i.e., ck(xk = i, ui→j)
• cN
ii : cost of terminating at state xi
• minimum-cost path yields optimal cost and actions
Lecture 6 V. Kekatos 16
Shortest path problem
In a graph with weighted edges and N nodes, find the shortest paths from any
node to a destination node d
• State: the node you are at time n {1, 2, 3, 4, 5}
• Decision cost: c moving from one node to another (edge weight)
• Cost Jk(i): minimum cost for moving from i to d within N − k steps
• Stages: N since within N steps you can reach d from any node
Lecture 6 V. Kekatos 17
Solving a simple UC problem with DP
Start-up costs si(0, 1); shut-down costs si(1, 0); and si(0, 0) = si(1, 1) = 0
min
{P t
i ,ut
i}i,t
T
X
t=1
2
X
i=1
ut
iCi(Pt
i ) + si(xt
i, ut
i)
s.to
P2
i=1 Pt
i = Dt
, ∀ t
ut
iPmin
i ≤ Pt
i ≤ ut
iPmax
i , ut
i ∈ {0, 1}, ∀ i, t



control options
xt+1
i = ut
i dynamic system!
• Stages: time periods t = 1, . . . , T
• States: three possible configurations {(0, 1), (1, 0), (1, 1)} per stage t
• Actions: (ut
i, Pt
i ) for i = 1, 2
• Termination cost: no cost for being online or offline at time T + 1
• J∗
t (xt
i): minimal total cost from t to T if starting with configuration xi
Lecture 6 V. Kekatos 18
Summarizing
Consider N = 6 units to be dispatched over T = 24 hours for the next day
Exhaustive search: entails solving 2NT
= 2.2 · 1043
ED problems!
Branch-and-bound method: avoids solving entire “sub-trees” of ED problems
• finds optimal solution, but not in deterministic time
• complexity depends on (`, u) and order of visiting UC cases in the queue
• tight initial (`, u) can reduce complexity significantly
Dynamic programming: exploits recursive structure to check fewer UC cases
• entails solving 2N
× T = 1, 536 single-period UC problems
• each smaller UC involves 2N
ED problems, or can be solved with B&B
• DP still suffers from combinatorial complexity in N
Lecture 6 V. Kekatos 19
Lagrangian relaxation
Consider the single-period UC problem
min
{(Pi,ui)∈Si}i
N
X
i=1
Ci(Pi, ui)
s.to
N
X
i=1
Pi = D
where Si = {(Pi, ui) : uiPmin
i ≤ Pi ≤ uiPmax
i , ui ∈ {0, 1}}
Lagrangian function: L({(Pi, ui)}; λ) =
PN
i=1 (Ci(Pi, ui) − λPi) + λD
• separable over generators
• for fixed λ, it can be minimized independently per generator i
min
(Pi,ui)∈Si
Ci(Pi, ui) − λPi
Lecture 6 V. Kekatos 20
Updating the dual variable
Dual function: g(λ) = min{(Pi,ui)∈Si}
PN
i=1 (Ci(Pi, ui) − λPi) + λD
• find λ∗
by maximizing g(λ), which is always a concave function
• minimize Lagrangian function separately per generator i for λk
(Pi(λk
), ui(λk
)) = arg min
(Pi,ui)∈Si
Ci(Pi, ui) − λk
Pi ∀ i
two easy problems: one for ui = 0 and one for ui = 1
• power imbalance D −
PN
i=1 Pi(λk
) serves as sort of gradient of g(λk
)
• update dual variable through dual ascent and iterate
λk+1
= λk
+ µ D −
N
X
i=1
Pi(λk
)
!
Lecture 6 V. Kekatos 21
Lagrangian relaxation for multi-period UC
min
{{(P t
i ,ut
i)}t∈Si}i
N
X
i=1
T
X
t=1
Ct
i (Pt
i , ut
i)
s.to
N
X
i=1
Pt
i = Dt
∀ t ←− λ = [λ1 · · · λT ]>
• minimize Lagrangian per unit i for λk
and over the entire horizon
{Pt
i (λk
), ut
i(λk
)}T
t=1 = arg min
{(P t
i ,ut
i)}t∈Si
T
X
t=1
Ct
i (Pt
i , ut
i) − λk
t Pt
i ∀ i
this problem is solved via DP with only two states ut
i ∈ {0, 1} per stage!
• update dual variables through dual ascent and iterate
λk+1
t = λk
t + µ Dt
−
N
X
i=1
Pt
i (λk
)
!
∀ t
Lecture 6 V. Kekatos 22
Comments on Lagrangian relaxation
• subgradient iterations for dual problem converge for diminishing step size
• a.k.a. dual decomposition if primal is convex
• not optimal for UC due to non-convexity
• LR output may be infeasible (power balance not precisely satisfied)
• relative duality gap p∗
−d∗
d∗ decreases with increasing N
• LR can be used to initialize a branch-and-bound scheme or it can be
heuristically adjusted to yield feasibility
D. Bertsekas, G. Laurel, N. Sandell, T. Posbergh, “Optimal Short-Term Scheduling of Large-Scale
Power Systems,” IEEE Trans. on Automatic Control, Vol. 28, No. 1, Jan. 1983, pp. 1–11.
Lecture 6 V. Kekatos 23

More Related Content

Similar to power system operation and control unit commitment .pdf

Applied numerical methods lec1
Applied numerical methods lec1Applied numerical methods lec1
Applied numerical methods lec1Yasser Ahmed
 
Talk at SciCADE2013 about "Accelerated Multiple Precision ODE solver base on ...
Talk at SciCADE2013 about "Accelerated Multiple Precision ODE solver base on ...Talk at SciCADE2013 about "Accelerated Multiple Precision ODE solver base on ...
Talk at SciCADE2013 about "Accelerated Multiple Precision ODE solver base on ...Shizuoka Inst. Science and Tech.
 
EFFINET - Initial Presentation
EFFINET - Initial PresentationEFFINET - Initial Presentation
EFFINET - Initial PresentationPantelis Sopasakis
 
Tanfani testi-alvarez presentation final
Tanfani testi-alvarez presentation finalTanfani testi-alvarez presentation final
Tanfani testi-alvarez presentation finalRene Alvarez
 
4.3 real time game physics
4.3 real time game physics4.3 real time game physics
4.3 real time game physicsSayed Ahmed
 
Fast Identification of Heavy Hitters by Cached and Packed Group Testing
Fast Identification of Heavy Hitters by Cached and Packed Group TestingFast Identification of Heavy Hitters by Cached and Packed Group Testing
Fast Identification of Heavy Hitters by Cached and Packed Group TestingRakuten Group, Inc.
 
Distributed solution of stochastic optimal control problem on GPUs
Distributed solution of stochastic optimal control problem on GPUsDistributed solution of stochastic optimal control problem on GPUs
Distributed solution of stochastic optimal control problem on GPUsPantelis Sopasakis
 
Design of PID CONTROLLER FOR ENGINEERING
Design of PID CONTROLLER FOR ENGINEERINGDesign of PID CONTROLLER FOR ENGINEERING
Design of PID CONTROLLER FOR ENGINEERINGShyamal25
 
Stochastic Frank-Wolfe for Constrained Finite Sum Minimization @ Montreal Opt...
Stochastic Frank-Wolfe for Constrained Finite Sum Minimization @ Montreal Opt...Stochastic Frank-Wolfe for Constrained Finite Sum Minimization @ Montreal Opt...
Stochastic Frank-Wolfe for Constrained Finite Sum Minimization @ Montreal Opt...Geoffrey Négiar
 
Biosight: Quantitative Methods for Policy Analysis - Introduction to GAMS, Li...
Biosight: Quantitative Methods for Policy Analysis - Introduction to GAMS, Li...Biosight: Quantitative Methods for Policy Analysis - Introduction to GAMS, Li...
Biosight: Quantitative Methods for Policy Analysis - Introduction to GAMS, Li...IFPRI-EPTD
 
Master's Thesis Slides
Master's Thesis SlidesMaster's Thesis Slides
Master's Thesis SlidesMatthew Motoki
 
Lesson 26: Integration by Substitution (handout)
Lesson 26: Integration by Substitution (handout)Lesson 26: Integration by Substitution (handout)
Lesson 26: Integration by Substitution (handout)Matthew Leingang
 

Similar to power system operation and control unit commitment .pdf (20)

Applied numerical methods lec1
Applied numerical methods lec1Applied numerical methods lec1
Applied numerical methods lec1
 
bv_cvxslides (1).pdf
bv_cvxslides (1).pdfbv_cvxslides (1).pdf
bv_cvxslides (1).pdf
 
Program on Quasi-Monte Carlo and High-Dimensional Sampling Methods for Applie...
Program on Quasi-Monte Carlo and High-Dimensional Sampling Methods for Applie...Program on Quasi-Monte Carlo and High-Dimensional Sampling Methods for Applie...
Program on Quasi-Monte Carlo and High-Dimensional Sampling Methods for Applie...
 
Power systemsilablri
Power systemsilablriPower systemsilablri
Power systemsilablri
 
Talk at SciCADE2013 about "Accelerated Multiple Precision ODE solver base on ...
Talk at SciCADE2013 about "Accelerated Multiple Precision ODE solver base on ...Talk at SciCADE2013 about "Accelerated Multiple Precision ODE solver base on ...
Talk at SciCADE2013 about "Accelerated Multiple Precision ODE solver base on ...
 
EFFINET - Initial Presentation
EFFINET - Initial PresentationEFFINET - Initial Presentation
EFFINET - Initial Presentation
 
Tanfani testi-alvarez presentation final
Tanfani testi-alvarez presentation finalTanfani testi-alvarez presentation final
Tanfani testi-alvarez presentation final
 
4.3 real time game physics
4.3 real time game physics4.3 real time game physics
4.3 real time game physics
 
QMC: Operator Splitting Workshop, A New (More Intuitive?) Interpretation of I...
QMC: Operator Splitting Workshop, A New (More Intuitive?) Interpretation of I...QMC: Operator Splitting Workshop, A New (More Intuitive?) Interpretation of I...
QMC: Operator Splitting Workshop, A New (More Intuitive?) Interpretation of I...
 
Fast Identification of Heavy Hitters by Cached and Packed Group Testing
Fast Identification of Heavy Hitters by Cached and Packed Group TestingFast Identification of Heavy Hitters by Cached and Packed Group Testing
Fast Identification of Heavy Hitters by Cached and Packed Group Testing
 
Distributed solution of stochastic optimal control problem on GPUs
Distributed solution of stochastic optimal control problem on GPUsDistributed solution of stochastic optimal control problem on GPUs
Distributed solution of stochastic optimal control problem on GPUs
 
QMC: Operator Splitting Workshop, A Splitting Method for Nonsmooth Nonconvex ...
QMC: Operator Splitting Workshop, A Splitting Method for Nonsmooth Nonconvex ...QMC: Operator Splitting Workshop, A Splitting Method for Nonsmooth Nonconvex ...
QMC: Operator Splitting Workshop, A Splitting Method for Nonsmooth Nonconvex ...
 
Mit2 72s09 lec02 (1)
Mit2 72s09 lec02 (1)Mit2 72s09 lec02 (1)
Mit2 72s09 lec02 (1)
 
Design of PID CONTROLLER FOR ENGINEERING
Design of PID CONTROLLER FOR ENGINEERINGDesign of PID CONTROLLER FOR ENGINEERING
Design of PID CONTROLLER FOR ENGINEERING
 
rgDefense
rgDefensergDefense
rgDefense
 
Stochastic Frank-Wolfe for Constrained Finite Sum Minimization @ Montreal Opt...
Stochastic Frank-Wolfe for Constrained Finite Sum Minimization @ Montreal Opt...Stochastic Frank-Wolfe for Constrained Finite Sum Minimization @ Montreal Opt...
Stochastic Frank-Wolfe for Constrained Finite Sum Minimization @ Montreal Opt...
 
Biosight: Quantitative Methods for Policy Analysis - Introduction to GAMS, Li...
Biosight: Quantitative Methods for Policy Analysis - Introduction to GAMS, Li...Biosight: Quantitative Methods for Policy Analysis - Introduction to GAMS, Li...
Biosight: Quantitative Methods for Policy Analysis - Introduction to GAMS, Li...
 
Lecture4 xing
Lecture4 xingLecture4 xing
Lecture4 xing
 
Master's Thesis Slides
Master's Thesis SlidesMaster's Thesis Slides
Master's Thesis Slides
 
Lesson 26: Integration by Substitution (handout)
Lesson 26: Integration by Substitution (handout)Lesson 26: Integration by Substitution (handout)
Lesson 26: Integration by Substitution (handout)
 

More from ArnabChakraborty499766

cost estimation model per unit model and segmenting model.pdf
cost estimation model per unit model and segmenting model.pdfcost estimation model per unit model and segmenting model.pdf
cost estimation model per unit model and segmenting model.pdfArnabChakraborty499766
 
different ic engine based vehicle types and working.pptx
different ic engine based vehicle types and working.pptxdifferent ic engine based vehicle types and working.pptx
different ic engine based vehicle types and working.pptxArnabChakraborty499766
 
inductionmotordrivesch-2-230429043252-3aaa901e.pdf
inductionmotordrivesch-2-230429043252-3aaa901e.pdfinductionmotordrivesch-2-230429043252-3aaa901e.pdf
inductionmotordrivesch-2-230429043252-3aaa901e.pdfArnabChakraborty499766
 
economic load dispatch and unit commitment power_system_operation.pdf
economic load dispatch and unit commitment power_system_operation.pdfeconomic load dispatch and unit commitment power_system_operation.pdf
economic load dispatch and unit commitment power_system_operation.pdfArnabChakraborty499766
 
types of tariffs, advantage of tariff, how tariff work,.pdf
types of tariffs, advantage of tariff, how tariff work,.pdftypes of tariffs, advantage of tariff, how tariff work,.pdf
types of tariffs, advantage of tariff, how tariff work,.pdfArnabChakraborty499766
 
Lectures 1-2 Time-Domain Characterization of LTI Discrete-Time Systems.ppt
Lectures 1-2 Time-Domain Characterization of LTI Discrete-Time Systems.pptLectures 1-2 Time-Domain Characterization of LTI Discrete-Time Systems.ppt
Lectures 1-2 Time-Domain Characterization of LTI Discrete-Time Systems.pptArnabChakraborty499766
 

More from ArnabChakraborty499766 (8)

cost estimation model per unit model and segmenting model.pdf
cost estimation model per unit model and segmenting model.pdfcost estimation model per unit model and segmenting model.pdf
cost estimation model per unit model and segmenting model.pdf
 
different ic engine based vehicle types and working.pptx
different ic engine based vehicle types and working.pptxdifferent ic engine based vehicle types and working.pptx
different ic engine based vehicle types and working.pptx
 
inductionmotordrivesch-2-230429043252-3aaa901e.pdf
inductionmotordrivesch-2-230429043252-3aaa901e.pdfinductionmotordrivesch-2-230429043252-3aaa901e.pdf
inductionmotordrivesch-2-230429043252-3aaa901e.pdf
 
economic load dispatch and unit commitment power_system_operation.pdf
economic load dispatch and unit commitment power_system_operation.pdfeconomic load dispatch and unit commitment power_system_operation.pdf
economic load dispatch and unit commitment power_system_operation.pdf
 
types of tariffs, advantage of tariff, how tariff work,.pdf
types of tariffs, advantage of tariff, how tariff work,.pdftypes of tariffs, advantage of tariff, how tariff work,.pdf
types of tariffs, advantage of tariff, how tariff work,.pdf
 
ARNAB12.pdf
ARNAB12.pdfARNAB12.pdf
ARNAB12.pdf
 
PPT Format for CA1.pptx
PPT Format for CA1.pptxPPT Format for CA1.pptx
PPT Format for CA1.pptx
 
Lectures 1-2 Time-Domain Characterization of LTI Discrete-Time Systems.ppt
Lectures 1-2 Time-Domain Characterization of LTI Discrete-Time Systems.pptLectures 1-2 Time-Domain Characterization of LTI Discrete-Time Systems.ppt
Lectures 1-2 Time-Domain Characterization of LTI Discrete-Time Systems.ppt
 

Recently uploaded

The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesPrabhanshu Chaturvedi
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxfenichawla
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 

Recently uploaded (20)

The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and Properties
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
 

power system operation and control unit commitment .pdf

  • 1. ECE 5314: Power System Operation & Control Lecture 6: Unit Commitment Vassilis Kekatos R1 A. J. Wood, B. F. Wollenberg, and G. B. Sheble, Power Generation, Operation, and Control, Wiley, 2014, Chapters 3-4. R2 A. Gomez-Exposito, A. J. Conejo, C. Canizares, Electric Energy Systems: Analysis and Operation, Chapter 5. Lecture 6 V. Kekatos 1
  • 2. Motivation Economic dispatch assumes all units to be online and ready to produce, but: • ramping and must-stay-on/off constraints • start-up/shut-down costs (cooling vs. banking) • crew constraints (units that cannot be started together) • spinning (coal) and offline (hydro, gas) reserves • fuel constraints (use it or loose it) • must-run status (due to voltage regulation or other functions) Such constraints are accommodated by unit commitment problems • bad news: non-convex, hard to solve • good news: solved in advance (day-ahead) Lecture 6 V. Kekatos 2
  • 3. Static unit commitment • Extend ED to include on/off scheduling of units • Binary variable: ui = 1 if unit i is scheduled to be on; 0 otherwise • If unit i is scheduled to be on, it has to produce at least Pmin i min {Pi,ui}i N X i=1 uiCi(Pi) s.to N X i=1 Pi = D uiPmin i ≤ Pi ≤ uiPmax i , ∀ i ui ∈ {0, 1}, ∀ i • For economic dispatch, all ui’s have already been decided Lecture 6 V. Kekatos 3
  • 4. An example Two generators with quadratic costs Ci(Pi) = C0i + aiPi + bi 2 P2 i C0i [$/h] ai [$/MWh] bi [$/(MW)2h] Pmin i [MW] Pmax i [MW] G1 100 20 0.05 0 400 G2 200 25 0.10 0 300 Unit commitment for different loads D Case D [MW] P1 [MW] P2 [MW] λ [$/MWh] Cost [$/h] (1,0) 40 40 0 22 940 (0,1) 40 0 40 29 1,280 (1,1) 40 40 0 22 1,140 (1,0) 250 250 0 33 6,663 (0,1) 250 0 250 50 9,575 (1,1) 250 200 50 30 6,675 (1,0) 300 300 0 35 8,350 (0,1) 300 0 300 55 12,200 (1,1) 300 233 67 32 8,217 Lecture 6 V. Kekatos 4
  • 5. Avoiding bilinear products • MILPs are the ‘easiest’ mixed-integer programs • To remain within MILP class, need to avoid products of variables • Generation capacity constraints uiPmin i ≤ Pi ≤ uiPmax i vs. uiPmin i ≤ uiPi ≤ uiPmax i • Generation cost uiCi(Pi) for Ci(Pi) = C0i + aiPi + bi 2 P2 i uiCo,i + aiPi + bi 2 P2 i vs. uiCo,i + aiuiPi + bi 2 uiP2 i Lecture 6 V. Kekatos 5
  • 6. Multi-period unit commitment N generation units over T control periods (24 hours of a day) min {P t i ,ut i,st i}i,t T X t=1 N X i=1 ut iCt i (Pt i ) + st i s.to N X i=1 Pt i = Dt , ∀ t ut iPmin i ≤ Pt i ≤ ut iPmax i , ∀ i, t ut i ∈ {0, 1}, ∀ i, t ←− integral (binary) constraint st i ≥ si(ut i − ut−1 i ), ∀ i, t ←− startup cost si st i ≥ 0, ∀ i, t ←− startup cost variable Decisions are coupled across time through the startup cost What if I replace ut i ∈ {0, 1} with ut i ∈ [0, 1] for all i, t? Lecture 6 V. Kekatos 6
  • 7. More unit commitment constraints Additional constraints coupling decisions across time • Ramp up constraint: Pt i − Pt−1 i ≤ Rup i • Ramp down constraint: Pt−1 i − Pt i ≤ Rdown i • Spinning reserves: N X i=1 ut iPmax i ≥ D + Preserve • Must-stay-on for Li periods: ut i − ut−1 i ≤ uτ i , τ = t + 1, . . . , min{t + Li − 1, T} • Must-stay-off for `i periods: ut−1 i − ut i ≤ 1 − uτ i , τ = t + 1, . . . , min{t + `i − 1, T} Lecture 6 V. Kekatos 7
  • 8. Mixed-Integer (Non-)Linear Programs Optimization problems with continuous and integer/binary variables Brute-force method should solve 2NT EDs! Even MILPs are NP-hard in general! (sometimes MINLPs linearized to MILPs) Common solution approaches: 1. Dynamic programming [Bell, 1950] 2. Branch and bound algorithms [Land & Doig, 1960] 3. Lagrangian relaxation [Muckstadt & Koenig, 1977; Bertsekas, 1983] 4. Bender’s decomposition [Bender, 1962] Lecture 6 V. Kekatos 8
  • 9. Branch and bound method Smart way to enumerate possible solutions; widely used in discrete optimization 1. Find lower and upper bounds (`, u) on f∗ 2. Problem with all binary constraints relaxed to box cons. added in queue 3. Solve the next problem in the queue to get (x̂, ˆ f) 4. If x̂ is binary and ˆ f < u, UPDATE x̄ ← x̂ and u ← ˆ f 5. If x̂ is non-binary, then 5.1 If ` < ˆ f ≤ u, then BRANCH: pick a variable with non-binary value x̂i and add two problems in the queue, one with constraint xi = 0 and the other with xi = 1 5.2 If ˆ f > u (including infeasibility with ˆ f = ∞), then CUT this branch since the solution cannot be improved 6. If queue is empty, output minimizer x̄; else go to Step 3. There exists variations where ` progressively increases Lecture 6 V. Kekatos 9
  • 10. Example on branch and bound method min {Pi,ui}2 i=1 2 X i=1 uiC0i + aiPi + bi 2 P2 i s.to P1 + P2 = 300 0 ≤ Pi ≤ uiPmax i , i = 1, 2 ui ∈ {0, 1}, i = 1, 2 Problem P̂1 P̂2 û1 û2 ˆ f ` u x̄ u1, u2 ∈ [0, 1] 236.1 63.9 0.59 0.21 8,019 8,019 +∞ – u1 = 0, u2 ∈ [0, 1] 0 300 0 1 12,200 8,019 12,200 store u1 = 1, u2 ∈ [0, 1] 237.8 62.2 1 0.21 8,059 8,059 12,200 branch u1 = 1, u2 = 0 300 0 1 0 8,350 8,059 8,350 store u1 = 1, u2 = 1 233 67 1 1 8,217 8,059 8,217 store Lecture 6 V. Kekatos 10
  • 11. Dynamic programming method Multi-stage problems (continuous/discrete) with a recursive structure • Stages: indexed by n = 1, . . . , N • States: xn (discrete or continuous) • Decision: un ∈ Un(xn) (actions, controls, opt. variables) • Dynamic system: xn+1 = fn(xn, un) for n = 1, . . . , N • Per-stage cost: cn(xn, un) for n = 1, . . . , N, and final cost cN+1(xN+1) Lecture 6 V. Kekatos 11
  • 12. Problems solved with dynamic programming Given state recursion, per-state costs and constraints, minimize the total cost J∗ (x1) = min {un} N X n=1 cn(xn, un) + cN+1(xN+1) s.to xn+1 = fn(xn, un), ∀n (dynamic system) un ∈ Un(xn), ∀n (control options) DP widely used in a variety of applications: • optimal (stochastic) control • financial applications • Kalman filter and hidden Markov models (HMMs) • graph theory and networking problems • wireless communications (Viterbi algorithm) Lecture 6 V. Kekatos 12
  • 13. Optimality principle Solving the tail problem after stage k for a state value xk is optimal regardless how you reached xk J∗ k (xk) = min {uk}N k=1 N X n=k cn(xn, un) + cN+1(xN+1) s.to xn+1 = fn(xn, un), ∀n = k, . . . , N (dynamic system) un ∈ Un(xn), ∀n = k, . . . , N (control options) Lecture 6 V. Kekatos 13
  • 14. Recursive solution Find last action uN J∗ N (xN ) = min uN cN (xN , uN ) + cN+1(xN+1) s.to xN+1 = fN (xN , uN ) uN ∈ UN (xN ) Find uN−1 J∗ N−1(xN−1) = min uN−1 cN−1(xN−1, uN−1) + J∗ N (xN ) s.to xN = fN (xN−1, uN−1) uN−1 ∈ UN−1(xN−1) Lecture 6 V. Kekatos 14
  • 15. Dynamic programming algorithm 1. Start with J∗ N+1(xN+1) = cN+1(xN+1) 2. Go backwards: solve the previous stage for all possible values of state xk J∗ k (xk) = min uk ck(xk, uk) + J∗ k+1(xk+1) s.to xk+1 = fk(xk, uk) uk ∈ Uk(xk) or equivalently J∗ k (xk) = min uk ck(xk, uk) + J∗ k+1(fk(xk, uk)) s.to uk ∈ Uk(xk) until you reach the initial state x1 Lecture 6 V. Kekatos 15
  • 16. Finite-state problems Number of possible states per stage is discrete • nodes correspond to state values; arcs correspond to actions • ck ij: transitioning cost from state i to j at stage k, i.e., ck(xk = i, ui→j) • cN ii : cost of terminating at state xi • minimum-cost path yields optimal cost and actions Lecture 6 V. Kekatos 16
  • 17. Shortest path problem In a graph with weighted edges and N nodes, find the shortest paths from any node to a destination node d • State: the node you are at time n {1, 2, 3, 4, 5} • Decision cost: c moving from one node to another (edge weight) • Cost Jk(i): minimum cost for moving from i to d within N − k steps • Stages: N since within N steps you can reach d from any node Lecture 6 V. Kekatos 17
  • 18. Solving a simple UC problem with DP Start-up costs si(0, 1); shut-down costs si(1, 0); and si(0, 0) = si(1, 1) = 0 min {P t i ,ut i}i,t T X t=1 2 X i=1 ut iCi(Pt i ) + si(xt i, ut i) s.to P2 i=1 Pt i = Dt , ∀ t ut iPmin i ≤ Pt i ≤ ut iPmax i , ut i ∈ {0, 1}, ∀ i, t    control options xt+1 i = ut i dynamic system! • Stages: time periods t = 1, . . . , T • States: three possible configurations {(0, 1), (1, 0), (1, 1)} per stage t • Actions: (ut i, Pt i ) for i = 1, 2 • Termination cost: no cost for being online or offline at time T + 1 • J∗ t (xt i): minimal total cost from t to T if starting with configuration xi Lecture 6 V. Kekatos 18
  • 19. Summarizing Consider N = 6 units to be dispatched over T = 24 hours for the next day Exhaustive search: entails solving 2NT = 2.2 · 1043 ED problems! Branch-and-bound method: avoids solving entire “sub-trees” of ED problems • finds optimal solution, but not in deterministic time • complexity depends on (`, u) and order of visiting UC cases in the queue • tight initial (`, u) can reduce complexity significantly Dynamic programming: exploits recursive structure to check fewer UC cases • entails solving 2N × T = 1, 536 single-period UC problems • each smaller UC involves 2N ED problems, or can be solved with B&B • DP still suffers from combinatorial complexity in N Lecture 6 V. Kekatos 19
  • 20. Lagrangian relaxation Consider the single-period UC problem min {(Pi,ui)∈Si}i N X i=1 Ci(Pi, ui) s.to N X i=1 Pi = D where Si = {(Pi, ui) : uiPmin i ≤ Pi ≤ uiPmax i , ui ∈ {0, 1}} Lagrangian function: L({(Pi, ui)}; λ) = PN i=1 (Ci(Pi, ui) − λPi) + λD • separable over generators • for fixed λ, it can be minimized independently per generator i min (Pi,ui)∈Si Ci(Pi, ui) − λPi Lecture 6 V. Kekatos 20
  • 21. Updating the dual variable Dual function: g(λ) = min{(Pi,ui)∈Si} PN i=1 (Ci(Pi, ui) − λPi) + λD • find λ∗ by maximizing g(λ), which is always a concave function • minimize Lagrangian function separately per generator i for λk (Pi(λk ), ui(λk )) = arg min (Pi,ui)∈Si Ci(Pi, ui) − λk Pi ∀ i two easy problems: one for ui = 0 and one for ui = 1 • power imbalance D − PN i=1 Pi(λk ) serves as sort of gradient of g(λk ) • update dual variable through dual ascent and iterate λk+1 = λk + µ D − N X i=1 Pi(λk ) ! Lecture 6 V. Kekatos 21
  • 22. Lagrangian relaxation for multi-period UC min {{(P t i ,ut i)}t∈Si}i N X i=1 T X t=1 Ct i (Pt i , ut i) s.to N X i=1 Pt i = Dt ∀ t ←− λ = [λ1 · · · λT ]> • minimize Lagrangian per unit i for λk and over the entire horizon {Pt i (λk ), ut i(λk )}T t=1 = arg min {(P t i ,ut i)}t∈Si T X t=1 Ct i (Pt i , ut i) − λk t Pt i ∀ i this problem is solved via DP with only two states ut i ∈ {0, 1} per stage! • update dual variables through dual ascent and iterate λk+1 t = λk t + µ Dt − N X i=1 Pt i (λk ) ! ∀ t Lecture 6 V. Kekatos 22
  • 23. Comments on Lagrangian relaxation • subgradient iterations for dual problem converge for diminishing step size • a.k.a. dual decomposition if primal is convex • not optimal for UC due to non-convexity • LR output may be infeasible (power balance not precisely satisfied) • relative duality gap p∗ −d∗ d∗ decreases with increasing N • LR can be used to initialize a branch-and-bound scheme or it can be heuristically adjusted to yield feasibility D. Bertsekas, G. Laurel, N. Sandell, T. Posbergh, “Optimal Short-Term Scheduling of Large-Scale Power Systems,” IEEE Trans. on Automatic Control, Vol. 28, No. 1, Jan. 1983, pp. 1–11. Lecture 6 V. Kekatos 23