Particle swarm optimization is a population-based search procedure where individuals (called particles) continuously change position (called state) within the search area. In other words, these particles “fly” around in the design space looking for the best position. Just like the real world where animals tend to follow neighbors who are closer to the food, the best position encountered by a particle and its neighbors is used to decide the next position of the particle. The state of a particle is the value for all design variables in the optimization problem and its velocity in the design space, and each move produces a new generation. The basic particle swarm algorithm begins by generating a set of random particles that constitute the initial population; each particle is also given an initial velocity. In every iteration, the particle is moved using the two best values: (1) the best position seen by this particular particle (i.e., particle-best or ) and (2) the best position encountered by all particles among all the generations thus far (i.e., global-best or ). Let and , respectively, be the current position and velocity of a particle during iteration; the velocity and position of the particle in the next iteration, (), is calculated using the following equations:
Here, and are two random numbers between 0 and 1, is the inertia of the particle, and and are the maximum increments due to particle-best and global-best; and are sometimes also called “Learning Rates” or “Learning Factors.” In the case of multiple-objectives, any point in the Pareto set is a candidate to be selected as a leader. The leader for each particle is selected randomly from this Pareto set based on the crowding distance. Isight also uses a turbulence operator that perturbs the velocity of a small number of particles during each iteration to increase the design-space coverage. A large inertia value allows the particle to explore a larger portion of the design space while increasing the number of iterations to converge at the optimum point. and are typically given a value of 0.9. Apart from these parameters, there is also a limit on the maximum velocity of the particle . You can use the Multi-Objective Particle Swarm technique with one objective. However, if you use only one objective, the Pareto file will be empty. |