Presentation is loading. Please wait.

Presentation is loading. Please wait.

EE 553 LPOPF J. McCalley 1. LPOPF The linear program optimal power flow (LPOPF) is functionally equivalent to the SCED, except whereas LPOPF implements.

Similar presentations


Presentation on theme: "EE 553 LPOPF J. McCalley 1. LPOPF The linear program optimal power flow (LPOPF) is functionally equivalent to the SCED, except whereas LPOPF implements."— Presentation transcript:

1 EE 553 LPOPF J. McCalley 1

2 LPOPF The linear program optimal power flow (LPOPF) is functionally equivalent to the SCED, except whereas LPOPF implements normal line flow constraints, SCED implements security constraints as well. In addition, LPOPF uses DC power flow equations whereas SCED uses generation shift factors. The simultaneous-co-optimized SCED does one more thing, it also implements the ancillary services (reserves) market. The below papers are posted to the website and provide a full description of the SC-SCUC and the SC-SCED. 2 Ref: Xingwang Ma, Haili Song, Mingguo Hong, Jie Wan, Yonghong Chen, Eugene Zak, “The Security-constrained Commitment and Dispatch For Midwest ISO Day-ahead Co-optimized Energy and Ancillary Service Market,” Proc. of the 2009 IEEE PES General Meeting. Ref: Xingwang Ma, Yonghong Chen, Jie Wan, “Midwest ISO Co-optimization Based Real-time Dispatch and Pricing of Energy and Ancillary Services,” Proc. of the 2009 IEEE PES General Meeting.

3 Linearized cost rate curves In our simplest version, we assume that only generators supply offers and all load is “must serve.” We assume we have linearized cost-rate (generation offer) curves into some number of price-quantity offers. The below illustrates this linearization to either three offers or one. 3 Three offers: (s i1,P i1 ), (s i2, P i2 ), (s i3, P i3 ) One offer: (s i,P i ),)

4 LPOPF 4 Subject to: where: Alternatively, you can use the “reduced” DC power flow equations together with the above power balance constraint, which, for the example on the next slide, is Pg1+Pg2+Pg3=2.1787 (In the “reduced” DC power flow, θ 1 =0 and so first col and first row are eliminated). We do not want to eliminate the first equation from the DC power flow equations because we want to obtain the multiplier for it. So we will not delete a column and row in DC power flow equations. If you do, you are relieving the need to satisfy power balance: P1+P2+P3+P4=0 You can see that the above is imposed by the “full” DC power flow equations by summing the rows.

5 Introduction to dual variables 5 This says that the λ i = ΔF * /Δb i only for incrementally small Δb i. In fact, we will see that we need to be more restrictive than that.. Consider the following optimization problem: Min F(x) Subject to g i (x)≤b i, i=1,…,m We solve it by applying KKT conditions to the Lagrangian: L(x,λ)=F(x)-Σλ i (g i (x)-b i ) The λ i, i=1,…,m, called the Lagrange multipliers, or the dual variables, are defined by:

6 Example 6, s 1 =13.07 $/MWhr s 2 =12.11 $/MWhr s 4 =12.54 $/MWhr s 1 =1307 $/puMWhr s 2 =1211 $/puMWhr s 4 =1254 $/puMWhr Objective function:

7 Example 7, DC power flow equality constraints: From last time: where But P g3, P d1, P d2, P d3, P d4 are fixed at 0,0,1, 1.1787, 0, so the above become: Putting the equations into CPLEX constraint form (variables on left, constant on RHS): We need to write equations so that RHS values, if they are or were to be non-zero, are or would be positive, in order to get positive dual variables.

8 Example 8, Line flow equality constraints: From last time: These are not constraints on our problem. They just compute for us the line flows which we then constrain with inequalities. We could also do each of these as one equation, using a single inequality constraint. Note we need “full” node- arc incidence matrix because we have full DC power flow equations.

9 Example 9, minimize: …and the inequality constraints

10 Example 10, I will solve this example in CPLEX, but in the corresponding “Word” notes (which are posted on the website), it is solved in Matlab. You may use any solver you like to perform the homework. However, it is useful to learn how to use CPLEX because so many market vendors use it.

11 CPLEX Code minimize 1307 pg1 + 1211 pg2 + 1254 pg4 subject to theta1=0 -pb1 + 10 theta1 - 10 theta4 = 0 -pb2 + 10 theta1 - 10 theta2 = 0 -pb3 + 10 theta2 - 10 theta3 = 0 -pb4 - 10 theta3 + 10 theta4 = 0 -pb5 + 10 theta1 - 10 theta3 = 0 pg1 - 30 theta1 + 10 theta2 + 10 theta3 + 10 theta4 = 0 pg2 + 10 theta1 - 20 theta2 + 10 theta3 = 1 10 theta1 + 10 theta2 - 30 theta3 + 10 theta4 = 1.1787 pg4 + 10 theta1 + 10 theta3 - 20 theta4 = 0 -pg1 <= -0.5 pg1 <= 2 -pg2 <= -0.375 pg2 <= 1.5 -pg4<= -0.45 pg4 <= 1.8 -pb1 <= 500 pb1 <= 500 -pb2 <= 500 pb2 <= 500 -pb3 <= 500 pb3 <= 500 -pb4 <= 500 pb4 <= 500 -pb5 <= 500 pb5 <= 500 Bounds -500 <= pb1 <= 500 -500 <= pb2 <= 500 -500 <= pb3 <= 500 -500 <= pb4 <= 500 -500 <= pb5 <= 500 -3.14159 <= theta1 <= 3.14159 -3.14159 <= theta2 <= 3.14159 -3.14159 <= theta3 <= 3.14159 -3.14159 <= theta4 <= 3.14159 end Objective Line flows DC power flow equations Generation offer constraints Line flow constraints CPLEX only provides dual variables for equalities and inequalities that appear in the constraint list and not the “bounds” list, i.e., it does not provide dual variables for inequalities in the “bounds” list. If the exact same constraints are imposed both places, CPLEX will not provide a dual variable. If you do not explicitly define a bound on a variable, then CPLEX applies bounds of 0 to ∞, and so if you want negativity for a variable, you must impose that here. I can arbitrarily set one angle to whatever I like (within bounds), since it is the angle differences that are important.11

12 Solution display solution variables – Variable Name Solution Value pg1 0.500000 pg2 1.228700 pg4 0.450000 pb1 -0.015163 theta4 0.001516 pb2 0.095487 theta2 -0.009549 pb3 0.324188 theta3 -0.041968 pb4 0.434838 pb5 0.419675 All other variables in the range 1-12 are 0. Z*=$2705.7557 There are 11 variables listed as non-0. So which variable is 0? Why? 12

13 Solution Equality constraintsLower boundsUpper bounds EquationValueVariablevaluevariablevalue P B1 0.0000P g1 -96.0000P g1 0.0000 P B2 0.0000P g2 0 0.0000 P B3 0.0000P g4 -43.0000P g4 0.0000 P B4 0.0000P B1 0 0.0000 P B5 0.0000P B2 0 0.0000 P1P1 1211.0P B3 0 0.0000 P2P2 1211.0P B4 0 0.0000 P3P3 1211.0P B5 0 0.0000 P4P4 1211.0 ($/per unit-hr) display solution dual - Constraint Name Dual Price c7 1211.000000 c8 1211.000000 c9 1211.000000 c10 1211.000000 c11 -96.000000 c15 -43.000000 All other dual prices in the range 1-26 are 0. The dual variables tell us how much the objective changes when the right-hand-side of the corresponding constraint increases by a unit (subject to qualifications on next slide). Since we are in “per unit”, and a “per-unit” is 100 MW, dividing the dual variables by 100 gives the corresponding $/MW change in the objective function. So dual variables for c7-c10 are$12.11/MWhr  Increasing load by 1 MW at either of buses 1,2,3, or 4 increases objective by $12.11. This is set by the bus 2 generator, as it will respond to any load change. c11 is -$0.96/MWhr  This constraint is –pg1<=-0.5. Increasing RHS from -0.5 to -0.49, equivalent to decreasing lower bound on pg1 from 50 to 49 MW, reduces objective by $0.96. c15 is -$0.43/MWhr  This constraint is –pg4 <= -0.45. Increasing RHS from -0.45 to -0.44, equivalent to decreasing lower bound on pg4 from 45 to 44 MW, reduces objective by $0.43. 13

14 Qualification to dual variable definition From last slide: “The dual variables tell us how much the objective changes when the right-hand-side of the corresponding constraint increases by a unit (subject to qualifications…).” This says that the λ i = ΔF * /Δb i only for incrementally small Δb i. In fact, it is more restrictive than that.  In an LP, λ i = ΔF * /Δb i holds only for Δb i such that within b i + Δb i (inclusive), no change in the active constraint set occurs. For example, if constraint i is active (inactive) at b i, and it becomes inactive (active) within b i + Δb i, then λ i = ΔF * /Δb i will not hold within b i + Δb i. if constraint k is active (inactive) at b i, and it becomes inactive (active) within b i + Δb i, then λ i = ΔF * /Δb i will not hold within b i + Δb i. Note: Be careful in HW#5, problem 7, parts 7-c (v) and 7-c (vi). 14

15 Case 1 minimize 1307 pg1 + 1211 pg2 + 1254 pg4 subject to theta1=0 -pb1 + 10 theta1 - 10 theta4 = 0 -pb2 + 10 theta1 - 10 theta2 = 0 -pb3 + 10 theta2 - 10 theta3 = 0 -pb4 - 10 theta3 + 10 theta4 = 0 -pb5 + 10 theta1 - 10 theta3 = 0 pg1 - 30 theta1 + 10 theta2 + 10 theta3 + 10 theta4 = 0 pg2 + 10 theta1 - 20 theta2 + 10 theta3 = 1.01 10 theta1 + 10 theta2 - 30 theta3 + 10 theta4 = 1.1787 pg4 + 10 theta1 + 10 theta3 - 20 theta4 = 0 -pg1 <= -0.5 pg1 <= 2 -pg2 <= -0.375 pg2 <= 1.5 -pg4<= -0.45 pg4 <= 1.8 -pb1 <= 500 pb1 <= 500 -pb2 <= 500 pb2 <= 500 -pb3 <= 500 pb3 <= 500 -pb4 <= 500 pb4 <= 500 -pb5 <= 500 pb5 <= 500 Bounds -500 <= pb1 <= 500 -500 <= pb2 <= 500 -500 <= pb3 <= 500 -500 <= pb4 <= 500 -500 <= pb5 <= 500 -3.14159 <= theta1 <= 3.14159 -3.14159 <= theta2 <= 3.14159 -3.14159 <= theta3 <= 3.14159 -3.14159 <= theta4 <= 3.14159 end Change Pd2 from 1 to 1.01 (a 1 MW increase) and resolve. Solution provides: Z*=$2717.8657 Previous solution was: Z*=$2705.7557 2717.8657 -2705.7557 ---------------- 12.11 15

16 Case 2a Take a look at solution to original case: Let’s constrain Pb3 to 0.3. This means that upper and lower bounds of Pb3 should be changed from (-500,500) to (-0.3,0.3). We will, however, only do this in the “constraint” section. Having it in the “constraint” section will ensure when it binds, we will get a dual variable. But we will keep the (-500,500) in the “bounds” section in order to prevent CPLEX from imposing non-negativity. So the new CPLEX code is as follows: 16

17 Case 2a minimize 1307 pg1 + 1211 pg2 + 1254 pg4 subject to theta1=0 -pb1 + 10 theta1 - 10 theta4 = 0 -pb2 + 10 theta1 - 10 theta2 = 0 -pb3 + 10 theta2 - 10 theta3 = 0 -pb4 - 10 theta3 + 10 theta4 = 0 -pb5 + 10 theta1 - 10 theta3 = 0 pg1 - 30 theta1 + 10 theta2 + 10 theta3 + 10 theta4 = 0 pg2 + 10 theta1 - 20 theta2 + 10 theta3 = 1.0 10 theta1 + 10 theta2 - 30 theta3 + 10 theta4 = 1.1787 pg4 + 10 theta1 + 10 theta3 - 20 theta4 = 0 -pg1 <= -0.5 pg1 <= 2 -pg2 <= -0.375 pg2 <= 1.5 -pg4<= -0.45 pg4 <= 1.8 -pb1 <= 500 pb1 <= 500 -pb2 <= 500 pb2 <= 500 -pb3 <= 0.3 pb3 <= 0.3 -pb4 <= 500 pb4 <= 500 -pb5 <= 500 pb5 <= 500 Bounds -500 <= pb1 <= 500 -500 <= pb2 <= 500 -500 <= pb3 <= 500 -500 <= pb4 <= 500 -500 <= pb5 <= 500 -3.14159 <= theta1 <= 3.14159 -3.14159 <= theta2 <= 3.14159 -3.14159 <= theta3 <= 3.14159 -3.14159 <= theta4 <= 3.14159 end Solution provides: Z*=$2707.8358 Previous solution was: Z*=$2705.7557 Change Pb3 constraint from (-500,500) to (-0.3, 0.3) and resolve. 17

18 Case 2a display solution variables – Variable Name Solution Value pg1 0.500000 pg2 1.180325 pg4 0.498375 pb1 -0.039350 theta4 0.003935 pb2 0.119675 theta2 -0.011968 pb3 0.300000 theta3 -0.041968 pb4 0.459025 pb5 0.419675 All other variables in the range 1-12 are 0. Z*=$2707.8358 In comparing the two solutions, we observe flow on branch 3 is constrained to 0.3 flows all over the network have changed. gen levels at buses 2 and 4 have changed. Activation of a transmission constraint has changed the dispatch. This will affect the energy prices! Old solution New solution 18

19 Case 2a ($/per unit-hr)display solution dual - Constraint Name Dual Price c4 -86.000000 c7 1243.250000 c8 1211.000000 c9 1264.750000 c10 1254.000000 c11 -63.750000 c22 -86.000000 All other dual prices in the range 1-26 are 0. Generation limits: We still see a non-0 dual variable (DV) on P g1 lower limit, but the DV on the P g4 lower limit has become 0, reflecting that P g4 had to increase and come off of its lower limit to compensate for the decrease in P g2 necessary to redispatch around the P B3 constraint. Branch limits: The DV on the P B3 upper bound is -86, and after dividing by 100 to change from per-unit to MW, it is -0.86 $/MW-hr, reflecting the increase in objective function that can be obtained from increasing the P B3 branch limit by 1 MW (from 0.30 per-unit to 0.31 per-unit). Recall the original case had P B3 flow at 0.324188. If we increase the P B3 branch limit in Case 2a to 0.324188, then we should see the objective increase by (.324188-.3)*-86=-2.0802. Our Case 2a objective is $2707.8358; objective of original problem is $2705.7557, reduced by $2.0801. Equality constraintsLower boundsUpper bounds EquationValueVariablevaluevariablevalue P B1 0.0000P g1 -63.750P g1 0.0000 P B2 0.0000P g2 0.0000P g2 0.0000 P B3 -86.000P g4 0.0000P g4 0.0000 P B4 0.0000P B1 0.0000P B1 0.0000 P B5 0.0000P B2 0.0000P B2 0.0000 P1P1 1243.25P B3 0.0000P B3 -86.000 P2P2 1211.00P B4 0.0000P B4 0.0000 P3P3 1264.75P B5 0.0000P B5 0.0000 P4P4 1254.00θ1θ1 0.0000θ1θ1 θ2θ2 θ2θ2 θ3θ3 θ3θ3 θ4θ4 θ4θ4 19

20 Case 2a ($/per unit-hr)display solution dual - Constraint Name Dual Price c4 -86.000000 c7 1243.250000 c8 1211.000000 c9 1264.750000 c10 1254.000000 c11 -63.750000 c22 -86.000000 All other dual prices in the range 1-26 are 0. Nodal prices: The DVs on the equality constraints corresponding to the 4 nodes are the nodal prices. Without transmission constraints, these prices were all the same, at 12.11 $/MW-hr, a price set entirely by the generator at bus 2 since it was the bus 2 generator that responded to any load change. But now they are all different, with only bus 2 price at 12.11 $/MW-hr. This difference reflects that, because of the transmission constraint, a load increase at one bus will incur a different cost than a load increase at another bus. Equality constraintsLower boundsUpper bounds EquationValueVariablevaluevariablevalue P B1 0.0000P g1 -63.750P g1 0.0000 P B2 0.0000P g2 0.0000P g2 0.0000 P B3 -86.000P g4 0.0000P g4 0.0000 P B4 0.0000P B1 0.0000P B1 0.0000 P B5 0.0000P B2 0.0000P B2 0.0000 P1P1 1243.25P B3 0.0000P B3 -86.000 P2P2 1211.00P B4 0.0000P B4 0.0000 P3P3 1264.75P B5 0.0000P B5 0.0000 P4P4 1254.00θ1θ1 0.0000θ1θ1 θ2θ2 θ2θ2 θ3θ3 θ3θ3 θ4θ4 θ4θ4 20

21 Case 2b Let’s increase the load at the highest price bus, bus #3, from 1.1787 to 1.1887 per unit, an increase of 1 MW. Resulting dispatch/flows are below, together with the Case 2a dispatch/flows. Case 2b flows/dispatch (P B3 constrained, P d2 =1.1887) Case 2a flows/dispatch (P B3 constrained, P d2 =1.1787) To supply an additional MW at bus 3, the generation levels of 2 different units had to be modified. Specifically, P g2 was decreased from 1.1803 to 1.1778, a decrease of 0.0025 pu (0.25 MW). P g4 was increased from 0.4984 pu to 0.5109 pu, an increase of 0.0125 pu (1.25 MW). Thus, P g4 was increased enough to supply the increased load at bus 3 and the decreased gen at bus 2. Question: Why did we not just increase Unit 2 or increase Unit 4 by 1 MW? 21

22 Case 2b Case 2b flows/dispatch (P B3 constrained, P d2 =1.1887) Case 2a flows/dispatch (P B3 constrained, P d2 =1.1787) In fact, it is not possible to supply additional load at bus 3 with only a single unit increase. We will always have to compensate for the load AND redispatch to compensate for the additional flow on the branch 3. As a result, the nodal price at bus 3 is a function of the generation costs at those buses that are used in the particular redispatch that achieves the minimum cost. Answer: Because the resulting flow on branch 3 would exceed its capacity!!! 22 We can show this by writing the Lagrangian (with terms corresponding to the four equality constraints and the one inequality constraint), and applying firsts order conditions. On the injection equations, partials with respect to P gi will be 0 except for injections that require P gi to move in order to satisfy the line flow constraint (I should do this).

23 Demand bidding Economists will tell you that a market is efficient if traders extract the maximum total net surplus (yellow area in below curve). 23 So we want to solve this problem: where v k and C k represent the bids and offers of the load serving entities (LSEs) and generation owners, respectively. Subject to constraints….. Equivalently, we may use the following objective function in above problem:

24 Demand bidding Linearizing both objective functions terms results in the following problem: 24 subject to

25 Example with demand bidding 25, s 1 =13.07 $/MWhr s 2 =12.11 $/MWhr s 4 =12.54 $/MWhr s 1 =1307 $/puMWhr s 2 =1211 $/puMWhr s 4 =1254 $/puMWhr Objective function: 1.00<P d2 <2.00 2.00<P d3 <3.00 s d2 =13.00 $/MWhr s d3 =12.00 $/MWhr s d2 =1300 $/puMWhr s d3 =1200 $/puMWhr

26 26, DC power flow equality constraints: From last time: where Here P g3, P d1, P d4 are fixed at 0,0,0, so the above become: Putting the equations into CPLEX constraint form (variables on left, constant on RHS): Example with demand bidding

27 27, Line flow equality constraints: From last time: This is exactly the same as in the previous examples. Note we need “full” node- arc incidence matrix because we have full DC power flow equations.

28 Example with demand bidding 28, minimize: …and the inequality constraints

29 CPLEX Code minimize 1307 pg1 + 1211 pg2 + 1254 pg4 - 1300 pd2 - 1200 pd3 subject to theta1=0 -pb1 + 10 theta1 - 10 theta4 = 0 -pb2 + 10 theta1 - 10 theta2 = 0 -pb3 + 10 theta2 - 10 theta3 = 0 -pb4 - 10 theta3 + 10 theta4 = 0 -pb5 + 10 theta1 - 10 theta3 = 0 pg1 - 30 theta1 + 10 theta2 + 10 theta3 + 10 theta4 = 0 pg2 -pd2 + 10 theta1 - 20 theta2 + 10 theta3 = 0 -pd3 + 10 theta1 + 10 theta2 - 30 theta3 + 10 theta4 = 0 pg4 + 10 theta1 + 10 theta3 - 20 theta4 = 0 -pg1 <= -0.5 pg1 <= 2 -pg2 <= -0.375 pg2 <= 1.5 -pg4<= -0.45 pg4 <= 1.8 -pd2 <= -1 pd2 <= 2 -pd3 <= -2 pd3 <= 3 -pb1 <= 500 pb1 <= 500 -pb2 <= 500 pb2 <= 500 -pb3 <= 500 pb3 <= 500 -pb4 <= 500 pb4 <= 500 -pb5 <= 500 pb5 <= 500 Bounds -500 <= pb1 <= 500 -500 <= pb2 <= 500 -500 <= pb3 <= 500 -500 <= pb4 <= 500 -500 <= pb5 <= 500 -3.14159 <= theta1 <= 3.14159 -3.14159 <= theta2 <= 3.14159 -3.14159 <= theta3 <= 3.14159 -3.14159 <= theta4 <= 3.14159 end Objective Line flows DC power flow equations Generation offer constraints Line flow constraints CPLEX only provides dual variables for equalities and inequalities that appear in the constraint list and not the “bounds” list, i.e., it does not provide dual variables for inequalities in the “bounds” list. If the exact same constraints are imposed both places, CPLEX will not provide a dual variable. If you do not explicitly define a bound on a variable, then CPLEX applies bounds of 0 to ∞, and so if you want negativity for a variable, you must impose that here. I can arbitrarily set one angle to whatever I like (within bounds), since it is the angle differences that are important.29 Load bid constraints

30 Solution This is negative of the social surplus. So the social surplus (Total Utility of Load less Total Cost of Supply) is $12.80. Not too much! This is because the consumers are valuing the energy at just a little above cost. If we change the utility function coefficients to 1500 and 1400, from 1300 and 1200, respectively, social surplus changes to $904/hr. If we change utility function coefficients to 1000 and 900, respectively, social surplus would be -$924/hr, indicating cost of supply is more than utility of consumption, and the only reason any power is being consumed is the lower bound constraints we have placed on generation and demand. Z*=-$12.80 30

31 Solution display solution variables – Variable Name Solution Value pg1 0.500000 pg2 1.500000 pg4 1.800000 pd2 1.800000 pd3 2.000000 pb1 -0.587500 theta4 0.058750 pb2 0.462500 theta2 -0.046250 pb3 0.162500 theta3 -0.062500 pb4 1.212500 pb5 0.625000 All other variables in the range 1-14 are 0. Z*=-$12.80 31

32 Solution ($/per unit-hr) display solution dual - Constraint Name Dual Price c7 1300.000000 c8 1300.000000 c9 1300.000000 c10 1300.000000 c11 -7.000000 c14 -89.000000 c16 -46.000000 c19 -100.000000 All other dual prices in the range 1-30 are 0. c7-c10 are$13.00/MWhr  Increasing load by 1 MW at any bus 1,2,3, or 4 increases objective by $13.00. This is set by the bus 2 load, P d2, as it will respond to any MW change. There is only one unconstrained decision variable, P d2, and it is the variable that is setting the nodal price ($13.00/MWhr). We say that P d2 is a “regulating” or “marginal” unit. 32 Equality constraintsLower boundsUpper bounds EquationValueVariablevaluevariablevalue P B1 -0.0000P g1 -7.0000P g1 0.0000 P B2 -0.0000P g2 0.0000P g2 -89.00 P B3 0.0000P g4 0.0000P g4 -46.00 P B4 0.0000P d2 0.0000P d2 0.0000 P B5 -0.0000P d3 -100.00P d2 0.0000 P1P1 1300.0P B1 0.0000P B1 0.0000 P2P2 1300.0P B2 0.0000P B2 0.0000 P3P3 1300.0P B3 0.0000P B3 0.0000 P4P4 1300.0P B4 0.0000P B4 0.0000 P B5 0.0000P B5 0.0000 θ1θ1 θ1θ1 θ2θ2 θ2θ2 θ3θ3 θ3θ3 θ4θ4 θ4θ4

33 Solution Think of algorithm like this: 1.Initialize: Set gen and load at lower limits. At least one variable must come off its lower bound to provide power balance. Sum of load lower bounds is 3; Sum of gen lower bounds is 1.325, one or more of the gens must come off their lower bounds by 1.675 pu in order to provide a feasible solution. This gen will be the one with the least offer. P g2 is least expensive and it comes off its lower bound first but can only supply up to 1.125 pu additional generation. We need 1.675 pu. So P g2 gets pushed to its limit. P g4 as next least-offer gen then comes off its lower limit of.45 and provides an additional amount equal to 1.675-1.125=.55, so that P g4 is now generating at.45+.55=1. At this point, the total generation is.375+1.125+.45+.55+.5=3; solution is feasible. 33 1.00<P d2 <2.00 2.00<P d3 <3.00 s g2 =1211 $/pu-hrs d2 =1300 $/pu-hr s g4 =1254 $/pu-hrs d3 =1200 $/pu-hr s g1 =1307 $/pu-hr P g2 P g4 P g1 So P g4 =1 and has 0.8 left at 12.54, P d2 =1, with 1.0 left at 13.00. Because 13.00>12.54, there is still surplus to be obtained!

34 Solution 34 2.Maximally increase surplus: Then it takes 1 MW (.01 pu) of supply and 1 MW (.01 pu) of demand from the gen/load pair not at upper bounds which provides the most positive surplus per MW. This will be the gen with the least cost and the load with the greatest utility, as long as surplus is positive. Repeat this until you hit limit (then switch) or surplus goes negative (then stop). G4 goes to 1.8 and D2 goes to 1.8. Now G4 is at limit and so we switch to G1 at 13.07, while D2 is at 13.00. If we take a MW from this pair, the surplus will decrease! STOP! 1.00<P d2 <2.00 2.00<P d3 <3.00 s g2 =1211 $/pu-hr s d2 =1300 $/pu-hr s g4 =1254 $/pu-hr s d3 =1200 $/pu-hr s g1 =1307 $/pu-hr

35 Demand bidding with constrained transmission Previous solution, unconstrained transmission had P b3 =0.1625, so we constrain P b3 to 0.16. minimize 1307 pg1 + 1211 pg2 + 1254 pg4 - 1300 pd2 - 1200 pd3 subject to theta1=0 -pb1 + 10 theta1 - 10 theta4 = 0 -pb2 + 10 theta1 - 10 theta2 = 0 -pb3 + 10 theta2 - 10 theta3 = 0 -pb4 - 10 theta3 + 10 theta4 = 0 -pb5 + 10 theta1 - 10 theta3 = 0 pg1 - 30 theta1 + 10 theta2 + 10 theta3 + 10 theta4 = 0 pg2 -pd2 + 10 theta1 - 20 theta2 + 10 theta3 = 0 -pd3 + 10 theta1 + 10 theta2 - 30 theta3 + 10 theta4 = 0 pg4 + 10 theta1 + 10 theta3 - 20 theta4 = 0 -pg1 <= -0.5 pg1 <= 2 -pg2 <= -0.375 pg2 <= 1.5 -pg4<= -0.45 pg4 <= 1.8 -pd2 <= -1 pd2 <= 2 -pd3 <= -2 pd3 <= 3 -pb1 <= 500 pb1 <= 500 -pb2 <= 500 pb2 <= 500 -pb3 <= 0.16 pb3 <= 0.16 -pb4 <= 500 pb4 <= 500 -pb5 <= 500 pb5 <= 500 Bounds -500 <= pb1 <= 500 -500 <= pb2 <= 500 -500 <= pb3 <= 500 -500 <= pb4 <= 500 -500 <= pb5 <= 500 -3.14159 <= theta1 <= 3.14159 -3.14159 <= theta2 <= 3.14159 -3.14159 <= theta3 <= 3.14159 -3.14159 <= theta4 <= 3.14159 end

36 Solution display solution variables - Variable Name Solution Value pg1 0.506667 pg2 1.500000 pg4 1.800000 pd2 1.806667 pd3 2.000000 pb1 -0.586667 theta4 0.058667 pb2 0.466667 theta2 -0.046667 pb3 0.160000 theta3 -0.062667 pb4 1.213333 pb5 0.626667 All other variables in the range 1-14 are 0. Z*=-$12.7533 36

37 Solution ($/per unit-hr) display solution dual - Constraint Name Dual Price c1 -0.000000 c4 -18.666667 c7 1307.000000 c8 1300.000000 c9 1311.666667 c10 1309.333333 c14 -89.000000 c16 -55.333333 c19 -111.666667 c26 -18.666667 All other dual prices in the range 1-30 are 0. 37 Equality constraintsLower boundsUpper bounds EquationValueVariablevaluevariablevalue P B1 -0.0000P g1 0.0000P g1 0.0000 P B2 0.0000P g2 0.0000P g2 -89.0000 P B3 -18.6667P g4 0.0000P g4 -55.3333 P B4 0.0000P d2 0.0000P d2 0.0000 P B5 0.0000P d3 - 111.667P d3 0.0000 P1P1 1307.0P B1 0.0000P B1 0.0000 P2P2 1300.0P B2 0.0000P B2 0.0000 P3P3 1311.667P B3 0.0000P B3 -18.6667 P4P4 1309.333P B4 0.0000P B4 0.0000 P B5 0.0000P B5 0.0000 θ1θ1 θ1θ1 θ2θ2 θ2θ2 θ3θ3 θ3θ3 θ4θ4 θ4θ4

38 Demand bidding w/ constrained transmission 38 Previous solution, unconstrained transmission, so we constrain P b3 to 0.16. New solution, with constrained transmission. Equality constraintsLower boundsUpper bounds EquationValueVariablevaluevariablevalue P B1 -0.0000P g1 0.0000P g1 0.0000 P B2 0.0000P g2 0.0000P g2 -89.0000 P B3 0.0187P g4 0.0000P g4 -55.3333 P B4 0.0000P d2 0.0000P d2 0.0000 P B5 0.0000P d3 111.6667P d3 0.0000 P1P1 1307.0P B1 0.0000P B1 0.0000 P2P2 1300.0P B2 0.0000P B2 0.0000 P3P3 1311.7P B3 0.0000P B3 -18.6667 P4P4 1309.3P B4 0.0000P B4 0.0000 P B5 0.0000P B5 0.0000 θ1θ1 θ1θ1 θ2θ2 θ2θ2 θ3θ3 θ3θ3 θ4θ4 θ4θ4 Observe! There are two regulating buses this time. RULE: For n binding constraints, there are at least n+1 marginal (regulating) buses. The LMP at a marginal bus is always equal to its offer or bid. s g2 =1211 $/pu-hr s d2 =1300 $/pu-hr s g4 =1254 $/pu-hr s d3 =1200 $/pu-hr s g1 =1307 $/pu-hr

39 Settlement without congestion (fixed demand) 39 Original solution, ∞ transmission Objective function: Z*=2705.8 $/hr. Equality constraintsLower boundsUpper bounds EquationValueVariablevaluevariablevalue P B1 0.0000P g1 96.0000P g1 0.0000 P B2 0.0000P g2 0 0.0000 P B3 0.0000P g4 43.0000P g4 0.0000 P B4 0.0000P B1 0 0.0000 P B5 0.0000P B2 0 0.0000 P1P1 1211.0P B3 0 0.0000 P2P2 1211.0P B4 0 0.0000 P3P3 1211.0P B5 0 0.0000 P4P4 1211.0θ1θ1 0θ1θ1 0.0000 θ2θ2 0θ2θ2 θ3θ3 0θ3θ3 θ4θ4 0θ4θ4 Amount paid to generators: Total payments to gens: 605.50+1487.96+544.95 =2638.41$/hr. Amount paid by loads: Total payments by loads: 1211.00+1427.41 =2638.41$/hr,  Market settles with total payment to gens equaling total payment to loads. Question: Why does total payments to gens (or total payments by loads) not equal Z*=2705.8$/hr?

40 Settlement without congestion (fixed demand) Question: Why does total payments to gens (or total payments by loads) not equal Z*=2705.8$/hr? Answer: We optimize on the offers. We settle at LMPs. To illustrate, let’s see what happens if we settle at offers Offers: s g2 =1211 $/pu-hr s g4 =1254 $/pu-hr s g1 =1307 $/pu-hr Total payments to gens will be 653.50+1487.96+564.30 =2705.76$/hr, So why do we settle at the LMPs rather than the offers? According to paper referenced at the right: J. Yan, G. Stern, P. Luh, and F. Zhao, “Payment versus bid cost,” IEEE Power and Energy Magazine, March/April 2008. “The primary reason for this conclusion is that under the pay-as-bid settlement scheme, market participants would bid substantially higher than their marginal costs (since there is no incentive for participants to bid their operating cost) to try to increase their revenue and, thus, offset and very likely exceed the expected consumer payment reduction. As a result, currently all ISOs in the United States adopt the pay-at-MCP principle.” A pay-as-bid settlement scheme incentivizes participants to bid high since the bid is what they will be paid if their bid is accepted. The disincentive to bidding high is that their bid might not be accepted. A pay-at LMP settlement scheme provides no incentive to bid high. The disincentive to bid high because their bid might not be accepted remains.

41 Settlement with congestion (fixed demand) 41 Amount paid to generators: Total payments to gens: 621.60+1429.34+624.99 =2675.93$/hr. Amount paid by loads: Total payments by loads: 1211.00+1490.70 =2701.70$/hr,  Amount paid by loads exceeds that paid to the gens by $25.77. Why is this? Equality constraintsLower boundsUpper bounds EquationValueVariablevaluevariablevalue P B1 0.0000P g1 -63.750P g1 0.0000 P B2 0.0000P g2 0.0000P g2 0.0000 P B3 -86.000P g4 0.0000P g4 0.0000 P B4 0.0000P B1 0.0000P B1 0.0000 P B5 0.0000P B2 0.0000P B2 0.0000 P1P1 1243.25P B3 0.0000P B3 -86.000 P2P2 1211.00P B4 0.0000P B4 0.0000 P3P3 1264.75P B5 0.0000P B5 0.0000 P4P4 1254.00θ1θ1 0.0000θ1θ1 θ2θ2 θ2θ2 θ3θ3 θ3θ3 θ4θ4 θ4θ4 Z*=$2707.8358

42 Settlement with congestion (fixed demand) 42 Why does amount paid by loads exceed that paid to the gens by $25.77? Consider under the condition of no losses, the power balance equation: Now what if there is no congestion and prices at all buses are the same at LMP, i.e., LMP j =LMP for all buses j=1,…,n. In this case: And we have just proved that for the case without congestion, when all LMPs are the same, the amount paid by loads equals the amount paid to the generators. But when all LMPs are not the same (when we have congestion), the above proof does not hold. In this case, we can show that (see notes):  The load pays into the market an amount exceeding the amount generators are paid by the congestion charges. These charges may be computed as the sum of products of line constraint dual variables and the RHS of the constraint. Let’s check that in the example we just did.

43 Settlement with congestion (fixed demand) 43 Equality constraintsLower boundsUpper bounds EquationValueVariablevaluevariablevalue P B1 0.0000P g1 -63.750P g1 0.0000 P B2 0.0000P g2 0.0000P g2 0.0000 P B3 -86.000P g4 0.0000P g4 0.0000 P B4 0.0000P B1 0.0000P B1 0.0000 P B5 0.0000P B2 0.0000P B2 0.0000 P1P1 1243.25P B3 0.0000P B3 -86.000 P2P2 1211.00P B4 0.0000P B4 0.0000 P3P3 1264.75P B5 0.0000P B5 0.0000 P4P4 1254.00θ1θ1 0.0000θ1θ1 θ2θ2 θ2θ2 θ3θ3 θ3θ3 θ4θ4 θ4θ4 Recall that the amount paid by loads exceeds that paid to the gens by $25.77.

44 Settlement with congestion (w/demand bidding) 44 Equality constraintsLower boundsUpper bounds EquationValueVariablevaluevariablevalue P B1 -0.0000P g1 0.0000P g1 0.0000 P B2 0.0000P g2 0.0000P g2 -89.0000 P B3 0.0187P g4 0.0000P g4 -55.3333 P B4 0.0000P d2 0.0000P d2 0.0000 P B5 0.0000P d3 111.6667P d3 0.0000 P1P1 1307.0P B1 0.0000P B1 0.0000 P2P2 1300.0P B2 0.0000P B2 0.0000 P3P3 1311.7P B3 0.0000P B3 -18.6667 P4P4 1309.3P B4 0.0000P B4 0.0000 P B5 0.0000P B5 0.0000 θ1θ1 θ1θ1 θ2θ2 θ2θ2 θ3θ3 θ3θ3 θ4θ4 θ4θ4 Amount paid to generators: Total payments to gens: 662.21+1950.00+2356.74 =4968.95$/hr. Amount paid by loads: Total payments by loads: 2348.67+2623.40 =4972.07$/hr,  Amount paid by loads exceeds that paid to the gens by $3.12. pg1 0.506667 pg2 1.500000 pg4 1.800000 pd2 1.806667 pd3 2.000000 pb1 -0.586667 theta4 0.058667 pb2 0.466667 theta2 -0.046667 pb3 0.160000 theta3 -0.062667 pb4 1.213333 pb5 0.626667  Use dual variable from line flow constraint: 18.6667*.16=2.99

45 Summary 45 1.Congestion causes LMPs to vary from one bus to another. 2.“Marginal” or “regulating” buses are not at either limits. 3.There will always be at least n+1 regulating buses, where n is number of congested lines. 4.We optimize on the offers and bids but we settle at the LMPs. 5.If there is no congestion, the payments by the loads will equal the payments to the generators. 6.If there is congestion, the payments by the loads will exceed the payments to the generators by the congestion charges. 7.The congestion charges equal the sum over all congested lines of the product of each line’s dual variable and its line flow limit.


Download ppt "EE 553 LPOPF J. McCalley 1. LPOPF The linear program optimal power flow (LPOPF) is functionally equivalent to the SCED, except whereas LPOPF implements."

Similar presentations


Ads by Google