SlideShare ist ein Scribd-Unternehmen logo
1 von 54
Downloaden Sie, um offline zu lesen
Power Flow Studies
I Power flow studies are of great importance in planning and
operation.
I A power flow study gives the magnitude and angle of the
voltage at each bus.
I Once the bus voltage magnitudes and angles are known, the
real and reactive power flow through each line can be
computed and hence losses in a system.
I Power flow studies are a steady state analysis of a power
system. They are called as load flow studies.
I Since the loads are specified in terms of power, the resulting
equations are non-linear algebraic which need to be solved
iteratively.
I We use numerical methods such as Gauss-Seidal and
Newton-Raphson Methods for solving them.
Power Flow Problem:
Let Vi be the voltage at ith bus.
Vi = |Vi | δi
Let Yii and Yij be
Yii = |Yii | θii Yij = |Yij | θij
The net current injected into the network at bus i
O is
Ii = Yi1V1 + Yi2V2 + · · · + YiNVN =
N
X
n=1
YinVn
where N be the total number of buses in the network. Let Pi and
Qi be the net real and reactive power entering the network at the
bus i
O.
Pi + Qi = Vi I∗
i
Pi − Qi = V ∗
i Ii
Pi − Qi = V ∗
i
N
X
n=1
YinVn
On substitution,
Pi − Qi = |Vi | −δi
N
X
n=1
|Yin||Vn| θin + δn
Pi − Qi =
N
X
n=1
|Yin||Vi ||Vn| θin + δn − δi
Equating real and and imaginary parts,
Pi =
N
X
n=1
|Yin||Vi ||Vn| cos(θin + δn − δi )
Qi = −
N
X
n=1
|Yin||Vi ||Vn| sin(θin + δn − δi )
The above equations are power flow equations in the polar form.
They are non linear functions of |V | and δ.
P = f1(|V |, δ)
Q = f2(|V |, δ)
→ Pgi
→ Qgi
Pdi , Qdi
→ Pi,sch
→ Qi,sch
i
O
} Pi , Qi
The net scheduled power injected into the network
Pi,sch = Pgi − Pdi ; Qi,sch = Qgi − Qdi
The mismatch power
∆Pi = Pi,sch − Pi ∆Qi = Qi,sch − Qi
If the calculated values match the scheduled values perfectly, the
mismatches are zero at bus i
O. The power balance equations
(Pgi − Pdi ) − Pi = 0
(Qgi − Qdi ) − Qi = 0
At each bus i
O, there are four quantities.
Pi , Qi , |Vi |, δi
Two of the four quantities are specified and the remaining two are
calculated.
Types of Buses:
The main objective of the power flow is to find |V | and δ of each
bus when power generation and loads are specified. To facilitate
this, the buses are classified into three different types.
1. Load buses (PQ)
2. Generator buses / Voltage controlled buses (PV)
3. Slack /Swing bus
1. Load buses:
At each load bus, Pgi and Qgi are zero. Pdi and Qdi are
specified.
Pi,sch = −Pdi ; Qi,sch = −Qdi
|Vi | and δi are to be determined at each load bus.
2. Voltage-controlled buses:
I A bus at which the voltage magnitude is kept constant is said
to be voltage controlled.
I At each generator bus, Pgi and |Vi | are specified. Qgi and δi
are to be determined.
I These buses are called as generator buses.
I Buses which have voltage control capability even without
generators are designated as voltage controlled buses. Pgi = 0
for those buses.
3. Slack bus:
I For convenience, bus 1
O is almost always designated as the
slack bus.
I |V1| and δ1 are specified. Usually δ1 = 0◦
.
I P1 and Q1 are to be found.
I Since the losses can be found only after |V | and δ are known
at each bus, the slack bus Pg and Qg are not specified.
I The slack bus supplies the difference between the specified
power going into the network at all the other buses and the
total output plus losses.
I A generator bus with the largest generating capacity is usually
selected as the slack bus.
Power Flow Studies - Methods
I The power flow equations are nonlinear functions of |Vi | and
δi .
I Hence, iterative techniques such as Gauss-Seidel and
Newton-Raphson methods are used to solve them.
I Gauss- Seidel method solves the power flow equations in
rectangular form.
I Newton- Raphson method solves the power flow equations in
polar form.
Gauss Seidel Method
Let f (x) be a non-linear function of one variable.
f (x) = 0
To solve it, let us rewrite f (x) as follows:
x = g(x)
where g is another function of x. (It need not be unique.)
I Assume x0.
I Set k = 0.
I Find the next iterate
xk+1
= g(xk
)
I Check for convergence i.e., |xk+1 − xk| ≤ . Otherwise repeat
the above step.
Let us extend it to multi- variable functions.
f1(x1, x2) = 0
f2(x1, x2) = 0
I Assume x0
1 and x0
2 .
I Set k = 0.
I Find the next iterate
xk+1
1 = g1(xk
1 , xk
2 )
xk+1
2 = g2(xk+1
1 , xk
2 )
I Check for convergence i.e., kxk+1 − xkk ≤ . Otherwise repeat
the above step.
I G-S method is slow. It converges linearly.
I To accelerate convergence, an acceleration factor (α) is used.
xk+1
acc = xk
+ α(xk+1
− xk
)
In power flow studies, α is 1.6.
Example : Use G-S method to solve the following equation.
Assume x0 = 2. α = 1.6
f (x) = x3
− 6x2
+ 9x − 4 = 0
This can be written as
x = −
1
9
(x3
− 6x2
− 4)
First Iteration:
x1
= 2.2222
x1
acc = x1
+ α(x1
− x0
) = 2 + 1.6 × (2.2222 − 2) = 2.3556
It took almost 10 iterations to reach a solution.
x10
acc ≈ 4
I G-S Method is slow.
I It requires less computations per iteration.
Example : Use Gauss-Seidal method to find the solution of the
following equations
x1 + x1x2 = 10
x1 + x2 = 6
with x0
1 = 1 and x0
2 = 1.
The functions can be rewritten as
x1 =
10
1 + x2
x2 = 6 − x1
The general form of G-S Method
xk+1
1 =
10
1 + xk
2
xk+1
2 = 6 − xk+1
1
First Iteration:
x1
1 = 10/2 = 5
x1
2 = 6 − 5 = 1
It took 2 iterations to reach the solution.
x =

5
1

Suppose we start with x0 =

0
0

. We will reach the following
solution in 15 iterations.
x =

2
4
Gauss-Seidel Method - Power Flow Studies:
Pi,sch − Qi,sch = V ∗
i
N
X
n=1
YinVn
where Pi,sch = Pgi − Pdi and Qi,sch = Qgi − Qdi .
Pi,sch − Qi,sch
V ∗
i
= Yi1V1 + · · · + Yii Vi + · · · + YiNVN
It can be rewritten as
Vi =
1
Yii

Pi,sch − Qi,sch
V ∗
i
− (Yi1V1 + · · · + YiNVN)

Vi =
1
Yii



Pi,sch − Qi,sch
V ∗
i
−
N
X
n=1
n6=i
YinVn



In general,
V k+1
i =
1
Yii
Pi,sch − Qi,sch
(V k
i )∗
−
i−1
X
n=1
YinV k+1
n −
N
X
n=i+1
YinV k
n
!
When a system has only PQ (load) buses,
1. Form Ybus matrix from the line data.
2. Assume Vi = 1 + 0 for all PQ buses. It is called a flat start
3. Update voltages of load buses using the following equation.
V k+1
i =
1
Yii
Pi,sch − Qi,sch
(V k
i )∗
−
i−1
X
n=1
YinV k+1
n −
N
X
n=i+1
YinV k
n
!
4. Accelerate the voltage to improve convergence.
V k+1
i,acc = V k
i + α(V k+1
i − V k
i )
5. Check for convergence |V k+1
i,acc − V k
i | ≤ .
6. If yes, stop. Otherwise go to step 3.
When a system has both PQ and PV (voltage controlled) buses,
1. Form Ybus matrix from the line data.
2. Assume Vi = 1 + 0 for all load buses. δi = 0 for all PV buses.
3. If the bus is PQ,
I Update voltages of load buses using the following equation.
V k+1
i =
1
Yii
Pi,sch − Qi,sch
(V k
i )∗
−
i−1
X
n=1
YinV k+1
n −
N
X
n=i+1
YinV k
n
!
4. If the bus is PV , (Qi is not given in PV buses.)
I Find Qi using the following equation
Qk+1
i = −Imag
(
(V k
i )∗
i−1
X
n=1
YinV k+1
n +
N
X
n=i
YinV k
n
!)
I If Qi,min ≤ Qk+1
i ≤ Qi,max , update the voltage as follows:
V k+1
i =
1
Yii
Pi,sch − Qk+1
i
(V k
i )∗
−
i−1
X
n=1
YinV k+1
n −
N
X
n=i+1
YinV k
n
!
Since |Vi | is given,
V k+1
i,corr = |Vi |
V k+1
i
|V k+1
i |
I Else, set Qi to the violated limit.
Qi = Qi,min if Qi  Qi,min
Qi = Qi,max if Qi  Qi,max
Treat the bus as PQ bus and update the voltage (both
magnitude and angle) accordingly for this iteration.
5. Accelerate the voltage to improve convergence.
V k+1
i,acc = V k
i + α(V k+1
i − V k
i )
6. Check for convergence |V k+1
i,acc − V k
i | ≤ .
7. If yes, stop. Otherwise go to step 3.
8. Find the line flows, losses and the slack bus power.
Example :
1
O 2
O
3
O
Table: Line data
Bus Code R (p.u.) X (p.u.) Y
2 (p.u.)
1-2 0  0.1  0.01
1-3 0  0.1  0.01
2-3 0  0.1  0.01
Table: Bus data
Bus Pg Qg Pd Qd |V | δ Type
1 — — — — 1 0 Slack
2 0.6661 — — — 1.05 — PV
3 — — 2.8653 1.2244 — — PQ
Assume a flat voltage start, determine the voltage at the end of
first iteration using G-S method. 0.2 ≤ Q2 ≤ 2. Take α = 1.6.
1. Form Ybus matrix.
Ybus =



1
0.1
+ 1
0.1
+ 0.01 + 0.01 − 1
0.1
− 1
0.1
− 1
0.1
1
0.1
+ 1
0.1
+ 0.01 + 0.01 − 1
0.1
− 1
0.1
− 1
0.1
1
0.1
+ 1
0.1
+ 0.01 + 0.01



Ybus =


−19.98 10 10
10 −19.98 10
10 10 −19.98


2. Start the first iteration k = 0.
I Bus 2
O is a PV bus.
I Find Q2.
Q1
2 = −Imag
n
(V 0
2 )∗

Y21V 1
1 + Y22V 0
2 + Y23V 0
3
o
= −Imag{(1.05+0)∗
×(10(1+0)+(−19.98)(1.05+0)
+ 10(1 + 0))}
Q1
2 = 1.028
Q2 is within limit. Modify V2.
V 1
2 =
1
Y22

P2,sch − Q1
2
(V 0
2 )∗
− Y21V 1
1 − Y23V 0
3

V 1
2 =
1
−19.98

0.6661 − 1.028
(1.05 + 0)∗
− 10 × (1 + 0) − 10 × (1 + 0)

V 1
2 = 1.0500 + 0.0318
Since |V2| is fixed,
V 1
2,corr = |V2|
V 1
2
|V 1
2 |
= 1.05×
1.0500 + 0.0318
1.0505
= 1.0495+0.0317
V 1
2,corr = 1.05 1.732◦
I Bus 3
O is a PQ bus.
I Update V3.
V 1
3 =
1
Y33

P3,sch − Q3,sch
(V 0
3 )∗
− Y31V 1
1 − Y32V 1
2

V 1
3 =
1
−19.98
{
−2.8653 + 1.2244
(1 + 0)∗
− 10 × (1 + 0)
− 10 × (1.0495 + 0.0317)}
V 1
3 = 0.9645 − 0.1275
V 1
3,acc = V 0
3 +α(V 1
3 −V 0
3 ) = (1+0)+1.6×(0.9645−0.1275−1−0)
V 1
3,acc = 0.9432 − 0.2040
3. Slack bus power
It took 13 iterations to converge.
V =


1.0000 + 0.0000
1.0486 − 0.0551
0.9354 − 0.1648


S1 = V1 × I∗
1
P1 = 2.1985; Q1 = 0.1408
PL = 0; QL = 0.5601
Newton’s Method :
Let f (x) be a non-linear function of one variable.
f (x) = 0
I It approximates the given function as linear and solves
repeatedly.
Let x0 be the initial guess and ∆x0 be the correction value to be
added to x0 to get the actual solution.
f (x0
+ ∆x0
) = 0
Let us expand it using Taylor’s series and neglect higher order
terms .
f (x0
) +
df
dx x=x0
∆x0
+ · · · ≈ 0
If we neglect higher order terms,
∆x0
= −
f (x0)
df
dx x=x0
To get the second approximation,
x1
= x0
+ ∆x0
= x0
−
f (x0)
df
dx x=x0
In general
xk+1
= xk
−
f (xk)
df
dx x=xk
Check for convergence i.e., |xk+1 − xk| ≤ . Otherwise repeat the
above step.
Example 2: Let us solve the example 1 by Newton’s Method.
f (x) = x3
− 6x2
+ 9x − 4 = 0
df
dx
= 3x2
− 12x + 9
Assume x0 = 2.
∆x0
= −
−2
−3
= −0.6667
x1
= x0
+ ∆x0
= 2 − 0.6667 = 1.3333
It took 10 iterations to reach another solution.
x10
= 1.006
Assume x0 = 5.
∆x0
= −
−2
−3
= −0.6667
x1
= x0
+ ∆x0
= 5 − 0.6667 = 4.3333
It took 5 iterations to reach the first solution.
x5
= 4
x
f (x)
x0 = 2
x1
x0 = 5
x1
If x0 = 3, Newton’s method will fail for this problem because
df
dx
= 0 at x0 = 3.
Newton-Raphson Method:
f1(x1, x2) = 0
f2(x1, x2) = 0
Let x0 be the initial guess and ∆x0 be the correction value to be
added to x0 to get the actual solution.
f1(x0
1 + ∆x0
1 , x0
2 + ∆x0
2 ) = 0
f2(x0
1 + ∆x0
1 , x0
2 + ∆x0
2 ) = 0
Let us expand it using Taylor’s series and neglect higher order
terms.
f1(x0
1 , x0
2 ) +
∂f1
∂x1 (x0
1 ,x0
2 )
∆x0
1 +
∂f1
∂x2 (x0
1 ,x0
2 )
∆x0
2 + · · · ≈ 0
f2(x0
1 , x0
2 ) +
∂f2
∂x1 (x0
1 ,x0
2 )
∆x0
1 +
∂f2
∂x2 (x0
1 ,x0
2 )
∆x0
2 + · · · ≈ 0
If we neglect higher order terms,



∂f1
∂x1
∂f1
∂x2
∂f2
∂x1
∂f1
∂x2



(x0
1 ,x0
2 )

∆x0
1
∆x0
2

=

0 − f1(x0
1 , x0
2 )
0 − f2(x0
1 , x0
2 )

The Jacobian matrix is
J =



∂f1
∂x1
∂f1
∂x2
∂f2
∂x1
∂f1
∂x2



The mismatch vector ∆f is
∆f =

0 − f1(x1, x2)
0 − f2(x1, x2)

Therefore, the mismatch equations are
J0
∆x0
= ∆f0
By solving for ∆x0, we get the next estimates.
x1
= x0
+ ∆x0
In general
xk+1
= xk
+ ∆xk
The above process is repeated till k∆xkk ≤ .
I Every iteration, J has to be formed.
I ∆x has to be found by solving the mismatch equations either
by inverse or triangular factorization.
Example 3: Consider the following nonlinear equations.
4x2 sin x1 = −0.6
4x2
2 − 4x2 cos x1 = −0.3
Find x1 and x2. Assume x0
1 = 0 rad and x0
2 = 1.
∆f =

−0.6 − 4x2 sin x1
−0.3 − 4x2
2 + 4x2 cos x1

J =



∂f1
∂x1
∂f1
∂x2
∂f2
∂x1
∂f1
∂x2


 =

4x2 cos x1 4 sin x1
4x2 sin x1 8x2 − 4 cos x1

First Iteration:
J0
∆x0
= ∆f0

4 0
0 4
 
∆x0
1
∆x0
2

=

−0.6
−0.3
∆x0
1
∆x0
2

=

4 0
0 4
−1 
−0.6
−0.3

=

−0.150
−0.075


x1
1
x1
2

=

x0
1
x0
2

+

∆x0
1
∆x0
2

=

−0.15
0.925

It converged after 3 iterations.
x4
1 = −0.1668 rad; x4
2 = 0.9030
I N-R method converges fast if the starting point is near a
solution.
I It takes a few iterations to converge irrespective of system
variables.
I But it requires a lot of computations per iteration (Calculation
of J and either inverse or triangular factorization).
I It does not converge to a solution from an arbitrary starting
point.
N-R Method - Power Flow Studies
Pi =
N
X
n=1
|Yin||Vi ||Vn| cos(θin + δn − δi )
Qi = −
N
X
n=1
|Yin||Vi ||Vn| sin(θin + δn − δi )
They are non linear functions of |V | and δ.
P = f1(|V |, δ)
Q = f2(|V |, δ)
By N-R method, the mismatch equations are

∆P
∆Q

=

J1 J2
J3 J4
 
∆δ
∆|V|
where
∆P = Psch
− Pcal
; ∆Q = Qsch
− Qcal
J1, J2, J3 and J4 are sub matrices of Jacobian.
J1 = [
∂P
∂δ
]; J2 = [
∂P
∂|V |
]; J3 = [
∂Q
∂δ
]; J4 = [
∂Q
∂|V |
];
To find the size of the Jacobian matrix, let us assume that there
are m voltage controlled buses in the system of n buses.
I Since P is specified for n − 1 buses, the size of ∆P is
(n − 1) × 1.
I Since Q is specified for only PQ buses, the size of ∆Q is
(n − m − 1) × 1.
I Size of J1 is (n − 1) × (n − 1)
I Size of J2 is (n − 1) × (n − m − 1)
I Size of J3 is (n − m − 1) × (n − 1)
I Size of J4 is (n − m − 1) × (n − m − 1)
The size of the Jacobian is (2n − m − 2) × (2n − m − 2).
To find J1:
Off-Diagonal Elements:
∂Pi
∂δn
= −|Yin||Vi ||Vn| sin(θin + δn − δi ) i 6= n
Diagonal Elements :
∂Pi
∂δi
=
N
X
n=1
n6=i
|Yin||Vi ||Vn| sin(θin + δn − δi )
To find J2:
Off-Diagonal Elements:
∂Pi
∂|Vn|
= |Yin||Vi | cos(θin + δn − δi ) i 6= n
Diagonal Elements:
∂Pi
∂|Vi |
= 2|Yii ||Vi | cos(θii ) +
N
X
n=1
n6=i
|Yin||Vn| cos(θin + δn − δi )
To find J3:
Off-Diagonal Elements:
∂Qi
∂δn
= −|Yin||Vi ||Vn| cos(θin + δn − δi ) i 6= n
Diagonal Elements:
∂Qi
∂δi
=
N
X
n=1
n6=i
|Yin||Vi ||Vn| cos(θin + δn − δi )
To find J4:
Off-Diagonal Elements:
∂Qi
∂|Vn|
= −|Yin||Vi | sin(θin + δn − δi ) i 6= n
Diagonal Elements:
∂Qi
∂|Vi |
= −2|Vi ||Yii | sin(θii ) −
N
X
n=1
n6=i
|Yin||Vn| sin(θin + δn − δi )
Example :
1
O 2
O
3
O
Table: Line data
Bus Code R (p.u.) X (p.u.) Y
2 (p.u.)
1-2 0  0.1  0.01
1-3 0  0.1  0.01
2-3 0  0.1  0.01
Table: Bus data
Bus Pg Qg Pd Qd |V | δ Type
1 — — — — 1 0 Slack
2 0.6661 — — — 1.05 — PV
3 — — 2.8653 1.2244 — — PQ
Assume a flat voltage start, determine the voltage at the end of
first iteration using N-R method. 0.2 ≤ Q2 ≤ 2.
2
O is a PV bus and 3
O is a PQ bus.
P2 = |Y21||V2||V1| cos(θ21 + δ1 − δ2) + |Y22||V2|2
cos(θ22)
+ |Y23||V2||V3| cos(θ23 + δ3 − δ2)
P3 = |Y31||V3||V1| cos(θ31+δ1−δ3)+|Y32||V3||V2| cos(θ32+δ2−δ3)
+ |Y33||V3|2
cos(θ33)
Q3 = −|Y31||V3||V1| sin(θ31+δ1−δ3)−|Y32||V3||V2| sin(θ32+δ2−δ3)
− |Y33||V3|2
sin(θ33)
Since, n = 3 and m = 1, the mismatch equations are


∆P2
∆P3
∆Q3


3×1
=







∂P2
∂δ2
∂P2
∂δ3
∂P2
∂|V3|
∂P3
∂δ2
∂P3
∂δ3
∂P3
∂|V3|
∂Q3
∂δ2
∂Q3
∂δ3
∂Q3
∂|V3|







3×3


∆δ2
∆δ3
∆|V3|


3×1
1. Form Ybus matrix.
Ybus =


19.98 −90◦ 10 90◦ 10 90◦
10 90◦ 19.98 −90◦ 10 90◦
10 90◦ 10 90◦ 19.98 −90◦


2. Assume δ2 = δ3 = 0. and |V3| = 1.
3. Set k = 0.
4. Find the mismatch vector.


∆P2
∆P3
∆Q3


0
=


P2,sch − P2(δ0
2, δ0
3, |V3|0)
P3,sch − P3(δ0
2, δ0
3, |V3|0)
Q3,sch − Q3(δ0
2, δ0
3, |V3|0)

 =


0.6661 − 0
−2.8653 − 0
−1.2244 − (−0.52)




∆P2
∆P3
∆Q3


0
=


0.6661
−2.8653
−0.7044


J0
=


21 −10.5 0
−10.5 20.5 0
0 0 19.46


5. Solve for the correction vector.


∆δ2
∆δ3
∆|V3|


0
= [J0
]−1


∆P2
∆P3
∆Q3


0


∆δ2
∆δ3
∆|V3|


0
=


−0.0513 rad
−0.1660 rad
−0.0362


6. Find the new estimate.


δ2
δ3
|V3|


1
=


δ2
δ3
|V3|


0
+


∆δ2
∆δ3
∆|V3|


0


δ2
δ3
|V3|


1
=


0
0
1

 +


−0.0513
−0.1660
−0.0362

 =


−0.0513 rad
−0.1660 rad
0.9638


7. k=k+1 and go back to step 4.
8. It took 5 iterations to converge.


δ2
δ3
|V3|

 =


−0.0524 rad
−0.1745 rad
0.9500


9. Slack bus power:
Pg = 2.1992; Qg = 0.1387
10. Losses :
PL = 0; QL = 0.5560
Decoupled Load Flow
By N-R method, the mismatch equations are

∆P
∆Q

=

J1 J2
J3 J4
 
∆δ
∆|V|

In a well designed power system, X
R ratio is high.
1. Real power (P) in transmission lines is primarily dependent on
voltage angle (δ).
2. Reactive power (P) in transmission lines is primarily
dependent on voltage magnitude (|V |).

∆P
∆Q

=

J1 0
0 J4
 
∆δ
∆|V|

Therefore,
∆P = J1∆δ
∆Q = J4∆|V|
Fast Decoupled Load Flow (FDLF)
Let us introduce further simplifications.
In a well designed and properly operated system,
1. The angular differences between buses are small.
cos(δi − δj ) ≈ 1; sin(δi − δj ) ≈ (δi − δj )
2. The line susceptancs Bij are many times larger than the line
conductances Gij .
Gij sin(δi − δj )  Bij cos(δi − δj )
3. The net reactive power Qi injected into bus i during normal
operation is much less than the reactive power which would
flow if all the lines were from the bus were short circuited.
Qi  |Vi |2
Bii
From J1:
Off-Diagonal Elements:
∂Pi
∂δn
= −|Yin||Vi ||Vn| sin(θin + δn − δi ) i 6= n
= −|Vi |Vn|Bin
= −|Vi |Bin (Assuming |Vn| ≈ 1)
Diagonal Elements
∂Pi
∂δi
=
N
X
n=1
n6=i
|Yin||Vi ||Vn| sin(θin + δn − δi )
=
N
X
n=1
|Yin||Vi ||Vn| sin(θin + δn − δi ) − |Vi |2
|Yii | sin(θii )
= −Qi − |Vi |2
Bii
= −|Vi |2
Bii (Since Qi  |Vi |2
Bii )
= −|Vi |Bii (Assuming |Vi |2
≈ |Vi |)
From J4:
Off-Diagonal Elements:
∂Qi
∂|Vn|
= −|Yin||Vi | sin(θin + δn − δi ) i 6= n
= −|Vi |Bin
Diagonal Elements:
∂Qi
∂|Vi |
= −2|Vi ||Yii | sin(θii ) −
N
X
n=1
n6=i
|Yin||Vn| sin(θin + δn − δi )
= −|Vi ||Yii | sin(θii ) −
N
X
n=1
|Yin||Vn| sin(θin + δn − δi )
= −|Vi |Bii + Qi
= −|Vi |Bii (Since Qi  |Vi |2
Bii )
Therefore,
∆P
|V |
= −B0
∆δ
∆Q
|V |
= −B00
∆|V|
1. B0 and B00 are the imaginary part of the bus admittance
matrix (YBus).
2. The size of B0 is (n − 1) × (n − 1) and the size of B00 is
(n − m − 1) × (n − m − 1).
3. Since they are constant, they need to be triangulaized
(inverted) once.
∆δ = −[B0
]−1 ∆P
|V |
∆|V| = −[B00
]−1 ∆Q
|V |
1. N-R method is accurate and takes less iterations but requires
a lot of calculations per iteration (more time).
2. FDLF takes more iterations but less calculations per iteration
(less time).
3. FDLF solves load flow very rapidly.
4. FDLF is used where accuracy is not important.
Line Flows, Losses and Slack Bus Power:
Once the bus voltages are found numerically, the next step is to
find line flows and losses.
Iij Il yij Iji
Vi Vj
Ii0
yi0
Ij0
yj0
Iij = Il + Ii0 = yij (Vi − Vj ) + yi0Vi
Iji = −Iij = yij (Vj − Vi ) + yj0Vj
The complex power Sij and Sji are
Sij = Vi I∗
ij
Sji = Vj I∗
ji
The power loss in the line i − j is
SL,ij = Sij + Sji
The slack bus power can be computed as follows:
P1 − Q1 = V ∗
1
N
X
n=1
Y1nVn
The Slack bus does the following.
PG1 = −(
X
i∀Gen
i6=Slack
PGi −
X
i∀load
Pdi − PL)
QG1 = −(
X
i∀Gen
i6=Slack
QGi −
X
i∀load
Qdi − QL)
Example : For the system shown in the figure, SD1 and SD2 are
complex power demands at bus 1 and bus 2 respectively. If |V2| =
1 p.u., compute the rating of capacitor (QG2) connected at bus 2
in p.u.
V1 = 1∠0◦
1
X = 0.5 p.u.
2
SD1 = (1 + 0) p.u. SD2 = (1 + 0) p.u.
QG2
1. Form Ybus matrix.
Ybus =



1
0.5
−
1
0.5
−
1
0.5
1
0.5


 =

2 −90◦ 2 90◦
2 90◦ 2 −90◦
2. Since 2
O is a voltage controlled (PV ) bus,
P2,sch = PG2 − PD2 = 0 − 1 = −1
The net real power injected into the network at 2
O.
P2 = Y21||V2||V1| cos(θ21 + δ1 − δ2) + Y22||V2|2
cos(θ22)
δ2 can be found directly instead of N-R method for this
equation. At 2
O,
P2,sch = P2
On substitution,
2 cos(90◦
− δ2) = −1
2 sin δ2 = −1
δ2 = −30◦
3. QG2 is found as follows:
Q2,sch = QG2 − QD2 = QG2
The net reactive power injected into the network at 2
O.
Q2 = −Y21||V2||V1| sin(θ21 + δ1 − δ2) − Y22||V2|2
sin(θ22)
On substitution,
Q2 = −2 sin(120◦
) + 2 = 0.2679
At 2
O,
Q2,sch = Q2
Therefore,
QG2 = 0.2679 p.u.

Weitere ähnliche Inhalte

Was ist angesagt?

Unit 5 Economic Load Dispatch and Unit Commitment
Unit 5 Economic Load Dispatch and Unit CommitmentUnit 5 Economic Load Dispatch and Unit Commitment
Unit 5 Economic Load Dispatch and Unit CommitmentSANTOSH GADEKAR
 
Conductors used in transmission line
Conductors used in transmission lineConductors used in transmission line
Conductors used in transmission lineSourabh sharma
 
Single phase ac voltage controller
Single phase ac voltage controllerSingle phase ac voltage controller
Single phase ac voltage controllerSwati Tiwari
 
Inverters (DC-AC)
Inverters (DC-AC)Inverters (DC-AC)
Inverters (DC-AC)Taimur Ijaz
 
Gauss Seidel Method of Power Flow
Gauss Seidel Method of Power FlowGauss Seidel Method of Power Flow
Gauss Seidel Method of Power FlowYunusAhmad9
 
Voltage source Converters as a building block of HVDC and FACTS
Voltage source Converters as a building block of HVDC and FACTSVoltage source Converters as a building block of HVDC and FACTS
Voltage source Converters as a building block of HVDC and FACTSKarthik Bharadwaj
 
O&m of hvdc station power grid india
O&m of hvdc station power grid indiaO&m of hvdc station power grid india
O&m of hvdc station power grid indiaVaibhav Jain
 
Economic operation of Power systems by Unit commitment
Economic operation of Power systems by Unit commitment Economic operation of Power systems by Unit commitment
Economic operation of Power systems by Unit commitment Pritesh Priyadarshi
 
Unit-1 Power Semiconductor devices
Unit-1 Power Semiconductor devicesUnit-1 Power Semiconductor devices
Unit-1 Power Semiconductor devicesjohny renoald
 
Principles of Power Systems V.K Mehta Complete Book - Chapter 5
Principles of Power Systems V.K Mehta Complete Book - Chapter 5Principles of Power Systems V.K Mehta Complete Book - Chapter 5
Principles of Power Systems V.K Mehta Complete Book - Chapter 5Power System Operation
 
Transmission Loss Calculation on 33 / 66 / 132 KV Lines for Solar Power Plant
Transmission Loss Calculation on 33 / 66 / 132 KV  Lines for Solar Power PlantTransmission Loss Calculation on 33 / 66 / 132 KV  Lines for Solar Power Plant
Transmission Loss Calculation on 33 / 66 / 132 KV Lines for Solar Power PlantGensol Engineering Limited
 
Controlled Rectifier
Controlled RectifierControlled Rectifier
Controlled RectifierFaraz Ahmed
 
Design of dc armature winding
Design of dc armature windingDesign of dc armature winding
Design of dc armature windingAbhishek Choksi
 

Was ist angesagt? (20)

Unit 5 Economic Load Dispatch and Unit Commitment
Unit 5 Economic Load Dispatch and Unit CommitmentUnit 5 Economic Load Dispatch and Unit Commitment
Unit 5 Economic Load Dispatch and Unit Commitment
 
Dog Conductor
Dog ConductorDog Conductor
Dog Conductor
 
Conductors used in transmission line
Conductors used in transmission lineConductors used in transmission line
Conductors used in transmission line
 
Single phase ac voltage controller
Single phase ac voltage controllerSingle phase ac voltage controller
Single phase ac voltage controller
 
Inverters (DC-AC)
Inverters (DC-AC)Inverters (DC-AC)
Inverters (DC-AC)
 
Gauss Seidel Method of Power Flow
Gauss Seidel Method of Power FlowGauss Seidel Method of Power Flow
Gauss Seidel Method of Power Flow
 
Voltage source Converters as a building block of HVDC and FACTS
Voltage source Converters as a building block of HVDC and FACTSVoltage source Converters as a building block of HVDC and FACTS
Voltage source Converters as a building block of HVDC and FACTS
 
O&m of hvdc station power grid india
O&m of hvdc station power grid indiaO&m of hvdc station power grid india
O&m of hvdc station power grid india
 
Silicon control rectifier
Silicon control rectifierSilicon control rectifier
Silicon control rectifier
 
Sag and tension
Sag and tensionSag and tension
Sag and tension
 
Economic operation of Power systems by Unit commitment
Economic operation of Power systems by Unit commitment Economic operation of Power systems by Unit commitment
Economic operation of Power systems by Unit commitment
 
Unit-1 Power Semiconductor devices
Unit-1 Power Semiconductor devicesUnit-1 Power Semiconductor devices
Unit-1 Power Semiconductor devices
 
CURRENT LIMITING REACTORS
CURRENT  LIMITING  REACTORSCURRENT  LIMITING  REACTORS
CURRENT LIMITING REACTORS
 
Principles of Power Systems V.K Mehta Complete Book - Chapter 5
Principles of Power Systems V.K Mehta Complete Book - Chapter 5Principles of Power Systems V.K Mehta Complete Book - Chapter 5
Principles of Power Systems V.K Mehta Complete Book - Chapter 5
 
Scr basics
Scr   basicsScr   basics
Scr basics
 
Power flow analysis
Power flow analysisPower flow analysis
Power flow analysis
 
Pe dual converter ppt
Pe dual converter pptPe dual converter ppt
Pe dual converter ppt
 
Transmission Loss Calculation on 33 / 66 / 132 KV Lines for Solar Power Plant
Transmission Loss Calculation on 33 / 66 / 132 KV  Lines for Solar Power PlantTransmission Loss Calculation on 33 / 66 / 132 KV  Lines for Solar Power Plant
Transmission Loss Calculation on 33 / 66 / 132 KV Lines for Solar Power Plant
 
Controlled Rectifier
Controlled RectifierControlled Rectifier
Controlled Rectifier
 
Design of dc armature winding
Design of dc armature windingDesign of dc armature winding
Design of dc armature winding
 

Ähnlich wie Load_Flow.pdf

Ähnlich wie Load_Flow.pdf (20)

Load_Flow.pptx
Load_Flow.pptxLoad_Flow.pptx
Load_Flow.pptx
 
Gauss seidel method
Gauss seidel methodGauss seidel method
Gauss seidel method
 
Power_System_Load_Flow.pptx
Power_System_Load_Flow.pptxPower_System_Load_Flow.pptx
Power_System_Load_Flow.pptx
 
Circuitanly
CircuitanlyCircuitanly
Circuitanly
 
Ece4762011 lect11[1]
Ece4762011 lect11[1]Ece4762011 lect11[1]
Ece4762011 lect11[1]
 
ECE476_2016_Lect 12.pptx
ECE476_2016_Lect 12.pptxECE476_2016_Lect 12.pptx
ECE476_2016_Lect 12.pptx
 
Report_AKbar_PDF
Report_AKbar_PDFReport_AKbar_PDF
Report_AKbar_PDF
 
APSA LEC 9
APSA LEC 9APSA LEC 9
APSA LEC 9
 
Newton Raphson method for load flow analysis
Newton Raphson method for load flow analysisNewton Raphson method for load flow analysis
Newton Raphson method for load flow analysis
 
Voltage stability enhancement of a Transmission Line
Voltage stability  enhancement of a Transmission Line Voltage stability  enhancement of a Transmission Line
Voltage stability enhancement of a Transmission Line
 
Load flow studies 19
Load flow studies 19Load flow studies 19
Load flow studies 19
 
Lecture 13
Lecture 13Lecture 13
Lecture 13
 
NR-Power Flow.pdf
NR-Power Flow.pdfNR-Power Flow.pdf
NR-Power Flow.pdf
 
Load flow study
Load flow studyLoad flow study
Load flow study
 
Lecture 10
Lecture 10Lecture 10
Lecture 10
 
Absorbing Random Walk Centrality
Absorbing Random Walk CentralityAbsorbing Random Walk Centrality
Absorbing Random Walk Centrality
 
Lecture 12
Lecture 12Lecture 12
Lecture 12
 
Convergence Criteria
Convergence CriteriaConvergence Criteria
Convergence Criteria
 
ECEN615_Fall2020_Lect4.pptx
ECEN615_Fall2020_Lect4.pptxECEN615_Fall2020_Lect4.pptx
ECEN615_Fall2020_Lect4.pptx
 
Ch2 2011 s
Ch2 2011 sCh2 2011 s
Ch2 2011 s
 

Kürzlich hochgeladen

An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitterShivangiSharma879191
 
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsyncWhy does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsyncssuser2ae721
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleAlluxio, Inc.
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catcherssdickerson1
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 

Kürzlich hochgeladen (20)

An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter
 
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsyncWhy does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at Scale
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 

Load_Flow.pdf

  • 1. Power Flow Studies I Power flow studies are of great importance in planning and operation. I A power flow study gives the magnitude and angle of the voltage at each bus. I Once the bus voltage magnitudes and angles are known, the real and reactive power flow through each line can be computed and hence losses in a system. I Power flow studies are a steady state analysis of a power system. They are called as load flow studies. I Since the loads are specified in terms of power, the resulting equations are non-linear algebraic which need to be solved iteratively. I We use numerical methods such as Gauss-Seidal and Newton-Raphson Methods for solving them.
  • 2. Power Flow Problem: Let Vi be the voltage at ith bus. Vi = |Vi | δi Let Yii and Yij be Yii = |Yii | θii Yij = |Yij | θij The net current injected into the network at bus i O is Ii = Yi1V1 + Yi2V2 + · · · + YiNVN = N X n=1 YinVn where N be the total number of buses in the network. Let Pi and Qi be the net real and reactive power entering the network at the bus i O. Pi + Qi = Vi I∗ i Pi − Qi = V ∗ i Ii
  • 3. Pi − Qi = V ∗ i N X n=1 YinVn On substitution, Pi − Qi = |Vi | −δi N X n=1 |Yin||Vn| θin + δn Pi − Qi = N X n=1 |Yin||Vi ||Vn| θin + δn − δi Equating real and and imaginary parts, Pi = N X n=1 |Yin||Vi ||Vn| cos(θin + δn − δi ) Qi = − N X n=1 |Yin||Vi ||Vn| sin(θin + δn − δi )
  • 4. The above equations are power flow equations in the polar form. They are non linear functions of |V | and δ. P = f1(|V |, δ) Q = f2(|V |, δ) → Pgi → Qgi Pdi , Qdi → Pi,sch → Qi,sch i O } Pi , Qi
  • 5. The net scheduled power injected into the network Pi,sch = Pgi − Pdi ; Qi,sch = Qgi − Qdi The mismatch power ∆Pi = Pi,sch − Pi ∆Qi = Qi,sch − Qi If the calculated values match the scheduled values perfectly, the mismatches are zero at bus i O. The power balance equations (Pgi − Pdi ) − Pi = 0 (Qgi − Qdi ) − Qi = 0
  • 6. At each bus i O, there are four quantities. Pi , Qi , |Vi |, δi Two of the four quantities are specified and the remaining two are calculated. Types of Buses: The main objective of the power flow is to find |V | and δ of each bus when power generation and loads are specified. To facilitate this, the buses are classified into three different types. 1. Load buses (PQ) 2. Generator buses / Voltage controlled buses (PV) 3. Slack /Swing bus
  • 7. 1. Load buses: At each load bus, Pgi and Qgi are zero. Pdi and Qdi are specified. Pi,sch = −Pdi ; Qi,sch = −Qdi |Vi | and δi are to be determined at each load bus. 2. Voltage-controlled buses: I A bus at which the voltage magnitude is kept constant is said to be voltage controlled. I At each generator bus, Pgi and |Vi | are specified. Qgi and δi are to be determined. I These buses are called as generator buses. I Buses which have voltage control capability even without generators are designated as voltage controlled buses. Pgi = 0 for those buses.
  • 8. 3. Slack bus: I For convenience, bus 1 O is almost always designated as the slack bus. I |V1| and δ1 are specified. Usually δ1 = 0◦ . I P1 and Q1 are to be found. I Since the losses can be found only after |V | and δ are known at each bus, the slack bus Pg and Qg are not specified. I The slack bus supplies the difference between the specified power going into the network at all the other buses and the total output plus losses. I A generator bus with the largest generating capacity is usually selected as the slack bus.
  • 9. Power Flow Studies - Methods I The power flow equations are nonlinear functions of |Vi | and δi . I Hence, iterative techniques such as Gauss-Seidel and Newton-Raphson methods are used to solve them. I Gauss- Seidel method solves the power flow equations in rectangular form. I Newton- Raphson method solves the power flow equations in polar form.
  • 10. Gauss Seidel Method Let f (x) be a non-linear function of one variable. f (x) = 0 To solve it, let us rewrite f (x) as follows: x = g(x) where g is another function of x. (It need not be unique.) I Assume x0. I Set k = 0. I Find the next iterate xk+1 = g(xk ) I Check for convergence i.e., |xk+1 − xk| ≤ . Otherwise repeat the above step.
  • 11. Let us extend it to multi- variable functions. f1(x1, x2) = 0 f2(x1, x2) = 0 I Assume x0 1 and x0 2 . I Set k = 0. I Find the next iterate xk+1 1 = g1(xk 1 , xk 2 ) xk+1 2 = g2(xk+1 1 , xk 2 ) I Check for convergence i.e., kxk+1 − xkk ≤ . Otherwise repeat the above step. I G-S method is slow. It converges linearly. I To accelerate convergence, an acceleration factor (α) is used. xk+1 acc = xk + α(xk+1 − xk ) In power flow studies, α is 1.6.
  • 12. Example : Use G-S method to solve the following equation. Assume x0 = 2. α = 1.6 f (x) = x3 − 6x2 + 9x − 4 = 0 This can be written as x = − 1 9 (x3 − 6x2 − 4) First Iteration: x1 = 2.2222 x1 acc = x1 + α(x1 − x0 ) = 2 + 1.6 × (2.2222 − 2) = 2.3556 It took almost 10 iterations to reach a solution. x10 acc ≈ 4 I G-S Method is slow. I It requires less computations per iteration.
  • 13. Example : Use Gauss-Seidal method to find the solution of the following equations x1 + x1x2 = 10 x1 + x2 = 6 with x0 1 = 1 and x0 2 = 1. The functions can be rewritten as x1 = 10 1 + x2 x2 = 6 − x1 The general form of G-S Method xk+1 1 = 10 1 + xk 2 xk+1 2 = 6 − xk+1 1
  • 14. First Iteration: x1 1 = 10/2 = 5 x1 2 = 6 − 5 = 1 It took 2 iterations to reach the solution. x = 5 1 Suppose we start with x0 = 0 0 . We will reach the following solution in 15 iterations. x = 2 4
  • 15. Gauss-Seidel Method - Power Flow Studies: Pi,sch − Qi,sch = V ∗ i N X n=1 YinVn where Pi,sch = Pgi − Pdi and Qi,sch = Qgi − Qdi . Pi,sch − Qi,sch V ∗ i = Yi1V1 + · · · + Yii Vi + · · · + YiNVN It can be rewritten as Vi = 1 Yii Pi,sch − Qi,sch V ∗ i − (Yi1V1 + · · · + YiNVN) Vi = 1 Yii    Pi,sch − Qi,sch V ∗ i − N X n=1 n6=i YinVn   
  • 16. In general, V k+1 i = 1 Yii Pi,sch − Qi,sch (V k i )∗ − i−1 X n=1 YinV k+1 n − N X n=i+1 YinV k n ! When a system has only PQ (load) buses, 1. Form Ybus matrix from the line data. 2. Assume Vi = 1 + 0 for all PQ buses. It is called a flat start 3. Update voltages of load buses using the following equation. V k+1 i = 1 Yii Pi,sch − Qi,sch (V k i )∗ − i−1 X n=1 YinV k+1 n − N X n=i+1 YinV k n ! 4. Accelerate the voltage to improve convergence. V k+1 i,acc = V k i + α(V k+1 i − V k i ) 5. Check for convergence |V k+1 i,acc − V k i | ≤ . 6. If yes, stop. Otherwise go to step 3.
  • 17. When a system has both PQ and PV (voltage controlled) buses, 1. Form Ybus matrix from the line data. 2. Assume Vi = 1 + 0 for all load buses. δi = 0 for all PV buses. 3. If the bus is PQ, I Update voltages of load buses using the following equation. V k+1 i = 1 Yii Pi,sch − Qi,sch (V k i )∗ − i−1 X n=1 YinV k+1 n − N X n=i+1 YinV k n ! 4. If the bus is PV , (Qi is not given in PV buses.) I Find Qi using the following equation Qk+1 i = −Imag ( (V k i )∗ i−1 X n=1 YinV k+1 n + N X n=i YinV k n !)
  • 18. I If Qi,min ≤ Qk+1 i ≤ Qi,max , update the voltage as follows: V k+1 i = 1 Yii Pi,sch − Qk+1 i (V k i )∗ − i−1 X n=1 YinV k+1 n − N X n=i+1 YinV k n ! Since |Vi | is given, V k+1 i,corr = |Vi | V k+1 i |V k+1 i | I Else, set Qi to the violated limit. Qi = Qi,min if Qi Qi,min Qi = Qi,max if Qi Qi,max Treat the bus as PQ bus and update the voltage (both magnitude and angle) accordingly for this iteration.
  • 19. 5. Accelerate the voltage to improve convergence. V k+1 i,acc = V k i + α(V k+1 i − V k i ) 6. Check for convergence |V k+1 i,acc − V k i | ≤ . 7. If yes, stop. Otherwise go to step 3. 8. Find the line flows, losses and the slack bus power.
  • 20. Example : 1 O 2 O 3 O Table: Line data Bus Code R (p.u.) X (p.u.) Y 2 (p.u.) 1-2 0  0.1  0.01 1-3 0  0.1  0.01 2-3 0  0.1  0.01 Table: Bus data Bus Pg Qg Pd Qd |V | δ Type 1 — — — — 1 0 Slack 2 0.6661 — — — 1.05 — PV 3 — — 2.8653 1.2244 — — PQ Assume a flat voltage start, determine the voltage at the end of first iteration using G-S method. 0.2 ≤ Q2 ≤ 2. Take α = 1.6.
  • 21. 1. Form Ybus matrix. Ybus =    1 0.1 + 1 0.1 + 0.01 + 0.01 − 1 0.1 − 1 0.1 − 1 0.1 1 0.1 + 1 0.1 + 0.01 + 0.01 − 1 0.1 − 1 0.1 − 1 0.1 1 0.1 + 1 0.1 + 0.01 + 0.01    Ybus =   −19.98 10 10 10 −19.98 10 10 10 −19.98   2. Start the first iteration k = 0. I Bus 2 O is a PV bus. I Find Q2. Q1 2 = −Imag n (V 0 2 )∗ Y21V 1 1 + Y22V 0 2 + Y23V 0 3 o = −Imag{(1.05+0)∗ ×(10(1+0)+(−19.98)(1.05+0) + 10(1 + 0))} Q1 2 = 1.028
  • 22. Q2 is within limit. Modify V2. V 1 2 = 1 Y22 P2,sch − Q1 2 (V 0 2 )∗ − Y21V 1 1 − Y23V 0 3 V 1 2 = 1 −19.98 0.6661 − 1.028 (1.05 + 0)∗ − 10 × (1 + 0) − 10 × (1 + 0) V 1 2 = 1.0500 + 0.0318 Since |V2| is fixed, V 1 2,corr = |V2| V 1 2 |V 1 2 | = 1.05× 1.0500 + 0.0318 1.0505 = 1.0495+0.0317 V 1 2,corr = 1.05 1.732◦
  • 23. I Bus 3 O is a PQ bus. I Update V3. V 1 3 = 1 Y33 P3,sch − Q3,sch (V 0 3 )∗ − Y31V 1 1 − Y32V 1 2 V 1 3 = 1 −19.98 { −2.8653 + 1.2244 (1 + 0)∗ − 10 × (1 + 0) − 10 × (1.0495 + 0.0317)} V 1 3 = 0.9645 − 0.1275 V 1 3,acc = V 0 3 +α(V 1 3 −V 0 3 ) = (1+0)+1.6×(0.9645−0.1275−1−0) V 1 3,acc = 0.9432 − 0.2040
  • 24. 3. Slack bus power It took 13 iterations to converge. V =   1.0000 + 0.0000 1.0486 − 0.0551 0.9354 − 0.1648   S1 = V1 × I∗ 1 P1 = 2.1985; Q1 = 0.1408 PL = 0; QL = 0.5601
  • 25. Newton’s Method : Let f (x) be a non-linear function of one variable. f (x) = 0 I It approximates the given function as linear and solves repeatedly. Let x0 be the initial guess and ∆x0 be the correction value to be added to x0 to get the actual solution. f (x0 + ∆x0 ) = 0 Let us expand it using Taylor’s series and neglect higher order terms . f (x0 ) + df dx x=x0 ∆x0 + · · · ≈ 0
  • 26. If we neglect higher order terms, ∆x0 = − f (x0) df dx x=x0 To get the second approximation, x1 = x0 + ∆x0 = x0 − f (x0) df dx x=x0 In general xk+1 = xk − f (xk) df dx x=xk Check for convergence i.e., |xk+1 − xk| ≤ . Otherwise repeat the above step.
  • 27. Example 2: Let us solve the example 1 by Newton’s Method. f (x) = x3 − 6x2 + 9x − 4 = 0 df dx = 3x2 − 12x + 9 Assume x0 = 2. ∆x0 = − −2 −3 = −0.6667 x1 = x0 + ∆x0 = 2 − 0.6667 = 1.3333 It took 10 iterations to reach another solution. x10 = 1.006 Assume x0 = 5. ∆x0 = − −2 −3 = −0.6667 x1 = x0 + ∆x0 = 5 − 0.6667 = 4.3333
  • 28. It took 5 iterations to reach the first solution. x5 = 4 x f (x) x0 = 2 x1 x0 = 5 x1 If x0 = 3, Newton’s method will fail for this problem because df dx = 0 at x0 = 3.
  • 29. Newton-Raphson Method: f1(x1, x2) = 0 f2(x1, x2) = 0 Let x0 be the initial guess and ∆x0 be the correction value to be added to x0 to get the actual solution. f1(x0 1 + ∆x0 1 , x0 2 + ∆x0 2 ) = 0 f2(x0 1 + ∆x0 1 , x0 2 + ∆x0 2 ) = 0 Let us expand it using Taylor’s series and neglect higher order terms. f1(x0 1 , x0 2 ) + ∂f1 ∂x1 (x0 1 ,x0 2 ) ∆x0 1 + ∂f1 ∂x2 (x0 1 ,x0 2 ) ∆x0 2 + · · · ≈ 0 f2(x0 1 , x0 2 ) + ∂f2 ∂x1 (x0 1 ,x0 2 ) ∆x0 1 + ∂f2 ∂x2 (x0 1 ,x0 2 ) ∆x0 2 + · · · ≈ 0
  • 30. If we neglect higher order terms,    ∂f1 ∂x1 ∂f1 ∂x2 ∂f2 ∂x1 ∂f1 ∂x2    (x0 1 ,x0 2 ) ∆x0 1 ∆x0 2 = 0 − f1(x0 1 , x0 2 ) 0 − f2(x0 1 , x0 2 ) The Jacobian matrix is J =    ∂f1 ∂x1 ∂f1 ∂x2 ∂f2 ∂x1 ∂f1 ∂x2    The mismatch vector ∆f is ∆f = 0 − f1(x1, x2) 0 − f2(x1, x2) Therefore, the mismatch equations are J0 ∆x0 = ∆f0
  • 31. By solving for ∆x0, we get the next estimates. x1 = x0 + ∆x0 In general xk+1 = xk + ∆xk The above process is repeated till k∆xkk ≤ . I Every iteration, J has to be formed. I ∆x has to be found by solving the mismatch equations either by inverse or triangular factorization.
  • 32. Example 3: Consider the following nonlinear equations. 4x2 sin x1 = −0.6 4x2 2 − 4x2 cos x1 = −0.3 Find x1 and x2. Assume x0 1 = 0 rad and x0 2 = 1. ∆f = −0.6 − 4x2 sin x1 −0.3 − 4x2 2 + 4x2 cos x1 J =    ∂f1 ∂x1 ∂f1 ∂x2 ∂f2 ∂x1 ∂f1 ∂x2    = 4x2 cos x1 4 sin x1 4x2 sin x1 8x2 − 4 cos x1 First Iteration: J0 ∆x0 = ∆f0 4 0 0 4 ∆x0 1 ∆x0 2 = −0.6 −0.3
  • 33. ∆x0 1 ∆x0 2 = 4 0 0 4 −1 −0.6 −0.3 = −0.150 −0.075 x1 1 x1 2 = x0 1 x0 2 + ∆x0 1 ∆x0 2 = −0.15 0.925 It converged after 3 iterations. x4 1 = −0.1668 rad; x4 2 = 0.9030 I N-R method converges fast if the starting point is near a solution. I It takes a few iterations to converge irrespective of system variables. I But it requires a lot of computations per iteration (Calculation of J and either inverse or triangular factorization). I It does not converge to a solution from an arbitrary starting point.
  • 34. N-R Method - Power Flow Studies Pi = N X n=1 |Yin||Vi ||Vn| cos(θin + δn − δi ) Qi = − N X n=1 |Yin||Vi ||Vn| sin(θin + δn − δi ) They are non linear functions of |V | and δ. P = f1(|V |, δ) Q = f2(|V |, δ) By N-R method, the mismatch equations are ∆P ∆Q = J1 J2 J3 J4 ∆δ ∆|V|
  • 35. where ∆P = Psch − Pcal ; ∆Q = Qsch − Qcal J1, J2, J3 and J4 are sub matrices of Jacobian. J1 = [ ∂P ∂δ ]; J2 = [ ∂P ∂|V | ]; J3 = [ ∂Q ∂δ ]; J4 = [ ∂Q ∂|V | ]; To find the size of the Jacobian matrix, let us assume that there are m voltage controlled buses in the system of n buses. I Since P is specified for n − 1 buses, the size of ∆P is (n − 1) × 1. I Since Q is specified for only PQ buses, the size of ∆Q is (n − m − 1) × 1. I Size of J1 is (n − 1) × (n − 1) I Size of J2 is (n − 1) × (n − m − 1) I Size of J3 is (n − m − 1) × (n − 1) I Size of J4 is (n − m − 1) × (n − m − 1) The size of the Jacobian is (2n − m − 2) × (2n − m − 2).
  • 36. To find J1: Off-Diagonal Elements: ∂Pi ∂δn = −|Yin||Vi ||Vn| sin(θin + δn − δi ) i 6= n Diagonal Elements : ∂Pi ∂δi = N X n=1 n6=i |Yin||Vi ||Vn| sin(θin + δn − δi ) To find J2: Off-Diagonal Elements: ∂Pi ∂|Vn| = |Yin||Vi | cos(θin + δn − δi ) i 6= n Diagonal Elements: ∂Pi ∂|Vi | = 2|Yii ||Vi | cos(θii ) + N X n=1 n6=i |Yin||Vn| cos(θin + δn − δi )
  • 37. To find J3: Off-Diagonal Elements: ∂Qi ∂δn = −|Yin||Vi ||Vn| cos(θin + δn − δi ) i 6= n Diagonal Elements: ∂Qi ∂δi = N X n=1 n6=i |Yin||Vi ||Vn| cos(θin + δn − δi ) To find J4: Off-Diagonal Elements: ∂Qi ∂|Vn| = −|Yin||Vi | sin(θin + δn − δi ) i 6= n Diagonal Elements: ∂Qi ∂|Vi | = −2|Vi ||Yii | sin(θii ) − N X n=1 n6=i |Yin||Vn| sin(θin + δn − δi )
  • 38. Example : 1 O 2 O 3 O Table: Line data Bus Code R (p.u.) X (p.u.) Y 2 (p.u.) 1-2 0  0.1  0.01 1-3 0  0.1  0.01 2-3 0  0.1  0.01 Table: Bus data Bus Pg Qg Pd Qd |V | δ Type 1 — — — — 1 0 Slack 2 0.6661 — — — 1.05 — PV 3 — — 2.8653 1.2244 — — PQ Assume a flat voltage start, determine the voltage at the end of first iteration using N-R method. 0.2 ≤ Q2 ≤ 2.
  • 39. 2 O is a PV bus and 3 O is a PQ bus. P2 = |Y21||V2||V1| cos(θ21 + δ1 − δ2) + |Y22||V2|2 cos(θ22) + |Y23||V2||V3| cos(θ23 + δ3 − δ2) P3 = |Y31||V3||V1| cos(θ31+δ1−δ3)+|Y32||V3||V2| cos(θ32+δ2−δ3) + |Y33||V3|2 cos(θ33) Q3 = −|Y31||V3||V1| sin(θ31+δ1−δ3)−|Y32||V3||V2| sin(θ32+δ2−δ3) − |Y33||V3|2 sin(θ33)
  • 40. Since, n = 3 and m = 1, the mismatch equations are   ∆P2 ∆P3 ∆Q3   3×1 =        ∂P2 ∂δ2 ∂P2 ∂δ3 ∂P2 ∂|V3| ∂P3 ∂δ2 ∂P3 ∂δ3 ∂P3 ∂|V3| ∂Q3 ∂δ2 ∂Q3 ∂δ3 ∂Q3 ∂|V3|        3×3   ∆δ2 ∆δ3 ∆|V3|   3×1 1. Form Ybus matrix. Ybus =   19.98 −90◦ 10 90◦ 10 90◦ 10 90◦ 19.98 −90◦ 10 90◦ 10 90◦ 10 90◦ 19.98 −90◦   2. Assume δ2 = δ3 = 0. and |V3| = 1. 3. Set k = 0.
  • 41. 4. Find the mismatch vector.   ∆P2 ∆P3 ∆Q3   0 =   P2,sch − P2(δ0 2, δ0 3, |V3|0) P3,sch − P3(δ0 2, δ0 3, |V3|0) Q3,sch − Q3(δ0 2, δ0 3, |V3|0)   =   0.6661 − 0 −2.8653 − 0 −1.2244 − (−0.52)     ∆P2 ∆P3 ∆Q3   0 =   0.6661 −2.8653 −0.7044   J0 =   21 −10.5 0 −10.5 20.5 0 0 0 19.46  
  • 42. 5. Solve for the correction vector.   ∆δ2 ∆δ3 ∆|V3|   0 = [J0 ]−1   ∆P2 ∆P3 ∆Q3   0   ∆δ2 ∆δ3 ∆|V3|   0 =   −0.0513 rad −0.1660 rad −0.0362   6. Find the new estimate.   δ2 δ3 |V3|   1 =   δ2 δ3 |V3|   0 +   ∆δ2 ∆δ3 ∆|V3|   0   δ2 δ3 |V3|   1 =   0 0 1   +   −0.0513 −0.1660 −0.0362   =   −0.0513 rad −0.1660 rad 0.9638  
  • 43. 7. k=k+1 and go back to step 4. 8. It took 5 iterations to converge.   δ2 δ3 |V3|   =   −0.0524 rad −0.1745 rad 0.9500   9. Slack bus power: Pg = 2.1992; Qg = 0.1387 10. Losses : PL = 0; QL = 0.5560
  • 44. Decoupled Load Flow By N-R method, the mismatch equations are ∆P ∆Q = J1 J2 J3 J4 ∆δ ∆|V| In a well designed power system, X R ratio is high. 1. Real power (P) in transmission lines is primarily dependent on voltage angle (δ). 2. Reactive power (P) in transmission lines is primarily dependent on voltage magnitude (|V |). ∆P ∆Q = J1 0 0 J4 ∆δ ∆|V| Therefore, ∆P = J1∆δ ∆Q = J4∆|V|
  • 45. Fast Decoupled Load Flow (FDLF) Let us introduce further simplifications. In a well designed and properly operated system, 1. The angular differences between buses are small. cos(δi − δj ) ≈ 1; sin(δi − δj ) ≈ (δi − δj ) 2. The line susceptancs Bij are many times larger than the line conductances Gij . Gij sin(δi − δj ) Bij cos(δi − δj ) 3. The net reactive power Qi injected into bus i during normal operation is much less than the reactive power which would flow if all the lines were from the bus were short circuited. Qi |Vi |2 Bii
  • 46. From J1: Off-Diagonal Elements: ∂Pi ∂δn = −|Yin||Vi ||Vn| sin(θin + δn − δi ) i 6= n = −|Vi |Vn|Bin = −|Vi |Bin (Assuming |Vn| ≈ 1) Diagonal Elements ∂Pi ∂δi = N X n=1 n6=i |Yin||Vi ||Vn| sin(θin + δn − δi ) = N X n=1 |Yin||Vi ||Vn| sin(θin + δn − δi ) − |Vi |2 |Yii | sin(θii ) = −Qi − |Vi |2 Bii = −|Vi |2 Bii (Since Qi |Vi |2 Bii ) = −|Vi |Bii (Assuming |Vi |2 ≈ |Vi |)
  • 47. From J4: Off-Diagonal Elements: ∂Qi ∂|Vn| = −|Yin||Vi | sin(θin + δn − δi ) i 6= n = −|Vi |Bin Diagonal Elements: ∂Qi ∂|Vi | = −2|Vi ||Yii | sin(θii ) − N X n=1 n6=i |Yin||Vn| sin(θin + δn − δi ) = −|Vi ||Yii | sin(θii ) − N X n=1 |Yin||Vn| sin(θin + δn − δi ) = −|Vi |Bii + Qi = −|Vi |Bii (Since Qi |Vi |2 Bii )
  • 48. Therefore, ∆P |V | = −B0 ∆δ ∆Q |V | = −B00 ∆|V| 1. B0 and B00 are the imaginary part of the bus admittance matrix (YBus). 2. The size of B0 is (n − 1) × (n − 1) and the size of B00 is (n − m − 1) × (n − m − 1). 3. Since they are constant, they need to be triangulaized (inverted) once. ∆δ = −[B0 ]−1 ∆P |V | ∆|V| = −[B00 ]−1 ∆Q |V |
  • 49. 1. N-R method is accurate and takes less iterations but requires a lot of calculations per iteration (more time). 2. FDLF takes more iterations but less calculations per iteration (less time). 3. FDLF solves load flow very rapidly. 4. FDLF is used where accuracy is not important.
  • 50. Line Flows, Losses and Slack Bus Power: Once the bus voltages are found numerically, the next step is to find line flows and losses. Iij Il yij Iji Vi Vj Ii0 yi0 Ij0 yj0 Iij = Il + Ii0 = yij (Vi − Vj ) + yi0Vi Iji = −Iij = yij (Vj − Vi ) + yj0Vj
  • 51. The complex power Sij and Sji are Sij = Vi I∗ ij Sji = Vj I∗ ji The power loss in the line i − j is SL,ij = Sij + Sji The slack bus power can be computed as follows: P1 − Q1 = V ∗ 1 N X n=1 Y1nVn The Slack bus does the following. PG1 = −( X i∀Gen i6=Slack PGi − X i∀load Pdi − PL) QG1 = −( X i∀Gen i6=Slack QGi − X i∀load Qdi − QL)
  • 52. Example : For the system shown in the figure, SD1 and SD2 are complex power demands at bus 1 and bus 2 respectively. If |V2| = 1 p.u., compute the rating of capacitor (QG2) connected at bus 2 in p.u. V1 = 1∠0◦ 1 X = 0.5 p.u. 2 SD1 = (1 + 0) p.u. SD2 = (1 + 0) p.u. QG2 1. Form Ybus matrix. Ybus =    1 0.5 − 1 0.5 − 1 0.5 1 0.5    = 2 −90◦ 2 90◦ 2 90◦ 2 −90◦
  • 53. 2. Since 2 O is a voltage controlled (PV ) bus, P2,sch = PG2 − PD2 = 0 − 1 = −1 The net real power injected into the network at 2 O. P2 = Y21||V2||V1| cos(θ21 + δ1 − δ2) + Y22||V2|2 cos(θ22) δ2 can be found directly instead of N-R method for this equation. At 2 O, P2,sch = P2 On substitution, 2 cos(90◦ − δ2) = −1 2 sin δ2 = −1 δ2 = −30◦
  • 54. 3. QG2 is found as follows: Q2,sch = QG2 − QD2 = QG2 The net reactive power injected into the network at 2 O. Q2 = −Y21||V2||V1| sin(θ21 + δ1 − δ2) − Y22||V2|2 sin(θ22) On substitution, Q2 = −2 sin(120◦ ) + 2 = 0.2679 At 2 O, Q2,sch = Q2 Therefore, QG2 = 0.2679 p.u.