Research Article
Multiobjective Optimization of a Hybrid Wind/Solar Battery Energy System in the Arctic
Algorithm 1
PSO algorithm pseudocode.
| | Start | | | Initialize swarm, velocities, and best positions | | | Evaluate each of the particles in swarm | | | Initialize external repository | | | While (maximum iteration not reached) Do | | | For each particle | | | Compute the speed of each particles | | | Update the new position of each particle | | | Evaluate new position | | | Update best position and external repository | | | End for | | | End while | | | End |
|