Research Article

Intelligent Optimization Control Strategy for Secondary Pollution of Flue Gas in Municipal Solid Waste Incineration

Algorithm 1

Pseudocode of IPSO algorithm.
Parameter meaning:
Initialize the particle swarm, including randomly generating particles in space ; setting: search space dimension , particle swarm size , learning factors and , inertia weight coefficients and and the maximum number of iterations . The current number of iterations is 1, the coding method forms a population matrix and a particle velocity change matrix;
Begin
1. For t=0, t=t+1 Do
2. Update the inertia weight coefficient and calculate the fitness of each particle;
3. Genetic manipulation produces next-generation particles;
4. Update the individual extreme value of particle;
5. Update the global extremum of the population;
6. Generate new populations.
7. End
8. If the set conditions are met, the search will stop and results will be output
End