Power Flow Analysis - Part2
Power Flow Analysis - Part2
Newton-Raphson Method
Newton-Raphson Algorithm
Slide # 2
Newton-Raphson Method (scalar)
Slide # 3
Newton-Raphson Method, cont’d
x ( v 1)
x (v ) 1 (v ) 2
(v ) (( x ) - 2)
2x
Slide # 5
Newton-Raphson Example, cont’d
x ( v 1)
x (v ) 1 (v) 2
( v ) (( x ) - 2)
2x
Guess x (0) 1. Iteratively solving we get
v x(v ) f ( x(v) ) x ( v )
0 1 1 0.5
1 1.5 0.25 0.08333
2 1.41667 6.953 103 2.454 103
6
3 1.41422 6.024 10
Slide # 6
Sequential Linear Approximations
At each
iteration the
N-R method
uses a linear
approximation
to determine
Function is f(x) = x2 - 2 = 0. the next value
Solutions are points where for x
f(x) intersects f(x) = 0 axis
Slide # 7
Newton-Raphson Comments
Slide # 8
Multi-Variable Newton-Raphson
Slide # 9
Multi-Variable Case, cont’d
f (x) f 2 (x)
f 2 (x)
f 2 (x)
x
f (xˆ ) 2 x1 x2 xn 2
f ( x)
n f (x) f n (x) n
x
f n (x)
n
x1 x2 xn
higher order terms
Slide # 11
Jacobian Matrix
Slide # 13
Multi-Variable Example
x1
Solve for x = such that f (x) 0 where
x2
f1 (x) 2 x1 x2 8 0
2 2
4 x1 2 x2
J (x) =
2 x1 x2 x1 2 x2
Then
1
x1 4 x1 2 x2 f1 (x)
x 2 x x x1 2 x2 f 2 (x)
2 1 2
1
Arbitrarily guess x(0)
1
1
1 4 2 5 2.1
x (1)
1 3 1 3 1.3 Slide # 15
Multi-variable Example, cont’d
1
2.1 8.40 2.60 2.51 1.8284
x (2)
1.3 5.50 0.50 1.45 1.2122
Each iteration we check f (x) to see if it is below our
specified tolerance
0.1556
f (x )
(2)
0.0900
If = 0.2 then we would be done. Otherwise we'd
continue iterating.
Slide # 16
NR Application to Power Flow
Slide # 17
Real Power Balance Equations
n n
Si Pi jQi Vi Yik*Vk* Vi Vk e jik (Gik jBik )
k 1 k 1
n
Vi Vk (cos ik j sin ik )(Gik jBik )
k 1
Resolving into the real and imaginary parts
n
Pi Vi Vk (Gik cos ik Bik sin ik ) PGi PDi
k 1
n
Qi Vi Vk (Gik sin ik Bik cos ik ) QGi QDi
k 1
Slide # 18
Newton-Raphson Power Flow
Slide # 19
Power Flow Variables
Assume the slack bus is the first bus (with a fixed
voltage angle/magnitude). We then need to determine
the voltage angle/magnitude at the other buses.
2 P2 (x) PG 2 PD 2
n ΔP(x) Pn (x) PGn PDn
X , f(x)
V2 ΔQ(x) Q2 (x) QG 2 QD 2
Vn Qn (x) QGn QDn
Slide # 20
N-R Power Flow Solution
Slide # 21
Power Flow Jacobian Matrix
Slide # 22
Power Flow Jacobian Matrix, cont’d
fi ( x) n
i
Vi Vk (Gik sin ik Bik cos ik )
k 1
k i
fi ( x)
Vi V j (Gik sin ik Bik cos ik ) ( j i )
j
Slide # 23
Line Flows and Losses
Slide # 24
Line Flows and Losses
Slide # 25
Two Bus Newton-Raphson Example
For the two bus power system shown below, use the
Newton-Raphson power flow to determine the
voltage magnitude and angle at bus two. Assume
that bus one is the slack and SBase = 100 MVA.
V1 10 0 V2 V2 2
S 2 200 j100
Slide # 27
Two Bus Example, cont’d
0
Set v 0, guess x (0)
1
Calculate
V2 (10sin 2 ) 2.0 2.0
f(x )
(0)
1.0
V2 (10 cos 2 ) V2 (10) 1.0
2
10 V2 cos 2 10sin 2 10 0
J (x )
(0)
0 10
10 V2 sin 2 10 cos 2 20 V2
1
0 10 0 2.0 0.2
Solve x (1)
1.0
1 0 10 0.9
Slide # 29
Two Bus Example, Next Iterations
Sloss12 S12 S21 0 j 68.3
S 2 200 j100
Slide # 31
PV Buses
Slide # 32
Three Bus PV Case Example
0.941 pu
One 1.000 pu Two -7.469 Deg
170.0 MW 200 MW
68.2 MVR 100 MVR
Line Z = 0.1j Line Z = 0.1j
Three 1.000 pu
30 MW
63 MVR
Slide # 33
Solving Large Power Systems
Slide # 34
Newton-Raphson Power Flow
• Advantages
– fast convergence as long as initial guess is close to
solution
– large region of convergence
• Disadvantages
– each iteration takes much longer than a Gauss-Seidel
iteration
– more complicated to code, particularly when
implementing sparse matrix algorithms
• Newton-Raphson algorithm is very common in power flow
analysis
Slide # 35