Disclaimer: This is an example of a student written essay.
Click here for sample essays written by our professional writers.

Any opinions, findings, conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of UKEssays.com.

Power Flow Studies Using MATLAB

Paper Type: Free Essay Subject: Mathematics
Wordcount: 9545 words Published: 23rd Sep 2019

Reference this

Power Flow Studies Using MATLAB

Executive Summary

The report aims to show the differences between Newton-Raphson and Gauss-Seidel methods by using them to analyse a power flow system. During the study in a two-bus system, with a slack bus and PQ bus, two convergence tolerances were used. The case study 1 compares the iterative process of the two methods for a voltage tolerance convergence and case study 2 compares the iterative process of the two methods for a power mismatch convergence. The main points that investigated are the results and the speed of convergence. Although, both methods converge to the same values, Newton-Raphson converges exponentially and compared to Gauss-Seidel which converges linearly, needs only around half iterations to return the expected result.

Table of Contents

Executive Summary

Introduction

Background Theory

Newton-Raphson Method

Gauss-Seidel Method

Power Flow Study Results and Analysis

Case Study 1

Case Study 2

Analysis of the results and convergence characteristics acquired by the Newton-Raphson and Gauss-Seidel methods

Conclusions

References

Introduction

A load or power flow analysis is a computational procedure required to determine the sinusoidal steady state of the entire power system. The mathematical solution includes a system of nonlinear algebraic equations, which during an iterative process, the values converge to only one solution. The outcome of the power flow analysis is the acquisition of the voltage magnitudes and angles at each bus. Once the voltage magnitudes and angles at each bus have been acquired using power flow analysis, the real and reactive power at each branch of the power system can be computed. Furthermore, losses in particular lines can be computed by investigating the difference between the power flow in the sending and receiving ends and by determining over and under load conditions, the appropriate solution is taken into consideration. In the power industry, load flow analysis is used on a daily basis as it is essential in determining the fault-free, stable and economical operation of existing power systems, as well as for future expansion of power systems.

A two-bus system is given in Figure 1 below.

Figure 1: Two-bus System

The power system consists of a slack bus, which is illustrated as bus 1 and a load bus, which is illustrated as bus 2.  

Bus 1 is a slack bus (or swing, or reference) and its main role is to be the phase angle reference of the system. It also balances the active power |P| and reactive power |Q| in a system by injection in circumstances when is required. It is a reference bus for which the voltage magnitude and angle are input data (V1δ1)

and the active power |P| and reactive power |Q| are the unknown quantities need to be calculated by the power flow analysis. Usually the V1δ1

is 1.00°

, however in this assignment should be considered as 1.060°

.

Bus 2 is a load (P-Q) bus which absorbs power from the system. The active power |P| and reactive power |Q| are quantified and voltage magnitude |V| and angle |δ| need to be computed.

Background Theory

Newton-Raphson Method

The Newton-Raphson method is a powerful method for maximising an objective function by using quadratic convergence of approximations [1].

A number of nonlinear algebraic equations is given in matrix format

fx=f1xf2x=y                  (1.1)

where x and y are N vectors and fx

is an N vector of functions. The aim is to solve for x, accounting that fx

and y are given. By rewriting eq. 1.1

yfx=0                        (1.2)

Then, by adding Dx to both of the eq. 1.2

yfx+Dx=Dx           (1.3)

, where D is a square NxN invertible matrix. Then, multiplying by D1

in both parts

x+D1yfx=x             (1.4)

The values of x on the left side are used to calculate the next values of x on the right side, so that

xi+1=xi+D1yfxi          (1.5)

For non-linear equations, it is necessary that matrix D must be specified. One of the methods of specifying matrix D called the Newton-Raphson method.

The Newton-Raphson method is based on the Taylor series expansion of   fx

.

y=fx0+dfdx|x=x0xx0          (1.6)

By neglecting the higher order terms in eq 1.6

x=x0+[dfdx|x=x0]1 yfx0             (1.7)

During the Newton Raphson iteration process, x0

is been replaced by the old value x and x by the new value  xi+1.

To continue to the next step, the N×N

Jacobian matrix is used.

Ji=dfdx|x=x(i)=f1x1f1x2f1xNf2x1f2x2f2xNfNx1fNx2fNxN           (1.8)

where the elements inside the Jacobian matrix are partial derivatives. Therefore, by substituting the Jacobian matrix into eq. 1.7.

xi+1=xi+J1(i) yfxi

          (1.9)

Instead of computing the inverse of the Jacobian matrix J1

, it can be rewritten as :

JiΔxi= Δyi                (1.10)

, where       Δxi=xi+1xi         1.11    and     Δyi= yfxi         (1.12)

The Newton-Raphson method converges to the result in each iteration and depending on the convergence tolerance we can select the precision needed. The steps below show the process during each iteration.

Step 1                By using the eq. 1.12, we compute Δyi

Step 2  By using the eq. 1.8, we compute Ji

Step 3 By using Gauss elimination and back substitution, we solve the eq. 1.10 in order to find Δxi

Step 4 Finally we compute xi+1

from eq. 1.11. Compare xi+1 

with xi

to find the convergence tolerance to determine the precision of the result. [2]

Power Mismatch

The equation for complex power expressed as Si

:

Si=Pi+jQi=ViIi*            (1.13)

From equation 1.13, the current injection into any bus I can be expressed as:

Ii=k=1nYikVk               (1.14)

where, Yik

terms are admittance matrix elements. Then, we substitute eq. 1.14 into eq. 1.13:

Si=Vik=1nYikVk*              (1.15)

where, Vk is a phasor, with magnitude and angle Vi=|Vi|θi

. Moreover, the admittance matrix is complex with real and imaginary parts Yik=Gik+jBik

. Then, by rewriting eq. X as

Si=Vik=1nYik*Vk*=|Vi|θik=1n(Gik+jBik)*|Vkθk*            (1.16)   

=|Vi|θik=1n(GikjBik)(|Vkθk              (1.17)

=k=1n|Vi|θi(|Vk|θk)(GikjBik)        (1.18)

=k=1n(|Vi||Vk|θiθk)(GikjBik)        (1.19)

A phasor may be also expressed as a function of sinusoids Vi=Viθi=Vicosθ+jsinθ.

Then by rewriting the eq. 1.19 we get:

Si=k=1nVi|Vkcosθiθk+jsinθiθk(GikjBik            (1.20)

Then by performing the multiplications inside the parenthesis and by splitting the equation into real and imaginary parts, we can find the active ( Pi

) and reactive ( Qi

) power.

Si=Pi+jQi          (1.21)

 

Pi=ReViIi=k=1nVi |Vk|Gikcosθik+Biksinθik      (1.22)

Qi=ImViIi=k=1nVi |Vk|Giksinθik+Bikcosθik         (1.23)

These two equations called the power flow equations and are used as fundamental equations for load flow analysis.

Jacobian matrix for a two-bus power system:

Jacobian Matrix=P2θ2P2|V2|Q2θ2Q2|V2|        (1.24)

 P2θ2=|V1||V2|B21cosθ2θ1           (1.25)     

P2|V2|=|V1|B21sinθ2θ1              (1.26)

Q2|θ2|=V1|V2|B21sinθ2θ1           (1.27)

Q2|V2|=V1B21cosθ2θ1V2B22            (1.28)

 

Gauss-Seidel Method

The Gauss-Seidel method used as an iterative process to solve a square system of linear equations. It uses the form

xi=fix1,x2,x3,xN               (2.1)

To do a power flow analysis into a power system, a set of linear equations I=YbusV

analogous to y=Ax needs to be solved. For every load bus load bus, Ii

can be calculated from

Ii=PijQi Vi*                   (2.2)

The Gauss-Seidel method equation is xin+1=1Aiiykk=1i1Aikxkn+1k=i+1i1Aikxkn               (2.3)

By using eq. 2.3 and applying it to the nodal equations

Vin+1=1YiiPijQiVi*nk=1i1YikVkn+1k=i+1i1YikVkn               (2.4)

Power Flow Study Results and Analysis

Case Study 1

This case study will focus on the comparison of the Newton-Raphson and Gauss-Seidel methods by drawing a relationship log10(maxVik+1Vik)

vs number of iterations using a voltage convergence tolerance of εp=106: maxVik+1Vik<εp

.

 

Figure 2: Newton-Raphson method with voltage convergence tolerance

Figure 3: Gauss-Seidel method with voltage convergence tolerance

log10(maxVik+1Vik)

Iterations(k)

Newton-Raphson Convergence

Gauss-Seidel Convergence

1

-7.96567e-01

-7.82716e-01

2

-1.85971e+00

-1.59734e+00

3

-3.72734e+00

-2.42426e+00

4

-7.45094e+00

-3.24175e+00

5

-4.05939e+00

6

-4.87682e+00

7

-5.69426e+00

8

-6.51169e+00

Table 1: Comparison of Newton-Raphson and Gauss-Seidel solutions with voltage convergence tolerance

Newton-Raphson

Gauss-Seidel

Active Power Injection at Bus 2

8.00000e-01

8.00000e-01

Reactive Power Injection at Bus 2

2.22751e-01

2.22752e-01

Voltage Magnitude at Bus 2

1.02910e+00

1.02910e+00

Voltage Angle at Bus 2 (rad)

-1.47206e-01

-1.472059e-01

Table 2: Comparison of the Active and Reactive Power Injection values and the Voltage magnitude and angle values between the Newton-Raphson and Gauss-Seidel solutions

The two graphs above show the voltage convergence of the voltage at bus 2 using Newton Raphson and Gauss-Seidel method respectively. For the Gauss-Seidel solution, it takes eight iterations till the value of the change between each iteration ( maxVik+1Vik

) is below the voltage convergence tolerance ( εp=106

). From the other side, Newton-Raphson method converges in half iterations, showing the quadratic convergence of the method, in contrast with the Gauss-Seidel method, which converges linearly. The difference between the two methods can be shown in table 1, as the difference between each iteration for the Gauss-Seidel method is the same, comparatively with the Newton-Raphson which the difference doubles in each iteration. Furthermore, at the beginning both methods have the same gradient, but Newton-Raphson’s gradient sharply converges closer to the result. Finally, there is no difference in active and reactive power and voltage magnitude and angle calculated by both methods. This could be due to restriction of decimal places and little changes would exist if we had more decimal places.

Case Study 2

This case study will focus on the comparison of the Newton-Raphson and Gauss-Seidel methods by drawing a relationship log10(max(ΔP2|,|ΔQ2|)

vs number of iterations using a power convergence mismatch of εp=106

.

 

Figure 4: Newton-Raphson method with power mismatch tolerance

Figure 5: Gauss-Seidel method with power mismatch tolerance

LOG10(Max |deltaP -deltaQ|)

Iterations(k)

Newton-Raphson Convergence

Gauss-Seidel Convergence

1

-9.69100e-02

-9.69100e-02

2

-1.14339e+00

-9.06578e-01

3

-3.01934e+00

-1.72616e+00

4

-6.75115e+00

-2.56041e+00

5

-3.36113e+00

6

-4.19571e+00

7

-4.99599e+00

8

-5.83058e+00

9

Table 3: Comparison of Newton-Raphson and Gauss-Seidel solutions with power mismatch tolerance

-6.63085e+00

Newton-Raphson

Gauss-Seidel

Active Power Injection at Bus 2

8.00000e-01

8.00000e-01

Reactive Power Injection at Bus 2

2.22751e-01

2.22752e-01

Voltage Magnitude at Bus 2

1.02910e+00

1.02910e+00

Voltage Angle at Bus 2 (rad)

-1.47206e-01

-1.472059e-01

Table 4: Comparison of the Active and Reactive Power Injection values and the Voltage magnitude and angle values between the Newton-Raphson and Gauss-Seidel solutions

The two graphs above show the power mismatch convergence using Newton Raphson and Gauss-Seidel method respectively. For the Gauss-Seidel solution, it takes nine iterations until the value of the change between each iteration is below the power mismatch tolerance ( εp=106

). From the other side, Newton-Raphson method converges in four iterations, showing the quadratic convergence of the method, in contrast with the Gauss-Seidel method, which converges linearly. The difference between the two methods can be shown in table 3, as the difference between each iteration for the Gauss-Seidel method is the same, comparatively with the Newton-Raphson which doubles in each iteration. Furthermore, at the beginning both methods have the same gradient, but Newton-Raphson’s gradient sharply converges closer to the result. Finally, there is no difference in active and reactive power and voltage magnitude and angle calculated by both methods. This could be due to restriction of decimal places and little changes would exist if we had more decimal places.

Find Out How UKEssays.com Can Help You!

Our academic experts are ready and waiting to assist with any writing project you may have. From simple essay plans, through to full dissertations, you can guarantee we have a service perfectly matched to your needs.

View our services

Analysis of the results and convergence characteristics acquired by the Newton-Raphson and Gauss-Seidel methods

The Newton-Raphson method needs almost half iterations to converge, in contrast with the Gauss-Seidel method. Gauss-Seidel converges closer to the result diagonally, resulting in a linear convergence, which takes more iterations to compute the expected result. However, Newton Raphson method converges exponentially and has an abrupt inclination every iteration, and this explains the quadratic convergence of this method. By comparing the number of iterations of these two methods, it is clear that Newton-Raphson is much more effective. Although the Newton-Raphson method needs fewer iterations, it needs more time per iteration due to the computation of the Jacobian matrix in each iteration. However, both methods accurately converge to the same result with the precision of five decimal places and thus both can be used to provide accurate results in a two-bus power system analysis.

Conclusions

During the study undertaken into a two-bus power system, valuable information was acquired for the Newton-Raphson and Gauss-Seidel methods. The report demonstrateS the advantages and disadvantages of each method, as well as, analyse the results and convergence characteristics of these two methods acquired by solving a two-bus power system. To summarise, Newton-Raphson method is more efficient especially if used in large power system with advanced complexity, due to its performance. From the other side, Gauss-Seidel needs a large number of iterations compared TO Newton-Raphson and so on the use in large power systems is avoided. Moreover, this report enhances the use of MATLAB for calculating system data, as the manual computation of power flow analysis is prone to human errors. Finally, an advanced level of understanding was achieved in Power Systems and further interest has been developed.

References

[1] https://cs.nyu.edu/overton/NumericalComputing/newton.pdf [accessed 25 January 2019]

[2] Glover, J., Overbye, T. and Sarma, M. (n.d.). Power system analysis & design. pp.321-323.

[3] Prof Zhang, Xiao-Ping, LH Power Electronics and Power Systems Lecture 7 – Power flow analysis (I). [Online] [Accessed 18 January 2015].

[4] Prof Zhang, Xiao-Ping, LH Power Electronics and Power Systems Lecture 8 – Power flow analysis    (II). [Online] [Accessed 18 January 2015].

[3] http://portal.unimap.edu.my/portal/page/portal30/Lecture%20Notes/KEJURUTERAAN_SISTEM_ELEKTRIK/Semester%202%20Sidang%20Akademik%2020162017/EET%20308%20-%20Power%20System%20Analysis/Tutorial/Tutorial%20Power%20System%20Analysis%20-%20Power%20Flow%20Analysis-Solution.pdf [accessed 25 January 2019]

 

Cite This Work

To export a reference to this article please select a referencing stye below:

Reference Copied to Clipboard.
Reference Copied to Clipboard.
Reference Copied to Clipboard.
Reference Copied to Clipboard.
Reference Copied to Clipboard.
Reference Copied to Clipboard.
Reference Copied to Clipboard.

Related Services

View all

DMCA / Removal Request

If you are the original writer of this essay and no longer wish to have your work published on UKEssays.com then please: