SlideShare ist ein Scribd-Unternehmen logo
1 von 21
Downloaden Sie, um offline zu lesen
Gauss-Seidal (G-S) Method of Power Flow
Younus
B. Tech (EEE)
Amity University
Table of Contents
Gauss Seidal Method
Application of G-S Method in Power Flow
Example
Advantages and Disadvantages
Table of Contents
Gauss Seidal Method
Application of G-S Method in Power Flow
Example
Advantages and Disadvantages
Introduction
G-S Method is a numerical method to solve system equations by
method of successive iteration.
Let us consider a system of equations:


a11 a12 a13
a21 a22 a23
a31 a32 a33

 ·


x
y
z

 =


b1
b2
b3


The above equations can be rewritten as
x =
1
a11
(b1 − a12y − a13z) (1)
y =
1
a22
(b2 − a23z − a21x) (2)
z =
1
a33
(b3 − a31x − a32y) (3)
Now we take the 1st approximation as:
x(1)
= y(1)
= z(1)
= 0 (4)
The 2nd approximation is defined by:
x(2)
=
1
a11
(b1 − a12y(1)
− a13z(1)
) (5)
y(2)
=
1
a22
(b2 − a23z(1)
− a21x(2)
) (6)
z(2)
=
1
a33
(b3 − a31x(2)
− a32y(2)
) (7)
Similarly the 3rd approximation is:
x(3)
=
1
a11
(b1 − a12y(2)
− a13z(2)
) (8)
y(3)
=
1
a22
(b2 − a23z(2)
− a21x(3)
) (9)
z(3)
=
1
a33
(b3 − a31x(3)
− a32y(3)
) (10)
We continue to iterate until the fist few significant digits become
constant and thus we get our numerical solution.
Table of Contents
Gauss Seidal Method
Application of G-S Method in Power Flow
Example
Advantages and Disadvantages
Numerical Solution of Power Flow
The power flow equation is written as
S∗
i = Pi − jQi = V ∗
i
N
k=1
YikVk (11)
This equation can also be expressed as
Pi − jQi = V ∗
i YiiVi + V ∗
i
N
k=1,k=i
YikVk for i = 2, 3, ..., N
(12)
Vi =
1
Yii
Pi − jQi
V ∗
i
−
N
k=1,k=i
YikVk for i = 2, 3, ..., N (13)
In G-S algorithm eqn. (13) is utilised to find the final bus voltage
using successive steps of iteration, where
V
p+1
i =
1
Yii
Pi − jQi
(V
p
i )∗
−
N
k=1,k=i
YikV
p
k for i = 2, 3, ..., N
(14)
V
p+1
i =
1
Yii
Pi − jQi
(V
p
i )∗
−
i−1
k=1
YikV
p+1
k −
N
k=i+1
YikV
p
k for i = 2, 3, ..., N
(15)
V
p+1
i =
Ai
(V
p
i )∗
−
i−1
k=1
BikV
p+1
k −
N
k=i+1
BikV
p
k for i = 2, 3, ..., N
(16)
where, i is the number of bus
and p is the number of iterations
Ai =
Pi − jQi
Yii
Bik =
Yik
Yii
Flow Chart
Start
READ
Slack bus voltage (|V1|, δ1)
Real bus powers for PQ & PV buses
Reactive bus powers for PQ buses
Voltage magnitudes for PV buses
Voltage magnitude limits for PQ buses
Reactive power limits for PV buses
Form YBUS
Make initial assumptions
V 0
i for i = m + 1, ..., n
δi0 for i = 2, ..., m
A
A
Compute the parameters
Ai for i = m + 1, ..., n &
Bik for i, k = 1, ..., n (except k = i)
Set iteration count p = 0
Set bus count i = 2 & ∆Vmax = 0
Test for Bus TypeB
C
E
F
PQ Bus
PV Bus
C
Compute Q
(p+1)
i
Is Qi(min) < Q
(p+1)
i < Qi(max) ?
If Q
(p+1)<Qi(min)
i assign Q
(p+1)=Qi(min)
i
If Q
(p+1)>Qi(max)
i assign If Q
(p+1)=Qi(max)
i
Compute A
p+1
i
Compute Ai
Compute V
p+1
i
Compute δ
p+1
i & V
p+1
i
D
no
yes
D
Replace V
p
i by V
p+1
i
advance Bus count i = i + 1
Is i ≤ n
Is Vmax ≤ ε
Advance iteration
count p = p + 1
Compute Slack Bus Power P1 + jQ1
E
F
yes
no
yes
no
Table of Contents
Gauss Seidal Method
Application of G-S Method in Power Flow
Example
Advantages and Disadvantages
Example of three bus system
Let us suppose Slack Bus, Load Bus and Generator Bus for
i = 1, 2, 3 respectively, Then


Y11 Y12 Y13
Y21 Y22 Y23
Y31 Y32 Y33

 ·


V1
V2
V3

 =


I1
I2
I3


V
(p+1)
1 =
1
Y11
(I1 − Y12V
(p)
2 − Y13V
(p)
3 )
V
(p+1)
2 =
1
Y22
(I2 − Y23V
(p)
3 − Y21V
(p+1)
1 )
V
(p+1)
3 =
1
Y33
(I3 − Y31V
(p+1)
1 − Y32V
(p+1)
2 )
V1 = 1 + j0
V
(p+1)
2 = 1
Y22
P2−jQ2
(V
p
2 )∗ − Y23V
(p)
3 − Y21V
(p+1)
1
Q
(p+1)
3 = − N
k=1 YikViVk = −(Y31V3V1 +Y32V3V
p+1
2 +Y33V3V3)
V
(p+1)
3 = 1
Y33
P3−jQ3
(V
p
3 )∗ − Y31V
(p+1)
1 − Y32V
(p+1)
2
Table of Contents
Gauss Seidal Method
Application of G-S Method in Power Flow
Example
Advantages and Disadvantages
Advantages and Disadvantages
Simplicity in technique
Small computer memory
requirement
Less computational time per
iteration
Slow rate of convergence
resulting in larger number of
iterations
Increase in the number of
iterations with increase in
the number of buses
Thank You

Weitere ähnliche Inhalte

Was ist angesagt?

Power flow solution
Power flow solutionPower flow solution
Power flow solutionBalaram Das
 
Economic load dispatch
Economic load  dispatchEconomic load  dispatch
Economic load dispatchDeepak John
 
The admittance model and network calculation
The admittance model and network calculationThe admittance model and network calculation
The admittance model and network calculationBalaram Das
 
Load flow study
Load flow studyLoad flow study
Load flow studyf s
 
Power system voltage stability
Power system voltage stabilityPower system voltage stability
Power system voltage stabilityAkash Choudhary
 
Unit 1 Power System Stability
Unit 1 Power System Stability Unit 1 Power System Stability
Unit 1 Power System Stability SANTOSH GADEKAR
 
Fundamentals of power system
Fundamentals of power systemFundamentals of power system
Fundamentals of power systemBalaram Das
 
power flow and optimal power flow
power flow and optimal power flowpower flow and optimal power flow
power flow and optimal power flowAhmed M. Elkholy
 
Symmetrical components
Symmetrical componentsSymmetrical components
Symmetrical componentsSirat Mahmood
 
Per unit systems in power systems
Per unit systems in power systemsPer unit systems in power systems
Per unit systems in power systemsanoopeluvathingal
 
Principles of Power Systems V.K Mehta Complete Book - Chapter 6
Principles of Power Systems V.K Mehta Complete Book - Chapter 6Principles of Power Systems V.K Mehta Complete Book - Chapter 6
Principles of Power Systems V.K Mehta Complete Book - Chapter 6Power System Operation
 

Was ist angesagt? (20)

Power flow solution
Power flow solutionPower flow solution
Power flow solution
 
Economic load dispatch
Economic load  dispatchEconomic load  dispatch
Economic load dispatch
 
gauss seidel method
gauss seidel methodgauss seidel method
gauss seidel method
 
Lecture 10
Lecture 10Lecture 10
Lecture 10
 
Load flow studies
Load flow studiesLoad flow studies
Load flow studies
 
Load flow study
Load flow studyLoad flow study
Load flow study
 
The admittance model and network calculation
The admittance model and network calculationThe admittance model and network calculation
The admittance model and network calculation
 
Load flow study
Load flow studyLoad flow study
Load flow study
 
Power system voltage stability
Power system voltage stabilityPower system voltage stability
Power system voltage stability
 
Unit 1 Power System Stability
Unit 1 Power System Stability Unit 1 Power System Stability
Unit 1 Power System Stability
 
Unit-1 Per Unit System.pptx
Unit-1  Per Unit System.pptxUnit-1  Per Unit System.pptx
Unit-1 Per Unit System.pptx
 
Swing equation
Swing equationSwing equation
Swing equation
 
Per unit system
Per unit systemPer unit system
Per unit system
 
Fundamentals of power system
Fundamentals of power systemFundamentals of power system
Fundamentals of power system
 
power flow and optimal power flow
power flow and optimal power flowpower flow and optimal power flow
power flow and optimal power flow
 
Symmetrical components
Symmetrical componentsSymmetrical components
Symmetrical components
 
Per unit systems in power systems
Per unit systems in power systemsPer unit systems in power systems
Per unit systems in power systems
 
Fault analysis using z bus
Fault analysis using z busFault analysis using z bus
Fault analysis using z bus
 
Principles of Power Systems V.K Mehta Complete Book - Chapter 6
Principles of Power Systems V.K Mehta Complete Book - Chapter 6Principles of Power Systems V.K Mehta Complete Book - Chapter 6
Principles of Power Systems V.K Mehta Complete Book - Chapter 6
 
Load flow study
Load flow studyLoad flow study
Load flow study
 

Ähnlich wie Gauss Seidel Method of Power Flow

Mathcad explicit solution cubic equation examples
Mathcad   explicit solution cubic equation examplesMathcad   explicit solution cubic equation examples
Mathcad explicit solution cubic equation examplesJulio Banks
 
Stochastic Alternating Direction Method of Multipliers
Stochastic Alternating Direction Method of MultipliersStochastic Alternating Direction Method of Multipliers
Stochastic Alternating Direction Method of MultipliersTaiji Suzuki
 
Gate ee 2012 with solutions
Gate ee 2012 with solutionsGate ee 2012 with solutions
Gate ee 2012 with solutionskhemraj298
 
bellman-ford Theorem.ppt
bellman-ford Theorem.pptbellman-ford Theorem.ppt
bellman-ford Theorem.pptSaimaShaheen14
 
Reduction of the small gain condition
Reduction of the small gain conditionReduction of the small gain condition
Reduction of the small gain conditionMKosmykov
 
Distributed solution of stochastic optimal control problem on GPUs
Distributed solution of stochastic optimal control problem on GPUsDistributed solution of stochastic optimal control problem on GPUs
Distributed solution of stochastic optimal control problem on GPUsPantelis Sopasakis
 
Transportation Problems-Maximum Profit
Transportation Problems-Maximum ProfitTransportation Problems-Maximum Profit
Transportation Problems-Maximum ProfitDrDeepaChauhan
 
2021 preTEST5A Final Review Packet!
2021 preTEST5A Final Review Packet!2021 preTEST5A Final Review Packet!
2021 preTEST5A Final Review Packet!A Jorge Garcia
 
Gate ee 2005 with solutions
Gate ee 2005 with solutionsGate ee 2005 with solutions
Gate ee 2005 with solutionskhemraj298
 
ADVANCED ALGORITHMS-UNIT-3-Final.ppt
ADVANCED   ALGORITHMS-UNIT-3-Final.pptADVANCED   ALGORITHMS-UNIT-3-Final.ppt
ADVANCED ALGORITHMS-UNIT-3-Final.pptssuser702532
 

Ähnlich wie Gauss Seidel Method of Power Flow (20)

Load_Flow.pptx
Load_Flow.pptxLoad_Flow.pptx
Load_Flow.pptx
 
Load_Flow.pdf
Load_Flow.pdfLoad_Flow.pdf
Load_Flow.pdf
 
Lecture 11
Lecture 11Lecture 11
Lecture 11
 
APSA LEC 9
APSA LEC 9APSA LEC 9
APSA LEC 9
 
Mathcad explicit solution cubic equation examples
Mathcad   explicit solution cubic equation examplesMathcad   explicit solution cubic equation examples
Mathcad explicit solution cubic equation examples
 
QMC: Transition Workshop - Applying Quasi-Monte Carlo Methods to a Stochastic...
QMC: Transition Workshop - Applying Quasi-Monte Carlo Methods to a Stochastic...QMC: Transition Workshop - Applying Quasi-Monte Carlo Methods to a Stochastic...
QMC: Transition Workshop - Applying Quasi-Monte Carlo Methods to a Stochastic...
 
Report_AKbar_PDF
Report_AKbar_PDFReport_AKbar_PDF
Report_AKbar_PDF
 
Stochastic Alternating Direction Method of Multipliers
Stochastic Alternating Direction Method of MultipliersStochastic Alternating Direction Method of Multipliers
Stochastic Alternating Direction Method of Multipliers
 
Gate ee 2012 with solutions
Gate ee 2012 with solutionsGate ee 2012 with solutions
Gate ee 2012 with solutions
 
Matdis 3.4
Matdis 3.4Matdis 3.4
Matdis 3.4
 
bellman-ford Theorem.ppt
bellman-ford Theorem.pptbellman-ford Theorem.ppt
bellman-ford Theorem.ppt
 
Reduction of the small gain condition
Reduction of the small gain conditionReduction of the small gain condition
Reduction of the small gain condition
 
Distributed solution of stochastic optimal control problem on GPUs
Distributed solution of stochastic optimal control problem on GPUsDistributed solution of stochastic optimal control problem on GPUs
Distributed solution of stochastic optimal control problem on GPUs
 
Transportation Problems-Maximum Profit
Transportation Problems-Maximum ProfitTransportation Problems-Maximum Profit
Transportation Problems-Maximum Profit
 
2021 preTEST5A Final Review Packet!
2021 preTEST5A Final Review Packet!2021 preTEST5A Final Review Packet!
2021 preTEST5A Final Review Packet!
 
Shortest path algorithms
Shortest path algorithmsShortest path algorithms
Shortest path algorithms
 
Absorbing Random Walk Centrality
Absorbing Random Walk CentralityAbsorbing Random Walk Centrality
Absorbing Random Walk Centrality
 
Gate ee 2005 with solutions
Gate ee 2005 with solutionsGate ee 2005 with solutions
Gate ee 2005 with solutions
 
ADVANCED ALGORITHMS-UNIT-3-Final.ppt
ADVANCED   ALGORITHMS-UNIT-3-Final.pptADVANCED   ALGORITHMS-UNIT-3-Final.ppt
ADVANCED ALGORITHMS-UNIT-3-Final.ppt
 
Lecture 13
Lecture 13Lecture 13
Lecture 13
 

Kürzlich hochgeladen

Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Christo Ananth
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxfenichawla
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 

Kürzlich hochgeladen (20)

Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 

Gauss Seidel Method of Power Flow

  • 1. Gauss-Seidal (G-S) Method of Power Flow Younus B. Tech (EEE) Amity University
  • 2. Table of Contents Gauss Seidal Method Application of G-S Method in Power Flow Example Advantages and Disadvantages
  • 3. Table of Contents Gauss Seidal Method Application of G-S Method in Power Flow Example Advantages and Disadvantages
  • 4. Introduction G-S Method is a numerical method to solve system equations by method of successive iteration. Let us consider a system of equations:   a11 a12 a13 a21 a22 a23 a31 a32 a33   ·   x y z   =   b1 b2 b3  
  • 5. The above equations can be rewritten as x = 1 a11 (b1 − a12y − a13z) (1) y = 1 a22 (b2 − a23z − a21x) (2) z = 1 a33 (b3 − a31x − a32y) (3)
  • 6. Now we take the 1st approximation as: x(1) = y(1) = z(1) = 0 (4) The 2nd approximation is defined by: x(2) = 1 a11 (b1 − a12y(1) − a13z(1) ) (5) y(2) = 1 a22 (b2 − a23z(1) − a21x(2) ) (6) z(2) = 1 a33 (b3 − a31x(2) − a32y(2) ) (7)
  • 7. Similarly the 3rd approximation is: x(3) = 1 a11 (b1 − a12y(2) − a13z(2) ) (8) y(3) = 1 a22 (b2 − a23z(2) − a21x(3) ) (9) z(3) = 1 a33 (b3 − a31x(3) − a32y(3) ) (10) We continue to iterate until the fist few significant digits become constant and thus we get our numerical solution.
  • 8. Table of Contents Gauss Seidal Method Application of G-S Method in Power Flow Example Advantages and Disadvantages
  • 9. Numerical Solution of Power Flow The power flow equation is written as S∗ i = Pi − jQi = V ∗ i N k=1 YikVk (11) This equation can also be expressed as Pi − jQi = V ∗ i YiiVi + V ∗ i N k=1,k=i YikVk for i = 2, 3, ..., N (12) Vi = 1 Yii Pi − jQi V ∗ i − N k=1,k=i YikVk for i = 2, 3, ..., N (13)
  • 10. In G-S algorithm eqn. (13) is utilised to find the final bus voltage using successive steps of iteration, where V p+1 i = 1 Yii Pi − jQi (V p i )∗ − N k=1,k=i YikV p k for i = 2, 3, ..., N (14) V p+1 i = 1 Yii Pi − jQi (V p i )∗ − i−1 k=1 YikV p+1 k − N k=i+1 YikV p k for i = 2, 3, ..., N (15)
  • 11. V p+1 i = Ai (V p i )∗ − i−1 k=1 BikV p+1 k − N k=i+1 BikV p k for i = 2, 3, ..., N (16) where, i is the number of bus and p is the number of iterations Ai = Pi − jQi Yii Bik = Yik Yii
  • 12. Flow Chart Start READ Slack bus voltage (|V1|, δ1) Real bus powers for PQ & PV buses Reactive bus powers for PQ buses Voltage magnitudes for PV buses Voltage magnitude limits for PQ buses Reactive power limits for PV buses Form YBUS Make initial assumptions V 0 i for i = m + 1, ..., n δi0 for i = 2, ..., m A
  • 13. A Compute the parameters Ai for i = m + 1, ..., n & Bik for i, k = 1, ..., n (except k = i) Set iteration count p = 0 Set bus count i = 2 & ∆Vmax = 0 Test for Bus TypeB C E F PQ Bus PV Bus
  • 14. C Compute Q (p+1) i Is Qi(min) < Q (p+1) i < Qi(max) ? If Q (p+1)<Qi(min) i assign Q (p+1)=Qi(min) i If Q (p+1)>Qi(max) i assign If Q (p+1)=Qi(max) i Compute A p+1 i Compute Ai Compute V p+1 i Compute δ p+1 i & V p+1 i D no yes
  • 15. D Replace V p i by V p+1 i advance Bus count i = i + 1 Is i ≤ n Is Vmax ≤ ε Advance iteration count p = p + 1 Compute Slack Bus Power P1 + jQ1 E F yes no yes no
  • 16. Table of Contents Gauss Seidal Method Application of G-S Method in Power Flow Example Advantages and Disadvantages
  • 17. Example of three bus system Let us suppose Slack Bus, Load Bus and Generator Bus for i = 1, 2, 3 respectively, Then   Y11 Y12 Y13 Y21 Y22 Y23 Y31 Y32 Y33   ·   V1 V2 V3   =   I1 I2 I3   V (p+1) 1 = 1 Y11 (I1 − Y12V (p) 2 − Y13V (p) 3 ) V (p+1) 2 = 1 Y22 (I2 − Y23V (p) 3 − Y21V (p+1) 1 ) V (p+1) 3 = 1 Y33 (I3 − Y31V (p+1) 1 − Y32V (p+1) 2 )
  • 18. V1 = 1 + j0 V (p+1) 2 = 1 Y22 P2−jQ2 (V p 2 )∗ − Y23V (p) 3 − Y21V (p+1) 1 Q (p+1) 3 = − N k=1 YikViVk = −(Y31V3V1 +Y32V3V p+1 2 +Y33V3V3) V (p+1) 3 = 1 Y33 P3−jQ3 (V p 3 )∗ − Y31V (p+1) 1 − Y32V (p+1) 2
  • 19. Table of Contents Gauss Seidal Method Application of G-S Method in Power Flow Example Advantages and Disadvantages
  • 20. Advantages and Disadvantages Simplicity in technique Small computer memory requirement Less computational time per iteration Slow rate of convergence resulting in larger number of iterations Increase in the number of iterations with increase in the number of buses