SlideShare a Scribd company logo
A
Presentation
on
Automatic Voltage Regulation Using FOPID
Controller Tuned by Particle Swarm
Optimization Technique
SUPERVISOR
(Mr. AKHILESH KUMAR MISHRA)
Assistant Professor
Presented By
Tushar Verma
(1201024508)
CONTENTS
1. Objective
2. Introduction
3. Automatic Voltage Regulation
4. PID Controller
5. FOPID Controller
6. Classical tuning methods of PID & FOPID Controller
7. Optimal Tuning of FOPID Tuning using PSO
8. Simulation Result
9. Conclusion
1. OBJECTIVE
• The aim of my work is to develop a controller based
on Particle Swarm Optimization Technique to
simulate an Automatic Voltage Regulator (AVR) for
a synchronous generator in order to achieve better
stability of the system and fulfil the requirements of
good excitation control.
2. INTRODUCTION
• In this work bio-inspired optimization technique in
controllers and their advantages over conventional
methods is discussed using MATLAB/Simulink.
• Also the advantage of FOPID controller over
Conventional PID controller is discussed using
MATLAB/Simulink.
• The main aim is to apply PSO technique to design
and tune parameters of FOPID controller to get an
output with better dynamic and static performance.
3. AUTOMATIC VOLTAGE
REGULATION
• The Automatic Voltage Regulator (AVR) is widely
used in industrial application to obtain the stability
and good regulation of different electrical apparatus.
• The automatic voltage regulator or AVR, as the name
implies, is a device intended to regulate voltage
automatically: that is to take a varying voltage level
and turn it into a constant voltage level.
Contd…
• A simple AVR consists of:-
1. Amplifier,
2. Exciter,
3. Generator and
4. Sensor.
Contd…
Fig : Block Diagram of AVR
Contd…
• Table 3.1 Parameter range for the components used in
AVR
4. PID CONTROLLER
• PID (proportional-integral-derivative) control
is one of the earlier control strategies.
Fig: Block Diagram of PID Controller
Contd…
• PID controller has all the necessary dynamics:
• Fast reaction on change of the controller input (D
mode),
• Increase in control signal to lead error towards zero (I
mode) and
• Suitable action inside control error area to eliminate
oscillations (P mode).
• The o/p of PID controller is given as:
Contd…
• Table : Effect of each controllers Kp, Ti and Td on a
closed-loop system
5. FOPID Controller
• Fractional-order calculus is an area of mathematics
that deals with derivatives and integrals from non-
integer orders.
• In fact, in principle, they provide more flexibility in
the controller design, with respect to the standard PID
controllers, because they have five parameters to
select (instead of three).
• The concept of FOPID controllers was proposed by
Podlubny in 1997 (Podlubny et al., 1997; Podlubny,
1999a).
Contd…
• It is Clear, by selecting λ = 1 and μ = 1, a classical PID
controller can be recovered. Using λ = 1, μ = 0, and λ = 0, μ =
1, respectively corresponds to the conventional PI & PD
controllers.
• All these classical types of PID controllers are special
cases of the FOPID controller.
•
Contd…
• The mathematical representation of such a controller
is as follows:
• ADVANTAGES OF F-O CONTROLLER
1. If the parameter of a controlled system changes, a fractional
order controller is less sensitive than a classical PID controller.
2. FOC has two extra variables to tune. This provides extra
degrees of freedom to the dynamic properties of fractional order
system.
6.CLASSICALTUNINGMETHODSOF
PID&FOPIDCONTROLLER
• PID Tuning
• The model of a plant is given
as
• The transfer is assumed as
• Where,
• K - Gain
• ϴ - delay time
• T – time constant
Contd…
• Now the response of plant is taken as
Contd…
• After computing the t1 and t2 times, the time delay
(ϴ) and process time constant (T) can be obtained
from the following equations:
Contd…
• Ziegler-Nichols Tuning Method
• Now the value of Kp, Ti, Td is obtained by the
following table :
Contd…
• Cohen-Coon Tuning Method
• Cohen and Coon based the controller settings on the
three parameters ϴ, T and K of the open loop step
response.
Contd…
FOPID Tuning
• Ziegler-Nichols Type Tuning Rules
• First set of tuning rules
• The first set of tuning rule is given as
• P=-0.0048+0.2664L+0.4982T+0.0232L2-0.0720T2-0.0348TL
Contd…
7. Optimal Tuning of FOPID Tuning
using PSO
• Introduction to Particle Swarm Optimization (PSO)
1. Origins
2. Concept
3. PSO Algorithm
Contd…
1. Origin
• Inspired from the nature social behavior and dynamic
movements with communications of insects, birds
and fish.
Contd…
• In 1986, Craig Reynolds described this process in 3
simple behaviors:
1.Separation
• avoidcrowdinglocalflockmates
Contd…
2. Alignment
• Move towards the average heading of local
flock mates
Contd…
3. Cohesion
• Move toward the average position of local
flock mates
Contd…
2. Origin
• Uses a number of agents (particles) that constitute a
swarm moving around in the search space looking for
the best solution.
• Each particle in search space adjusts its “flying”
according to its own flying experience as well as the
flying experience of other particles.
Contd…
• Each particle adjusts its travelling speed dynamically
corresponding to the flying experience of itself and its
colleagues.
• Each particle keeps track:
• its best solution, personal best, pbest
• the best value of any particle, global best, gbest
Contd…
• Each particle modifies its position according to
• Its current position
• Its current velocity
• The distance between
its current position and
pbest
• The distance between its
current position and pbest
Contd…
• 3. Algorithm
Contd…
Contd…
Particle update rule
p = p + v
With
v = v + c1 * rand * (pBest – p) + c2 * rand * (gBest – p)
where
• p: particle’s position
• v: path direction
• c1: weight of local information
• c2: weight of global information
• pBest: best position of the particle
• gBest: best position of the swarm
• rand: random variable
Contd…
1. Create a ‘population’ of agents (particles) uniformly
distributed over X
2. Evaluate each particle’s position according to the
objective function
3. If a particle’s current position is better than its
previous best position, update it
4. Determine the best particle (according to the
particle’s previous best positions)
Contd…
5. Update particles’ velocities
6. Move particles to their new positions:
7. Go to step 2 until stopping criteria are satisfied
Contd…
Contd…
Contd…
Contd…
Contd…
Contd…
Contd…
Contd…
Contd…
8. SIMULATION RESULT
• The figure shows the Simulink model of AVR using
PID controller
Contd…
• the figure shows the step response of AVR using PID
controller which is tuned by the Ziegler Nichols open
loop tuning method.
Contd…
• The figure shows the Simulink model of AVR using
PID controller
Contd…
• the figure shows the step response of AVR which is
tuned by Cohen Coon open loop tuning method.
Contd…
• The figure shows the Simulink model of AVR using
FOPID controller which is tuned by the conventional
tuning method i.e. Ziegler Nichols open loop tuning
method for the first set of tuning rules
Contd…
• The figure shows the step response of AVR using
fractional order PID controller which is tuned by the
ZN tuning method for the first set of tuning rules
Contd…
• The figure shows the Simulink model of AVR using
FOPID controller which is tuned by the bio inspired
optimization method i.e. Particle Swarm Optimization
Technique.
Contd…
• The figure shows the step response of AVR using
fractional order PID controller which is tuned by the
Particle Swarm Optimization Technique based on bio
inspired method
Contd…
• The figure show the comparative model of AVR using PID
controller tuned by ZN & CC open loop tuning method and
Fractional Order PID controller tuned by ZN & Particle
Swarm Optimization method respectively.
Contd…
• The figure shows the comparative step response of AVR
obtained by the PID controller tuned by ZN & CC open loop
tuning method and FOPID controller tuned by conventional
tuning method i.e. ZN tuning method for the first set of tuning
rule
Contd…
• Now the following table shows the comparative
analysis of PID controller tuned by ZN & CC and
FOPID controller tuned by ZN & PSO for AVR.
From the table 8.1 it is clear that the settling time of
the response for AVR obtained by FOPID controller
tuned by Particle Swarm optimization is better than
all the responses obtain by different methods
performed and it desirable condition.
Contd…
9. Conclusion
• Hence a controller is developed based on Particle
Swarm Optimization Technique to simulate an
Automatic Voltage Regulator (AVR) for a
synchronous generator in order to achieve better
stability of the system and fulfil the requirements of
good excitation control.
Thank You

More Related Content

PPTX
ppt.pptx
Akhilesh Mishra
 
PPT
1578385.ppt
MuhammadMubeen58
 
PDF
D04954148
IOSR-JEN
 
PPT
Lecture2_3.ppt rosetta stone advanced login
efenglishlive2023
 
PPTX
Metttallurgy steps and detailse dclass nltes for
SreenivasanOk
 
PPTX
05 tuning.pid.controllers
Mahmoud Hussein
 
PDF
Numerical Optimization of Fractional Order PID Controller
inventionjournals
 
PPTX
Presentation FOPID Boost DC-DC Converter.pptx
SherAli260123
 
ppt.pptx
Akhilesh Mishra
 
1578385.ppt
MuhammadMubeen58
 
D04954148
IOSR-JEN
 
Lecture2_3.ppt rosetta stone advanced login
efenglishlive2023
 
Metttallurgy steps and detailse dclass nltes for
SreenivasanOk
 
05 tuning.pid.controllers
Mahmoud Hussein
 
Numerical Optimization of Fractional Order PID Controller
inventionjournals
 
Presentation FOPID Boost DC-DC Converter.pptx
SherAli260123
 

Similar to prsntsn.pptx (20)

PPTX
PID.pptx
dangducluan
 
PPT
Modelling Simulation and Control of a Real System
ajishekraj1
 
PDF
Design and optimization of pid controller using genetic algorithm
eSAT Journals
 
PPT
179529572-ROOT-LOCUS-Control-system-Design-ppt.ppt
TaraGonzales5
 
PPTX
Temperature Control System Using Pid Controller
Masum Parvej
 
PPT
PID-Control_automation_Engineering_chapter6.ppt
mohamed abd elrazek
 
PDF
Iaetsd position control of servo systems using pid
Iaetsd Iaetsd
 
PDF
pid controller
shurjeel amjad
 
PDF
Ziegler Nichols Method for PID Controller Tuning
MohamedSultan145424
 
PPTX
PPT ON BODE INTEGRAL METHOD FOR HEADBOX
Sheikh Ishfaq
 
PPTX
Speed Control of DC Motor Using PSO tuned PID Controller
Ajesh Benny
 
PDF
Comparison of Tuning Methods of PID Controllers for Non-Linear System
paperpublications3
 
PDF
MODEL BASED ANALYSIS OF TEMPERATURE PROCESS UNDER VARIOUS CONTROL STRATEGIES ...
Journal For Research
 
PDF
Ch8 pid controller
Elaf A.Saeed
 
PPTX
Tuning of pid
Ankuseth
 
PDF
Automated Tuning and Controller Design for DC-DC Boost Converter
IRJET Journal
 
PDF
Servo Fundamentals
purnima saha
 
DOCX
Closed-loop step response for tuning PID fractional-order filter controllers
ISA Interchange
 
PDF
Screenshot 2021-02-23 at 2.46.02 PM.pdf
muhammadsubhan626458
 
PID.pptx
dangducluan
 
Modelling Simulation and Control of a Real System
ajishekraj1
 
Design and optimization of pid controller using genetic algorithm
eSAT Journals
 
179529572-ROOT-LOCUS-Control-system-Design-ppt.ppt
TaraGonzales5
 
Temperature Control System Using Pid Controller
Masum Parvej
 
PID-Control_automation_Engineering_chapter6.ppt
mohamed abd elrazek
 
Iaetsd position control of servo systems using pid
Iaetsd Iaetsd
 
pid controller
shurjeel amjad
 
Ziegler Nichols Method for PID Controller Tuning
MohamedSultan145424
 
PPT ON BODE INTEGRAL METHOD FOR HEADBOX
Sheikh Ishfaq
 
Speed Control of DC Motor Using PSO tuned PID Controller
Ajesh Benny
 
Comparison of Tuning Methods of PID Controllers for Non-Linear System
paperpublications3
 
MODEL BASED ANALYSIS OF TEMPERATURE PROCESS UNDER VARIOUS CONTROL STRATEGIES ...
Journal For Research
 
Ch8 pid controller
Elaf A.Saeed
 
Tuning of pid
Ankuseth
 
Automated Tuning and Controller Design for DC-DC Boost Converter
IRJET Journal
 
Servo Fundamentals
purnima saha
 
Closed-loop step response for tuning PID fractional-order filter controllers
ISA Interchange
 
Screenshot 2021-02-23 at 2.46.02 PM.pdf
muhammadsubhan626458
 
Ad

Recently uploaded (20)

PPT
Ppt for engineering students application on field effect
lakshmi.ec
 
PDF
Traditional Exams vs Continuous Assessment in Boarding Schools.pdf
The Asian School
 
PPTX
EE3303-EM-I 25.7.25 electrical machines.pptx
Nagen87
 
PPTX
Production of bioplastic from fruit peels.pptx
alwingeorgealwingeor
 
PPTX
Module2 Data Base Design- ER and NF.pptx
gomathisankariv2
 
PPTX
anatomy of limbus and anterior chamber .pptx
ZePowe
 
PDF
ETO & MEO Certificate of Competency Questions and Answers
Mahmoud Moghtaderi
 
PPTX
Ship’s Structural Components.pptx 7.7 Mb
abdalwhab7327
 
PDF
FLEX-LNG-Company-Presentation-Nov-2017.pdf
jbloggzs
 
PPTX
Azure-DevOps-Training presentation downloadable
NamanGoyal428595
 
PDF
Top 10 read articles In Managing Information Technology.pdf
IJMIT JOURNAL
 
PPT
High Data Link Control Protocol in Data Link Layer
shailajacse
 
PDF
July 2025: Top 10 Read Articles Advanced Information Technology
ijait
 
PDF
Introduction to Data Science: data science process
ShivarkarSandip
 
PDF
LEAP-1B presedntation xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
hatem173148
 
PPTX
Chapter_Seven_Construction_Reliability_Elective_III_Msc CM
SubashKumarBhattarai
 
PPTX
Unit 5 BSP.pptxytrrftyyydfyujfttyczcgvcd
ghousebhasha2007
 
PPTX
Edge to Cloud Protocol HTTP WEBSOCKET MQTT-SN MQTT.pptx
dhanashri894551
 
PPTX
ANIMAL INTERVENTION WARNING SYSTEM (4).pptx
dodultrongaming
 
Ppt for engineering students application on field effect
lakshmi.ec
 
Traditional Exams vs Continuous Assessment in Boarding Schools.pdf
The Asian School
 
EE3303-EM-I 25.7.25 electrical machines.pptx
Nagen87
 
Production of bioplastic from fruit peels.pptx
alwingeorgealwingeor
 
Module2 Data Base Design- ER and NF.pptx
gomathisankariv2
 
anatomy of limbus and anterior chamber .pptx
ZePowe
 
ETO & MEO Certificate of Competency Questions and Answers
Mahmoud Moghtaderi
 
Ship’s Structural Components.pptx 7.7 Mb
abdalwhab7327
 
FLEX-LNG-Company-Presentation-Nov-2017.pdf
jbloggzs
 
Azure-DevOps-Training presentation downloadable
NamanGoyal428595
 
Top 10 read articles In Managing Information Technology.pdf
IJMIT JOURNAL
 
High Data Link Control Protocol in Data Link Layer
shailajacse
 
July 2025: Top 10 Read Articles Advanced Information Technology
ijait
 
Introduction to Data Science: data science process
ShivarkarSandip
 
LEAP-1B presedntation xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
hatem173148
 
Chapter_Seven_Construction_Reliability_Elective_III_Msc CM
SubashKumarBhattarai
 
Unit 5 BSP.pptxytrrftyyydfyujfttyczcgvcd
ghousebhasha2007
 
Edge to Cloud Protocol HTTP WEBSOCKET MQTT-SN MQTT.pptx
dhanashri894551
 
ANIMAL INTERVENTION WARNING SYSTEM (4).pptx
dodultrongaming
 
Ad

prsntsn.pptx

  • 1. A Presentation on Automatic Voltage Regulation Using FOPID Controller Tuned by Particle Swarm Optimization Technique SUPERVISOR (Mr. AKHILESH KUMAR MISHRA) Assistant Professor Presented By Tushar Verma (1201024508)
  • 2. CONTENTS 1. Objective 2. Introduction 3. Automatic Voltage Regulation 4. PID Controller 5. FOPID Controller 6. Classical tuning methods of PID & FOPID Controller 7. Optimal Tuning of FOPID Tuning using PSO 8. Simulation Result 9. Conclusion
  • 3. 1. OBJECTIVE • The aim of my work is to develop a controller based on Particle Swarm Optimization Technique to simulate an Automatic Voltage Regulator (AVR) for a synchronous generator in order to achieve better stability of the system and fulfil the requirements of good excitation control.
  • 4. 2. INTRODUCTION • In this work bio-inspired optimization technique in controllers and their advantages over conventional methods is discussed using MATLAB/Simulink. • Also the advantage of FOPID controller over Conventional PID controller is discussed using MATLAB/Simulink. • The main aim is to apply PSO technique to design and tune parameters of FOPID controller to get an output with better dynamic and static performance.
  • 5. 3. AUTOMATIC VOLTAGE REGULATION • The Automatic Voltage Regulator (AVR) is widely used in industrial application to obtain the stability and good regulation of different electrical apparatus. • The automatic voltage regulator or AVR, as the name implies, is a device intended to regulate voltage automatically: that is to take a varying voltage level and turn it into a constant voltage level.
  • 6. Contd… • A simple AVR consists of:- 1. Amplifier, 2. Exciter, 3. Generator and 4. Sensor.
  • 7. Contd… Fig : Block Diagram of AVR
  • 8. Contd… • Table 3.1 Parameter range for the components used in AVR
  • 9. 4. PID CONTROLLER • PID (proportional-integral-derivative) control is one of the earlier control strategies. Fig: Block Diagram of PID Controller
  • 10. Contd… • PID controller has all the necessary dynamics: • Fast reaction on change of the controller input (D mode), • Increase in control signal to lead error towards zero (I mode) and • Suitable action inside control error area to eliminate oscillations (P mode). • The o/p of PID controller is given as:
  • 11. Contd… • Table : Effect of each controllers Kp, Ti and Td on a closed-loop system
  • 12. 5. FOPID Controller • Fractional-order calculus is an area of mathematics that deals with derivatives and integrals from non- integer orders. • In fact, in principle, they provide more flexibility in the controller design, with respect to the standard PID controllers, because they have five parameters to select (instead of three). • The concept of FOPID controllers was proposed by Podlubny in 1997 (Podlubny et al., 1997; Podlubny, 1999a).
  • 13. Contd… • It is Clear, by selecting λ = 1 and μ = 1, a classical PID controller can be recovered. Using λ = 1, μ = 0, and λ = 0, μ = 1, respectively corresponds to the conventional PI & PD controllers. • All these classical types of PID controllers are special cases of the FOPID controller. •
  • 14. Contd… • The mathematical representation of such a controller is as follows: • ADVANTAGES OF F-O CONTROLLER 1. If the parameter of a controlled system changes, a fractional order controller is less sensitive than a classical PID controller. 2. FOC has two extra variables to tune. This provides extra degrees of freedom to the dynamic properties of fractional order system.
  • 15. 6.CLASSICALTUNINGMETHODSOF PID&FOPIDCONTROLLER • PID Tuning • The model of a plant is given as • The transfer is assumed as • Where, • K - Gain • ϴ - delay time • T – time constant
  • 16. Contd… • Now the response of plant is taken as
  • 17. Contd… • After computing the t1 and t2 times, the time delay (ϴ) and process time constant (T) can be obtained from the following equations:
  • 18. Contd… • Ziegler-Nichols Tuning Method • Now the value of Kp, Ti, Td is obtained by the following table :
  • 19. Contd… • Cohen-Coon Tuning Method • Cohen and Coon based the controller settings on the three parameters ϴ, T and K of the open loop step response.
  • 20. Contd… FOPID Tuning • Ziegler-Nichols Type Tuning Rules • First set of tuning rules • The first set of tuning rule is given as • P=-0.0048+0.2664L+0.4982T+0.0232L2-0.0720T2-0.0348TL
  • 22. 7. Optimal Tuning of FOPID Tuning using PSO • Introduction to Particle Swarm Optimization (PSO) 1. Origins 2. Concept 3. PSO Algorithm
  • 23. Contd… 1. Origin • Inspired from the nature social behavior and dynamic movements with communications of insects, birds and fish.
  • 24. Contd… • In 1986, Craig Reynolds described this process in 3 simple behaviors: 1.Separation • avoidcrowdinglocalflockmates
  • 25. Contd… 2. Alignment • Move towards the average heading of local flock mates
  • 26. Contd… 3. Cohesion • Move toward the average position of local flock mates
  • 27. Contd… 2. Origin • Uses a number of agents (particles) that constitute a swarm moving around in the search space looking for the best solution. • Each particle in search space adjusts its “flying” according to its own flying experience as well as the flying experience of other particles.
  • 28. Contd… • Each particle adjusts its travelling speed dynamically corresponding to the flying experience of itself and its colleagues. • Each particle keeps track: • its best solution, personal best, pbest • the best value of any particle, global best, gbest
  • 29. Contd… • Each particle modifies its position according to • Its current position • Its current velocity • The distance between its current position and pbest • The distance between its current position and pbest
  • 32. Contd… Particle update rule p = p + v With v = v + c1 * rand * (pBest – p) + c2 * rand * (gBest – p) where • p: particle’s position • v: path direction • c1: weight of local information • c2: weight of global information • pBest: best position of the particle • gBest: best position of the swarm • rand: random variable
  • 33. Contd… 1. Create a ‘population’ of agents (particles) uniformly distributed over X 2. Evaluate each particle’s position according to the objective function 3. If a particle’s current position is better than its previous best position, update it 4. Determine the best particle (according to the particle’s previous best positions)
  • 34. Contd… 5. Update particles’ velocities 6. Move particles to their new positions: 7. Go to step 2 until stopping criteria are satisfied
  • 44. 8. SIMULATION RESULT • The figure shows the Simulink model of AVR using PID controller
  • 45. Contd… • the figure shows the step response of AVR using PID controller which is tuned by the Ziegler Nichols open loop tuning method.
  • 46. Contd… • The figure shows the Simulink model of AVR using PID controller
  • 47. Contd… • the figure shows the step response of AVR which is tuned by Cohen Coon open loop tuning method.
  • 48. Contd… • The figure shows the Simulink model of AVR using FOPID controller which is tuned by the conventional tuning method i.e. Ziegler Nichols open loop tuning method for the first set of tuning rules
  • 49. Contd… • The figure shows the step response of AVR using fractional order PID controller which is tuned by the ZN tuning method for the first set of tuning rules
  • 50. Contd… • The figure shows the Simulink model of AVR using FOPID controller which is tuned by the bio inspired optimization method i.e. Particle Swarm Optimization Technique.
  • 51. Contd… • The figure shows the step response of AVR using fractional order PID controller which is tuned by the Particle Swarm Optimization Technique based on bio inspired method
  • 52. Contd… • The figure show the comparative model of AVR using PID controller tuned by ZN & CC open loop tuning method and Fractional Order PID controller tuned by ZN & Particle Swarm Optimization method respectively.
  • 53. Contd… • The figure shows the comparative step response of AVR obtained by the PID controller tuned by ZN & CC open loop tuning method and FOPID controller tuned by conventional tuning method i.e. ZN tuning method for the first set of tuning rule
  • 54. Contd… • Now the following table shows the comparative analysis of PID controller tuned by ZN & CC and FOPID controller tuned by ZN & PSO for AVR. From the table 8.1 it is clear that the settling time of the response for AVR obtained by FOPID controller tuned by Particle Swarm optimization is better than all the responses obtain by different methods performed and it desirable condition.
  • 56. 9. Conclusion • Hence a controller is developed based on Particle Swarm Optimization Technique to simulate an Automatic Voltage Regulator (AVR) for a synchronous generator in order to achieve better stability of the system and fulfil the requirements of good excitation control.