SlideShare une entreprise Scribd logo
1  sur  23
Particle Swarm
Optimization
(PSO)
Introduction
 Many difficulties such as multi-
modality, dimensionality and
differentiability are associated with the
optimization of large-scale problems.
 Traditional techniques such as
steepest decent, linear programing
and dynamic programing generally fail
to solve such large-scale problems
especially with nonlinear objective
functions.
Introduction…
 Traditional techniques often fail to
solve optimization problems that have
many local optima.
 To overcome these problems, there is
a need to develop more powerful
optimization techniques.
Introduction…
 Some of the well-known population-
based optimization techniques are:
 Genetic Algorithms (GA)
 Artificial Immune Algorithms (AIA)
 Ant Colony Optimization (ACO)
 Particle Swarm Optimization (PSO)
 Bacteria Foraging Optimization (BFO)
 Artificial Bee Colony (ABC)
 Biogeography-Based Optimization (BBO)
Etc.
Particle Swarm Optimization
(PSO)
 Particle swarm optimization (PSO) is
an evolutionary computation technique
developed by Kennedy and Eberhart.
 It exhibits common evolutionary
computation attributes including
initialization with a population of
random solutions and searching for
optima by updating generations.
Concept
 A Simulation of a simplified social
system.
 The original intent was to graphically
simulate the graceful but
unpredictable choreography of a bird
flock.
 Each particle keeps track of its
coordinates in the problem space,
which are associated with the best
solution (fitness) it has achieved so
How it works ??
 PSO is initialized with a group of
random particles (solutions) and then
 Searches for optima by updating
generations.
 Potential solutions, called particles,
are then ‘‘flown’’ through the problem
space by following the current
optimum particles.
How it Works ??
 Each particle keeps track of its
coordinates in the problem space, which
are associated with the best solution
(fitness) it has achieved so far.
 This value is called ‘pBest’.
 Another "best" value that is tracked by
the particle swarm optimizer is the best
value obtained so far by any particle in
the population.
 This second best value is a global best
and called “gbest”.
How it works ??
 The particle swarm optimization
concept consists of, at each step,
changing the velocity (i.e.
accelerating) of each particle toward
its ‘pBest’ and ‘gBest’ locations (global
version of PSO).
PSO Algorithm (General)
Searches Hyperspace of Problem for
Optimum
 Define problem to search
 How many dimensions?
 Solution criteria?
 Initialize Population
 Random initial positions
 Random initial velocities
 Determine Best Position
 Global Best Position
 Personal Best Position
 Update Velocity and Position Equations
The step-by-step
implementation
Step 1:
 Initialize PSO parameters which are
necessary for the algorithm.
 population size which indicates the
number of individuals,
 number of generations necessary for the
termination criterion,
 cognitive constant, social constant,
 variation of inertia weight, maximum
velocity,
 number of design variables and
respective ranges for the design
variables.
Step 2:
 Generate random population equal to
the population size specified.
 Each population member contains the
value of all the design variables. This
value of design variable is randomly
generated in between the design
variable range specified.
 population means the group of birds
(particles) which represents the set of
solutions.
Step 3:
 Obtain the values of the objective function for
all the population members.
 For the first iteration, value of objective
function indicates the pBest for the respective
particle in the solution.
 Identify the particle with best objective
function value which identifies as gBest.
 If the problem is a constrained optimization
problem, then a specific approach such as
static penalty, dynamic penalty and adaptive
penalty is used to convert the constrained
optimization problem into the unconstrained
optimization problem.
Step 4:
 Update the velocity of each particle
and Check for the maximum velocity.
 If the velocity obtained exceeds the
maximum velocity,
 then reduce the existing velocity to the
maximum velocity.
Step 5:
 Update the position of the particles,
 Check all the design variables for the
upper and lower limits.
Step 6:
 Obtain the value of objective function
for all the particles.
 The new solution replaces the pBest if
it has better function value.
 Identify the gBest from the population.
 Update the value of inertia weight if
required.
Step 7:
 Best obtained results are saved using
elitism.
 All elite members are not modified
using crossover and mutation
operators but can be replaced if better
solutions are obtained in any iteration.
Step 8:
 Repeat the steps (from step 4) until
the specified number of generations or
termination criterion is reached.
Advantages
 PSO is based on the intelligence. It can
be applied into both scientific research
and engineering use.
 PSO have no overlapping and mutation
calculation.
 The search can be carried out by the
speed of the particle. During the
development of several generations, only
the most optimist particle can transmit
information onto the other particles, and
the speed of the researching is very fast.
Advantages…
 The calculation in PSO is very simple.
Compared with the other developing
calculations, it occupies the bigger
optimization ability and it can be
completed easily.
 PSO adopts the real number code,
and it is decided directly by the
solution. The number of the dimension
is equal to the constant of the solution.
Disadvantages
 The method easily suffers from the
partial optimism, which causes the less
exact at the regulation of its speed and
the direction.
 The method can not work out the
problems of scattering and
 The method can not work out the
problems of non-coordinate system,
such as the solution to the energy field
and the moving rules of the particles in
the energy field
Thank You !!

Contenu connexe

Tendances

Particle Swarm Optimization
Particle Swarm OptimizationParticle Swarm Optimization
Particle Swarm Optimization
QasimRehman
 
PSO and Its application in Engineering
PSO and Its application in EngineeringPSO and Its application in Engineering
PSO and Its application in Engineering
Prince Jain
 
Artificial bee colony (abc)
Artificial bee colony (abc)Artificial bee colony (abc)
Artificial bee colony (abc)
quadmemo
 

Tendances (20)

Pso introduction
Pso introductionPso introduction
Pso introduction
 
Particle Swarm Optimization by Rajorshi Mukherjee
Particle Swarm Optimization by Rajorshi MukherjeeParticle Swarm Optimization by Rajorshi Mukherjee
Particle Swarm Optimization by Rajorshi Mukherjee
 
Particle swarm optimization
Particle swarm optimization Particle swarm optimization
Particle swarm optimization
 
Particle Swarm Optimization
Particle Swarm OptimizationParticle Swarm Optimization
Particle Swarm Optimization
 
Optimization and particle swarm optimization (O & PSO)
Optimization and particle swarm optimization (O & PSO) Optimization and particle swarm optimization (O & PSO)
Optimization and particle swarm optimization (O & PSO)
 
Particle swarm optimization
Particle swarm optimizationParticle swarm optimization
Particle swarm optimization
 
Metaheuristics
MetaheuristicsMetaheuristics
Metaheuristics
 
PSO and Its application in Engineering
PSO and Its application in EngineeringPSO and Its application in Engineering
PSO and Its application in Engineering
 
Artificial bee colony (abc)
Artificial bee colony (abc)Artificial bee colony (abc)
Artificial bee colony (abc)
 
Nature-Inspired Optimization Algorithms
Nature-Inspired Optimization Algorithms Nature-Inspired Optimization Algorithms
Nature-Inspired Optimization Algorithms
 
Metaheuristic Algorithms: A Critical Analysis
Metaheuristic Algorithms: A Critical AnalysisMetaheuristic Algorithms: A Critical Analysis
Metaheuristic Algorithms: A Critical Analysis
 
PSO
PSOPSO
PSO
 
Pso kota baru parahyangan 2017
Pso kota baru parahyangan 2017Pso kota baru parahyangan 2017
Pso kota baru parahyangan 2017
 
Introduction to Optimization.ppt
Introduction to Optimization.pptIntroduction to Optimization.ppt
Introduction to Optimization.ppt
 
Genetic Algorithms - Artificial Intelligence
Genetic Algorithms - Artificial IntelligenceGenetic Algorithms - Artificial Intelligence
Genetic Algorithms - Artificial Intelligence
 
Artificial Bee Colony algorithm
Artificial Bee Colony algorithmArtificial Bee Colony algorithm
Artificial Bee Colony algorithm
 
PSO.ppt
PSO.pptPSO.ppt
PSO.ppt
 
Cuckoo search algorithm
Cuckoo search algorithmCuckoo search algorithm
Cuckoo search algorithm
 
Genetic Algorithm
Genetic AlgorithmGenetic Algorithm
Genetic Algorithm
 
Genetic Algorithm by Example
Genetic Algorithm by ExampleGenetic Algorithm by Example
Genetic Algorithm by Example
 

Similaire à Particle swarm optimization

Swarm intelligence pso and aco
Swarm intelligence pso and acoSwarm intelligence pso and aco
Swarm intelligence pso and aco
satish561
 
Particle swarm optimization (PSO) ppt presentation
Particle swarm optimization (PSO) ppt presentationParticle swarm optimization (PSO) ppt presentation
Particle swarm optimization (PSO) ppt presentation
LatestShorts
 

Similaire à Particle swarm optimization (20)

M017127578
M017127578M017127578
M017127578
 
Application of Genetic Algorithm and Particle Swarm Optimization in Software ...
Application of Genetic Algorithm and Particle Swarm Optimization in Software ...Application of Genetic Algorithm and Particle Swarm Optimization in Software ...
Application of Genetic Algorithm and Particle Swarm Optimization in Software ...
 
Structural Optimization using Genetic Algorithms - Artificial Intelligence Fu...
Structural Optimization using Genetic Algorithms - Artificial Intelligence Fu...Structural Optimization using Genetic Algorithms - Artificial Intelligence Fu...
Structural Optimization using Genetic Algorithms - Artificial Intelligence Fu...
 
Pso notes
Pso notesPso notes
Pso notes
 
Swarm intelligence pso and aco
Swarm intelligence pso and acoSwarm intelligence pso and aco
Swarm intelligence pso and aco
 
T01732115119
T01732115119T01732115119
T01732115119
 
Artificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path PlanningArtificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path Planning
 
Advanced Optimization Techniques
Advanced Optimization TechniquesAdvanced Optimization Techniques
Advanced Optimization Techniques
 
COMPARISON BETWEEN THE GENETIC ALGORITHMS OPTIMIZATION AND PARTICLE SWARM OPT...
COMPARISON BETWEEN THE GENETIC ALGORITHMS OPTIMIZATION AND PARTICLE SWARM OPT...COMPARISON BETWEEN THE GENETIC ALGORITHMS OPTIMIZATION AND PARTICLE SWARM OPT...
COMPARISON BETWEEN THE GENETIC ALGORITHMS OPTIMIZATION AND PARTICLE SWARM OPT...
 
Comparison between the genetic algorithms optimization and particle swarm opt...
Comparison between the genetic algorithms optimization and particle swarm opt...Comparison between the genetic algorithms optimization and particle swarm opt...
Comparison between the genetic algorithms optimization and particle swarm opt...
 
50120140504022
5012014050402250120140504022
50120140504022
 
04 1 evolution
04 1 evolution04 1 evolution
04 1 evolution
 
Optimizing Mobile Robot Path Planning and Navigation by Use of Differential E...
Optimizing Mobile Robot Path Planning and Navigation by Use of Differential E...Optimizing Mobile Robot Path Planning and Navigation by Use of Differential E...
Optimizing Mobile Robot Path Planning and Navigation by Use of Differential E...
 
Particle swarm optimization (PSO) ppt presentation
Particle swarm optimization (PSO) ppt presentationParticle swarm optimization (PSO) ppt presentation
Particle swarm optimization (PSO) ppt presentation
 
Biology-Derived Algorithms in Engineering Optimization
Biology-Derived Algorithms in Engineering OptimizationBiology-Derived Algorithms in Engineering Optimization
Biology-Derived Algorithms in Engineering Optimization
 
1 sati
1 sati1 sati
1 sati
 
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
 
Efficient evaluation of flatness error from Coordinate Measurement Data using...
Efficient evaluation of flatness error from Coordinate Measurement Data using...Efficient evaluation of flatness error from Coordinate Measurement Data using...
Efficient evaluation of flatness error from Coordinate Measurement Data using...
 
Two-Stage Eagle Strategy with Differential Evolution
Two-Stage Eagle Strategy with Differential EvolutionTwo-Stage Eagle Strategy with Differential Evolution
Two-Stage Eagle Strategy with Differential Evolution
 
Markov Chain and Adaptive Parameter Selection on Particle Swarm Optimizer
Markov Chain and Adaptive Parameter Selection on Particle Swarm Optimizer  Markov Chain and Adaptive Parameter Selection on Particle Swarm Optimizer
Markov Chain and Adaptive Parameter Selection on Particle Swarm Optimizer
 

Dernier

Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Christo Ananth
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
ankushspencer015
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
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
dharasingh5698
 
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
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Dernier (20)

UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
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
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
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
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
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
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
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
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 

Particle swarm optimization

  • 2. Introduction  Many difficulties such as multi- modality, dimensionality and differentiability are associated with the optimization of large-scale problems.  Traditional techniques such as steepest decent, linear programing and dynamic programing generally fail to solve such large-scale problems especially with nonlinear objective functions.
  • 3. Introduction…  Traditional techniques often fail to solve optimization problems that have many local optima.  To overcome these problems, there is a need to develop more powerful optimization techniques.
  • 4. Introduction…  Some of the well-known population- based optimization techniques are:  Genetic Algorithms (GA)  Artificial Immune Algorithms (AIA)  Ant Colony Optimization (ACO)  Particle Swarm Optimization (PSO)  Bacteria Foraging Optimization (BFO)  Artificial Bee Colony (ABC)  Biogeography-Based Optimization (BBO) Etc.
  • 5. Particle Swarm Optimization (PSO)  Particle swarm optimization (PSO) is an evolutionary computation technique developed by Kennedy and Eberhart.  It exhibits common evolutionary computation attributes including initialization with a population of random solutions and searching for optima by updating generations.
  • 6. Concept  A Simulation of a simplified social system.  The original intent was to graphically simulate the graceful but unpredictable choreography of a bird flock.  Each particle keeps track of its coordinates in the problem space, which are associated with the best solution (fitness) it has achieved so
  • 7. How it works ??  PSO is initialized with a group of random particles (solutions) and then  Searches for optima by updating generations.  Potential solutions, called particles, are then ‘‘flown’’ through the problem space by following the current optimum particles.
  • 8. How it Works ??  Each particle keeps track of its coordinates in the problem space, which are associated with the best solution (fitness) it has achieved so far.  This value is called ‘pBest’.  Another "best" value that is tracked by the particle swarm optimizer is the best value obtained so far by any particle in the population.  This second best value is a global best and called “gbest”.
  • 9. How it works ??  The particle swarm optimization concept consists of, at each step, changing the velocity (i.e. accelerating) of each particle toward its ‘pBest’ and ‘gBest’ locations (global version of PSO).
  • 10. PSO Algorithm (General) Searches Hyperspace of Problem for Optimum  Define problem to search  How many dimensions?  Solution criteria?  Initialize Population  Random initial positions  Random initial velocities  Determine Best Position  Global Best Position  Personal Best Position  Update Velocity and Position Equations
  • 12. Step 1:  Initialize PSO parameters which are necessary for the algorithm.  population size which indicates the number of individuals,  number of generations necessary for the termination criterion,  cognitive constant, social constant,  variation of inertia weight, maximum velocity,  number of design variables and respective ranges for the design variables.
  • 13. Step 2:  Generate random population equal to the population size specified.  Each population member contains the value of all the design variables. This value of design variable is randomly generated in between the design variable range specified.  population means the group of birds (particles) which represents the set of solutions.
  • 14. Step 3:  Obtain the values of the objective function for all the population members.  For the first iteration, value of objective function indicates the pBest for the respective particle in the solution.  Identify the particle with best objective function value which identifies as gBest.  If the problem is a constrained optimization problem, then a specific approach such as static penalty, dynamic penalty and adaptive penalty is used to convert the constrained optimization problem into the unconstrained optimization problem.
  • 15. Step 4:  Update the velocity of each particle and Check for the maximum velocity.  If the velocity obtained exceeds the maximum velocity,  then reduce the existing velocity to the maximum velocity.
  • 16. Step 5:  Update the position of the particles,  Check all the design variables for the upper and lower limits.
  • 17. Step 6:  Obtain the value of objective function for all the particles.  The new solution replaces the pBest if it has better function value.  Identify the gBest from the population.  Update the value of inertia weight if required.
  • 18. Step 7:  Best obtained results are saved using elitism.  All elite members are not modified using crossover and mutation operators but can be replaced if better solutions are obtained in any iteration.
  • 19. Step 8:  Repeat the steps (from step 4) until the specified number of generations or termination criterion is reached.
  • 20. Advantages  PSO is based on the intelligence. It can be applied into both scientific research and engineering use.  PSO have no overlapping and mutation calculation.  The search can be carried out by the speed of the particle. During the development of several generations, only the most optimist particle can transmit information onto the other particles, and the speed of the researching is very fast.
  • 21. Advantages…  The calculation in PSO is very simple. Compared with the other developing calculations, it occupies the bigger optimization ability and it can be completed easily.  PSO adopts the real number code, and it is decided directly by the solution. The number of the dimension is equal to the constant of the solution.
  • 22. Disadvantages  The method easily suffers from the partial optimism, which causes the less exact at the regulation of its speed and the direction.  The method can not work out the problems of scattering and  The method can not work out the problems of non-coordinate system, such as the solution to the energy field and the moving rules of the particles in the energy field