Power Sytems Load Flow Analysis

ABSTRACT

Don't use plagiarized sources. Get Your Custom Essay on
Power Sytems Load Flow Analysis
Just from $13/Page
Order Essay

Study of power flow is the investigation of a scheme that is subjected to imbalance demands under steady state operation in which the system operates. Power flow examination is the basis for analysing and planning energy systems. For planning, operation, future extension and power exchange between utilities, they are vital. The power flow test information is to discover voltage magnitude and phase angle and real and reactive power flow in the transmission line.

Get Help With Your Essay
If you need assistance with writing your essay, our professional essay writing service is here to help!
Essay Writing Service

Iterative methods are used in this inquiry because systematic approach is known to address the issues of power flow. Power flow testing takes time to execute by hand. For this project, the NEWTON RAPHSON method is used. The objective of this project is to construct a power flow program based on the Newton Raphson method that will make it easier to investigate the power flow issues. MATLAB software was used for programming.

Library Session- Research, Referencing and Report writing:-

In previous semester we had done library session and learn how to research , referencing and how to write report.

Matlab:-

MATLAB is an interactive system and programming language for general scientific and technical computation. In previous semester we are studying basic about the MATLAB coding. And also learn where to type commands, how to execute commands, how to see output, etc.

m-File: Script  File

m-File or script file is a simple text where you can place MATLAB commands. All m-file names must end with the extension ‘.m’. If you create a new m-file with the same name as an existing m-file, MATLAB will choose the one which appears first in the path order.

m-File: Functions File

Functions are program routines, usually implemented in M-files, that accept input arguments and return output arguments. They operate on variables within their own workspace. This workspace is separate from the workspace you access at the MATLAB command prompt. Every M-File functions have memory, different from the the MATLAB base workspace, in which it operates.

Example:- 

MATLAB PLOTS AND INPUT/OUTPUT

A = [1 2 3 4 6 4 3 4 5]

A = 1×9

     1     2     3     4     6     4     3     4     5

B= A+ 2

B = 1×9

     3     4     5     6     8     6     5     6     7

plot(B)

grid on

Electrical  measurement Lab:

In previous semester we learn how to measure electrical quantities, learn properties of electrical meters, power supplies and learn use of oscilloscope.

Standard resistor values and colour

With the help of standard resistors and colour code we can find the values of resistor 4-band and 5-band code.

Also solve the circuit with the help of voltage divider and current divider rule and also find the current and voltage through each components.

 

Oscilloscope:

Oscilloscope is a device which used to display and analyse the waveform of electronic signals. In previous semester we use oscilloscope for the generate signal of voltage. On the y-axis voltage and y-axis for seconds.

Example:

Voltage signal

CV Writing / Job Search / Interviews

 

In this session we learn how to make effective  CV(resume) and also after making you can check CV from student support Team and you can search jobs from career and employment solution and also teach  how to crack interviews.

Introduction of load  flow study:-

Load Flow study is the analysis of power system in normal steady state condition. Load Flow Study is determination of

Voltage

Current

Active power

Reactive power

Advantage of Load Flow Study:

The magnitude of the bus voltage stays near the rated value.

Generation works within defined boundaries of actual and reactive power.

Transmission line and transformer are not overloaded.

Bus Classification:

Load flow can be solved by two techniques:

Gauss-Seidel Method

Newton-Raphson Method

Among this method I used Newton-Raphson method because this strategy is famous because of its intermingling with a less cycles.

 

1). Gauss-Seidel Method-

     Gauss-Seidel  method  is an iterative method used to solve a linear system of equations and is similar to the Jacobi Method. It can be applied to any matrix with non-zero elements on the diagonals, convergence is only guaranteed if the matrix is either diagonally dominant, or symmetric and positive definite.

 

2). Newton-Raphson Method-

The newton-Raphson method of solution enables us to replace the non-linear of intensity conditions with a direct set, streamlining the arrangement. We review the iterative arrangement of non-linear synchronous conditions by the Newton-Raphson strategy, and that after that apply the method to power flow.

Progress on Load Flow Study

In this semester we are studied about the Nodal analysis and power relation which is required for the load flow study.

Nodal Analysis of System

1

2

3
Y23
Y12
Y13
Y10
Y130
Y20

Using the KCL equations are
I1=y10v1+y12v1–v2+y13v1–v2
I2=y20v2+y12v2–v1+y13v2–v3
I3=y30v3+y13v3–v1+y23v3–v2

So that we have,
I1=(y10
+
 y12+y13
)
 v1
+ (
–y12
)
 v2
+ (
–y13
)
 v3
I2=(y20
+
 y12+y23
)
 v2
+ (
–y12
)
 v1
+ (
–y23
)
 v3
I3=(y30
+
 y13+y23
)
 v3
+ (
–y13
)
 v1
+ (
–y23
)
 v2

So that we can write like
Y11=y10
+
 y12+y13
Y22=y20
+
 y12+y23
Y33=y30
+
 y13+y23

And
Y12=–y12
Y13=
–y13
Y23=–y23

From this equation convert this into matrix form
I1I2I3
=
Y11Y12Y13Y12Y22Y23Y13Y23Y33
*
v1v2v3

Simply we can write
IBUS=YBUSVBUS

POWER RELATION

With the help of power relation we will get the real power and imaginary power equation and this will we can use in the power flow study.

We have 
IBUS=YBUSVBUS

We can redefine and write as
IBUS=A+jC
,  A= real part and C= imaginary part
YBUS=D+jF
, D= real part and F= imaginary part
VBUS=G–jB
, G= real part and B= imaginary part

For the N number of element we can write
Ii=Ai+jCi
,                         i= 1,2,3,……,N
Yii=Gii–jBii
,                    i= 1,2,3,……,N
Vi=Di+jFi
,                        i= 1,2,3,……,N

LET the Bus power be
Si=Pi–jQi=Vi*Ii

And we know the equation
Si=∑k=1NVi*VikVk

Substitute the equation
Si=∑k=1N(Di–jFi)(Gik–jBik)( Di+jFi)

For the real part we can write the real power
Pi=∑k=1NDiGikDk+DiBikFk–FiBikDk+FiGikFk

and
Qi=∑k=1NDiBikDk–DiGikFk+FiGikDk+FiBikFk

Write the equation for
Ii
and
Vi

So       
Ii=
Pi–jQiVi*

YiiVi+ ∑k=1NYikVk          K≠i

         
Vi= 1YiiPi–jQiVi*–∑k=1NYikVk
             
K≠i

TIME PLAN AND BUDGET

Conclusion:

 

The objective of this project to learn about load flow by using Gauss-Seidel or Newton-Raphson Method and learn MATLAB programming and simulation for load flow analysis using MATLAB.

In Previous Semester we studied about basic coding of MATLAB, Electrical measurement and how to make cv and technique to crack  interviews.

REFERENCES

 

What Will You Get?

We provide professional writing services to help you score straight A’s by submitting custom written assignments that mirror your guidelines.

Premium Quality

Get result-oriented writing and never worry about grades anymore. We follow the highest quality standards to make sure that you get perfect assignments.

Experienced Writers

Our writers have experience in dealing with papers of every educational level. You can surely rely on the expertise of our qualified professionals.

On-Time Delivery

Your deadline is our threshold for success and we take it very seriously. We make sure you receive your papers before your predefined time.

24/7 Customer Support

Someone from our customer support team is always here to respond to your questions. So, hit us up if you have got any ambiguity or concern.

Complete Confidentiality

Sit back and relax while we help you out with writing your papers. We have an ultimate policy for keeping your personal and order-related details a secret.

Authentic Sources

We assure you that your document will be thoroughly checked for plagiarism and grammatical errors as we use highly authentic and licit sources.

Moneyback Guarantee

Still reluctant about placing an order? Our 100% Moneyback Guarantee backs you up on rare occasions where you aren’t satisfied with the writing.

Order Tracking

You don’t have to wait for an update for hours; you can track the progress of your order any time you want. We share the status after each step.

image

Areas of Expertise

Although you can leverage our expertise for any writing task, we have a knack for creating flawless papers for the following document types.

Areas of Expertise

Although you can leverage our expertise for any writing task, we have a knack for creating flawless papers for the following document types.

image

Trusted Partner of 9650+ Students for Writing

From brainstorming your paper's outline to perfecting its grammar, we perform every step carefully to make your paper worthy of A grade.

Preferred Writer

Hire your preferred writer anytime. Simply specify if you want your preferred expert to write your paper and we’ll make that happen.

Grammar Check Report

Get an elaborate and authentic grammar check report with your work to have the grammar goodness sealed in your document.

One Page Summary

You can purchase this feature if you want our writers to sum up your paper in the form of a concise and well-articulated summary.

Plagiarism Report

You don’t have to worry about plagiarism anymore. Get a plagiarism report to certify the uniqueness of your work.

Free Features $66FREE

  • Most Qualified Writer $10FREE
  • Plagiarism Scan Report $10FREE
  • Unlimited Revisions $08FREE
  • Paper Formatting $05FREE
  • Cover Page $05FREE
  • Referencing & Bibliography $10FREE
  • Dedicated User Area $08FREE
  • 24/7 Order Tracking $05FREE
  • Periodic Email Alerts $05FREE
image

Our Services

Join us for the best experience while seeking writing assistance in your college life. A good grade is all you need to boost up your academic excellence and we are all about it.

  • On-time Delivery
  • 24/7 Order Tracking
  • Access to Authentic Sources
Academic Writing

We create perfect papers according to the guidelines.

Professional Editing

We seamlessly edit out errors from your papers.

Thorough Proofreading

We thoroughly read your final draft to identify errors.

image

Delegate Your Challenging Writing Tasks to Experienced Professionals

Work with ultimate peace of mind because we ensure that your academic work is our responsibility and your grades are a top concern for us!

Check Out Our Sample Work

Dedication. Quality. Commitment. Punctuality

Categories
All samples
Essay (any type)
Essay (any type)
The Value of a Nursing Degree
Undergrad. (yrs 3-4)
Nursing
2
View this sample

It May Not Be Much, but It’s Honest Work!

Here is what we have achieved so far. These numbers are evidence that we go the extra mile to make your college journey successful.

0+

Happy Clients

0+

Words Written This Week

0+

Ongoing Orders

0%

Customer Satisfaction Rate
image

Process as Fine as Brewed Coffee

We have the most intuitive and minimalistic process so that you can easily place an order. Just follow a few steps to unlock success.

See How We Helped 9000+ Students Achieve Success

image

We Analyze Your Problem and Offer Customized Writing

We understand your guidelines first before delivering any writing service. You can discuss your writing needs and we will have them evaluated by our dedicated team.

  • Clear elicitation of your requirements.
  • Customized writing as per your needs.

We Mirror Your Guidelines to Deliver Quality Services

We write your papers in a standardized way. We complete your work in such a way that it turns out to be a perfect description of your guidelines.

  • Proactive analysis of your writing.
  • Active communication to understand requirements.
image
image

We Handle Your Writing Tasks to Ensure Excellent Grades

We promise you excellent grades and academic excellence that you always longed for. Our writers stay in touch with you via email.

  • Thorough research and analysis for every order.
  • Deliverance of reliable writing service to improve your grades.
Place an Order Start Chat Now
image

Order your essay today and save 30% with the discount code Happy