PARTICLE SWARM OPTIMISATION (PSO)

Size: px
Start display at page:

Download "PARTICLE SWARM OPTIMISATION (PSO)"

Transcription

1 PARTICLE SWARM OPTIMISATION (PSO) Perry Brown Alexander Mathews Image:

2 Introduction Concept first introduced by Kennedy and Eberhart (1995) Original idea was to develop a realistic visual simulation of bird flock behaviour Simulation was then modified to include a point in the environment that attracted the virtual bird agents Potential for optimisation applications then became apparent

3 The natural metaphor A flock of birds (or school of fish, etc.) searching for food Their objective is to efficiently find the best source of food Nature-based theory underlying PSO: The advantage of sharing information within a group outweighs the disadvantage of having to share the reward Image:

4 Terminology The particles in PSO have no mass or volume (essentially they are just points in space), but they do have acceleration and velocity Behaviour of groups in the developed algorithm ended up looking more like a swarm than a flock Hence the name Particle Swarm Optimisation

5 Swarm intelligence Millonas five basic principles of swarm intelligence: Proximity: agents can perform basic space and time calculations Quality: agents can respond to environmental conditions Diverse response: population can exhibit a wide range of behaviour Stability: behaviour of population does not necessarily change every time the environment does Adaptability: behaviour of population must be able to change when necessary to adapt to environment A PSO swarm satisfies all of the above conditions

6 Population and environment Multidimensional search space Each point in the search space has some value associated with it, goal is to find the best value Numerous agent particles navigating the search space Each agent has the following properties: a current position within the search space a velocity vector Additionally, each agent knows the following information: the best value it has found so far (pbest) and its location the best value any member of the population has found so far (gbest) and its location

7 Kennedy and Eberhart s (1995) refined algorithm Some number of agent particles are initialised with individual positions and velocities (often just done randomly) The following steps are then performed iteratively: The position of each agent is updated according to its current velocity: new position = old position + velocity The value at each agent s new position is checked, with pbest and gbest information updated if necessary Each component of each agent s velocity vector is then adjusted as a function of the differences between its current location and both the pbest and gbest locations, each weighted by a random variable: new velocity = old velocity + 2 * rand1 * (pbest location - current location) + 2 * rand2 * (gbest location - current location) where rand1 and rand2 are random numbers between 0 and 1. (Multiplying by the constant 2 causes particles to overshoot their target about half of the time, resulting in further exploration.)

8 A (partial) example in two dimensions pbests Blue: 0 Green: 0 Red: 0 gbest: 0 (dots indicate agents, yellow star indicates the global optimum)

9 Begin with random velocities pbests Blue: 0 Green: 0 Red: 0 gbest:

10 Update particle positions pbests Blue: 1 at (6, 2) Green: 0 Red: 2 at (8, 7) gbest: 2 at (8, 7)

11 Update particle velocities pbests Blue: 1 at (6, 2) Green: 0 Red: 2 at (8, 7) gbest: 2 at (8, 7) For example, Blue s velocity in the horizontal dimension calculated by: velocity = * rand() * (6 6) + 2 * rand() * (8 6)

12 Update particle positions again and repeat pbests Blue: 3 at (8, 6) Green: 1 at (4, 1) Red: 2 at (8, 7) gbest: 3 at (8, 6)

13 Algorithm termination The solution to the optimisation problem is (obviously) derived from gbest Possible termination conditions that might be used: Solution exceeds some quality threshold Average velocity of agents falls below some threshold (agents may never become completely stationary) A certain number of iterations is completed

14 An example visualisation Velocities represented by trailing lines After some individual exploration, particles all converge on global optimum Particles can be seen oscillating about the optimum

15 Reference Kennedy, J.; Eberhart, R.;, "Particle swarm optimization," Neural Networks, Proceedings., IEEE International Conference on, vol.4, no., pp vol.4, Nov/Dec 1995 URL: 8&isnumber=10434

Particle Swarm Optimization. Abhishek Roy Friday Group Meeting Date:

Particle Swarm Optimization. Abhishek Roy Friday Group Meeting Date: Particle Swarm Optimization Abhishek Roy Friday Group Meeting Date: 05.25.2016 Cooperation example Basic Idea PSO is a robust stochastic optimization technique based on the movement and intelligence of

More information

Discrete evaluation and the particle swarm algorithm

Discrete evaluation and the particle swarm algorithm Volume 12 Discrete evaluation and the particle swarm algorithm Tim Hendtlass and Tom Rodgers Centre for Intelligent Systems and Complex Processes Swinburne University of Technology P. O. Box 218 Hawthorn

More information

ACTA UNIVERSITATIS APULENSIS No 11/2006

ACTA UNIVERSITATIS APULENSIS No 11/2006 ACTA UNIVERSITATIS APULENSIS No /26 Proceedings of the International Conference on Theory and Application of Mathematics and Informatics ICTAMI 25 - Alba Iulia, Romania FAR FROM EQUILIBRIUM COMPUTATION

More information

OPTIMAL DISPATCH OF REAL POWER GENERATION USING PARTICLE SWARM OPTIMIZATION: A CASE STUDY OF EGBIN THERMAL STATION

OPTIMAL DISPATCH OF REAL POWER GENERATION USING PARTICLE SWARM OPTIMIZATION: A CASE STUDY OF EGBIN THERMAL STATION OPTIMAL DISPATCH OF REAL POWER GENERATION USING PARTICLE SWARM OPTIMIZATION: A CASE STUDY OF EGBIN THERMAL STATION Onah C. O. 1, Agber J. U. 2 and Ikule F. T. 3 1, 2, 3 Department of Electrical and Electronics

More information

Binary Particle Swarm Optimization with Crossover Operation for Discrete Optimization

Binary Particle Swarm Optimization with Crossover Operation for Discrete Optimization Binary Particle Swarm Optimization with Crossover Operation for Discrete Optimization Deepak Singh Raipur Institute of Technology Raipur, India Vikas Singh ABV- Indian Institute of Information Technology

More information

Particle swarm optimization (PSO): a potentially useful tool for chemometrics?

Particle swarm optimization (PSO): a potentially useful tool for chemometrics? Particle swarm optimization (PSO): a potentially useful tool for chemometrics? Federico Marini 1, Beata Walczak 2 1 Sapienza University of Rome, Rome, Italy 2 Silesian University, Katowice, Poland Rome,

More information

B-Positive Particle Swarm Optimization (B.P.S.O)

B-Positive Particle Swarm Optimization (B.P.S.O) Int. J. Com. Net. Tech. 1, No. 2, 95-102 (2013) 95 International Journal of Computing and Network Technology http://dx.doi.org/10.12785/ijcnt/010201 B-Positive Particle Swarm Optimization (B.P.S.O) Muhammad

More information

Distributed Particle Swarm Optimization

Distributed Particle Swarm Optimization Distributed Particle Swarm Optimization Salman Kahrobaee CSCE 990 Seminar Main Reference: A Comparative Study of Four Parallel and Distributed PSO Methods Leonardo VANNESCHI, Daniele CODECASA and Giancarlo

More information

Discrete Evaluation and the Particle Swarm Algorithm.

Discrete Evaluation and the Particle Swarm Algorithm. Abstract Discrete Evaluation and the Particle Swarm Algorithm. Tim Hendtlass and Tom Rodgers, Centre for Intelligent Systems and Complex Processes, Swinburne University of Technology, P. O. Box 218 Hawthorn

More information

A Particle Swarm Optimization (PSO) Primer

A Particle Swarm Optimization (PSO) Primer A Particle Swarm Optimization (PSO) Primer With Applications Brian Birge Overview Introduction Theory Applications Computational Intelligence Summary Introduction Subset of Evolutionary Computation Genetic

More information

ARTIFICIAL INTELLIGENCE

ARTIFICIAL INTELLIGENCE BABEŞ-BOLYAI UNIVERSITY Faculty of Computer Science and Mathematics ARTIFICIAL INTELLIGENCE Solving search problems Informed local search strategies Nature-inspired algorithms March, 2017 2 Topics A. Short

More information

Application of Teaching Learning Based Optimization for Size and Location Determination of Distributed Generation in Radial Distribution System.

Application of Teaching Learning Based Optimization for Size and Location Determination of Distributed Generation in Radial Distribution System. Application of Teaching Learning Based Optimization for Size and Location Determination of Distributed Generation in Radial Distribution System. Khyati Mistry Electrical Engineering Department. Sardar

More information

CAPACITOR PLACEMENT USING FUZZY AND PARTICLE SWARM OPTIMIZATION METHOD FOR MAXIMUM ANNUAL SAVINGS

CAPACITOR PLACEMENT USING FUZZY AND PARTICLE SWARM OPTIMIZATION METHOD FOR MAXIMUM ANNUAL SAVINGS CAPACITOR PLACEMENT USING FUZZY AND PARTICLE SWARM OPTIMIZATION METHOD FOR MAXIMUM ANNUAL SAVINGS M. Damodar Reddy and V. C. Veera Reddy Department of Electrical and Electronics Engineering, S.V. University,

More information

V-Formation as Optimal Control

V-Formation as Optimal Control V-Formation as Optimal Control Ashish Tiwari SRI International, Menlo Park, CA, USA BDA, July 25 th, 2016 Joint work with Junxing Yang, Radu Grosu, and Scott A. Smolka Outline Introduction The V-Formation

More information

Optimal Placement and Sizing of Distributed Generation for Power Loss Reduction using Particle Swarm Optimization

Optimal Placement and Sizing of Distributed Generation for Power Loss Reduction using Particle Swarm Optimization Available online at www.sciencedirect.com Energy Procedia 34 (2013 ) 307 317 10th Eco-Energy and Materials Science and Engineering (EMSES2012) Optimal Placement and Sizing of Distributed Generation for

More information

Secondary Frequency Control of Microgrids In Islanded Operation Mode and Its Optimum Regulation Based on the Particle Swarm Optimization Algorithm

Secondary Frequency Control of Microgrids In Islanded Operation Mode and Its Optimum Regulation Based on the Particle Swarm Optimization Algorithm International Academic Institute for Science and Technology International Academic Journal of Science and Engineering Vol. 3, No. 1, 2016, pp. 159-169. ISSN 2454-3896 International Academic Journal of

More information

Available online at ScienceDirect. Procedia Computer Science 20 (2013 ) 90 95

Available online at  ScienceDirect. Procedia Computer Science 20 (2013 ) 90 95 Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 20 (2013 ) 90 95 Complex Adaptive Systems, Publication 3 Cihan H. Dagli, Editor in Chief Conference Organized by Missouri

More information

Research Article Optimum Barrier Height for SiC Schottky Barrier Diode

Research Article Optimum Barrier Height for SiC Schottky Barrier Diode ISRN Electronics Volume 2013, Article ID 528094, 5 pages http://dx.doi.org/10.1155/2013/528094 Research Article Optimum Barrier Height for SiC Schottky Barrier Diode Alaa El-Din Sayed Hafez and Mohamed

More information

Applying Particle Swarm Optimization to Adaptive Controller Leandro dos Santos Coelho 1 and Fabio A. Guerra 2

Applying Particle Swarm Optimization to Adaptive Controller Leandro dos Santos Coelho 1 and Fabio A. Guerra 2 Applying Particle Swarm Optimization to Adaptive Controller Leandro dos Santos Coelho 1 and Fabio A. Guerra 2 1 Production and Systems Engineering Graduate Program, PPGEPS Pontifical Catholic University

More information

Fuzzy adaptive catfish particle swarm optimization

Fuzzy adaptive catfish particle swarm optimization ORIGINAL RESEARCH Fuzzy adaptive catfish particle swarm optimization Li-Yeh Chuang, Sheng-Wei Tsai, Cheng-Hong Yang. Institute of Biotechnology and Chemical Engineering, I-Shou University, Kaohsiung, Taiwan

More information

An Adaptive Approach to Posistioning And Optimize Size of DG Source to Minimise Power Loss in Distribution Network

An Adaptive Approach to Posistioning And Optimize Size of DG Source to Minimise Power Loss in Distribution Network International Journal of Engineering Research and Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 12, Issue 10 (October 2016), PP.52-57 An Adaptive Approach to Posistioning And Optimize

More information

Computational Intelligence Methods

Computational Intelligence Methods Computational Intelligence Methods Ant Colony Optimization, Partical Swarm Optimization Pavel Kordík, Martin Šlapák Katedra teoretické informatiky FIT České vysoké učení technické v Praze MI-MVI, ZS 2011/12,

More information

Optimal tunning of lead-lag and fuzzy logic power system stabilizers using particle swarm optimization

Optimal tunning of lead-lag and fuzzy logic power system stabilizers using particle swarm optimization Available online at www.sciencedirect.com Expert Systems with Applications Expert Systems with Applications xxx (2008) xxx xxx www.elsevier.com/locate/eswa Optimal tunning of lead-lag and fuzzy logic power

More information

Selected paper. Particle Swarm Optimization Based Technique for Optimal Placement of Overcurrent Relay in a Power System

Selected paper. Particle Swarm Optimization Based Technique for Optimal Placement of Overcurrent Relay in a Power System Amir Syazani Saidan 1,*, Nur Ashida Salim 2, Muhd Azri Abdul Razak 2 J. Electrical Systems Special issue AMPE2015 Selected paper Particle Swarm Optimization Based Technique for Optimal Placement of Overcurrent

More information

Comparison of Loss Sensitivity Factor & Index Vector methods in Determining Optimal Capacitor Locations in Agricultural Distribution

Comparison of Loss Sensitivity Factor & Index Vector methods in Determining Optimal Capacitor Locations in Agricultural Distribution 6th NATIONAL POWER SYSTEMS CONFERENCE, 5th-7th DECEMBER, 200 26 Comparison of Loss Sensitivity Factor & Index Vector s in Determining Optimal Capacitor Locations in Agricultural Distribution K.V.S. Ramachandra

More information

Regrouping Particle Swarm Optimization: A New Global Optimization Algorithm with Improved Performance Consistency Across Benchmarks

Regrouping Particle Swarm Optimization: A New Global Optimization Algorithm with Improved Performance Consistency Across Benchmarks Regrouping Particle Swarm Optimization: A New Global Optimization Algorithm with Improved Performance Consistency Across Benchmarks George I. Evers Advisor: Dr. Mounir Ben Ghalia Electrical Engineering

More information

The Efficiency of Particle Swarm Optimization Applied on Fuzzy Logic DC Motor Speed Control

The Efficiency of Particle Swarm Optimization Applied on Fuzzy Logic DC Motor Speed Control SERBIAN JOURNAL OF ELECTRICAL ENGINEERING Vol. 5, No. 2, November 2008, 247-262 The Efficiency of Particle Swarm Optimization Applied on Fuzzy Logic DC Motor Speed Control Boumediene Allaoua 1, Abdessalam

More information

ON THE USE OF RANDOM VARIABLES IN PARTICLE SWARM OPTIMIZATIONS: A COMPARATIVE STUDY OF GAUSSIAN AND UNIFORM DISTRIBUTIONS

ON THE USE OF RANDOM VARIABLES IN PARTICLE SWARM OPTIMIZATIONS: A COMPARATIVE STUDY OF GAUSSIAN AND UNIFORM DISTRIBUTIONS J. of Electromagn. Waves and Appl., Vol. 23, 711 721, 2009 ON THE USE OF RANDOM VARIABLES IN PARTICLE SWARM OPTIMIZATIONS: A COMPARATIVE STUDY OF GAUSSIAN AND UNIFORM DISTRIBUTIONS L. Zhang, F. Yang, and

More information

Optimization of PI Parameters for Speed Controller of a Permanent Magnet Synchronous Motor by using Particle Swarm Optimization Technique

Optimization of PI Parameters for Speed Controller of a Permanent Magnet Synchronous Motor by using Particle Swarm Optimization Technique Optimization of PI Parameters for Speed Controller of a Permanent Magnet Synchronous Motor by using Particle Swarm Optimization Technique Aiffah Mohammed 1, Wan Salha Saidon 1, Muhd Azri Abdul Razak 2,

More information

CHAPTER 3 FUZZIFIED PARTICLE SWARM OPTIMIZATION BASED DC- OPF OF INTERCONNECTED POWER SYSTEMS

CHAPTER 3 FUZZIFIED PARTICLE SWARM OPTIMIZATION BASED DC- OPF OF INTERCONNECTED POWER SYSTEMS 51 CHAPTER 3 FUZZIFIED PARTICLE SWARM OPTIMIZATION BASED DC- OPF OF INTERCONNECTED POWER SYSTEMS 3.1 INTRODUCTION Optimal Power Flow (OPF) is one of the most important operational functions of the modern

More information

Three Steps toward Tuning the Coordinate Systems in Nature-Inspired Optimization Algorithms

Three Steps toward Tuning the Coordinate Systems in Nature-Inspired Optimization Algorithms Three Steps toward Tuning the Coordinate Systems in Nature-Inspired Optimization Algorithms Yong Wang and Zhi-Zhong Liu School of Information Science and Engineering Central South University ywang@csu.edu.cn

More information

Reactive Power Contribution of Multiple STATCOM using Particle Swarm Optimization

Reactive Power Contribution of Multiple STATCOM using Particle Swarm Optimization Reactive Power Contribution of Multiple STATCOM using Particle Swarm Optimization S. Uma Mageswaran 1, Dr.N.O.Guna Sehar 2 1 Assistant Professor, Velammal Institute of Technology, Anna University, Chennai,

More information

Power Electronic Circuits Design: A Particle Swarm Optimization Approach *

Power Electronic Circuits Design: A Particle Swarm Optimization Approach * Power Electronic Circuits Design: A Particle Swarm Optimization Approach * Jun Zhang, Yuan Shi, and Zhi-hui Zhan ** Department of Computer Science, Sun Yat-sen University, China, 510275 junzhang@ieee.org

More information

A Fast Method for Embattling Optimization of Ground-Based Radar Surveillance Network

A Fast Method for Embattling Optimization of Ground-Based Radar Surveillance Network A Fast Method for Embattling Optimization of Ground-Based Radar Surveillance Network JIANG Hai University of Chinese Academy of Sciences National Astronomical Observatories, Chinese Academy of Sciences

More information

WIND SPEED ESTIMATION IN SAUDI ARABIA USING THE PARTICLE SWARM OPTIMIZATION (PSO)

WIND SPEED ESTIMATION IN SAUDI ARABIA USING THE PARTICLE SWARM OPTIMIZATION (PSO) WIND SPEED ESTIMATION IN SAUDI ARABIA USING THE PARTICLE SWARM OPTIMIZATION (PSO) Mohamed Ahmed Mohandes Shafique Rehman King Fahd University of Petroleum & Minerals Saeed Badran Electrical Engineering

More information

On Optimal Power Flow

On Optimal Power Flow On Optimal Power Flow K. C. Sravanthi #1, Dr. M. S. Krishnarayalu #2 # Department of Electrical and Electronics Engineering V R Siddhartha Engineering College, Vijayawada, AP, India Abstract-Optimal Power

More information

Artificial Intelligence Based Approach for Identification of Current Transformer Saturation from Faults in Power Transformers

Artificial Intelligence Based Approach for Identification of Current Transformer Saturation from Faults in Power Transformers 37 pp.37:46 Artificial Intelligence Based Approach for Identification of Current Transformer Saturation from Faults in Power Transformers A. R. Moradi 1, Y. Alinejad Beromi 2, K. Kiani 3, Z. Moravej 4

More information

Beta Damping Quantum Behaved Particle Swarm Optimization

Beta Damping Quantum Behaved Particle Swarm Optimization Beta Damping Quantum Behaved Particle Swarm Optimization Tarek M. Elbarbary, Hesham A. Hefny, Atef abel Moneim Institute of Statistical Studies and Research, Cairo University, Giza, Egypt tareqbarbary@yahoo.com,

More information

OPTIMAL LOCATION AND SIZING OF DISTRIBUTED GENERATOR IN RADIAL DISTRIBUTION SYSTEM USING OPTIMIZATION TECHNIQUE FOR MINIMIZATION OF LOSSES

OPTIMAL LOCATION AND SIZING OF DISTRIBUTED GENERATOR IN RADIAL DISTRIBUTION SYSTEM USING OPTIMIZATION TECHNIQUE FOR MINIMIZATION OF LOSSES 780 OPTIMAL LOCATIO AD SIZIG OF DISTRIBUTED GEERATOR I RADIAL DISTRIBUTIO SYSTEM USIG OPTIMIZATIO TECHIQUE FOR MIIMIZATIO OF LOSSES A. Vishwanadh 1, G. Sasi Kumar 2, Dr. D. Ravi Kumar 3 1 (Department of

More information

A Novel Approach for Complete Identification of Dynamic Fractional Order Systems Using Stochastic Optimization Algorithms and Fractional Calculus

A Novel Approach for Complete Identification of Dynamic Fractional Order Systems Using Stochastic Optimization Algorithms and Fractional Calculus 5th International Conference on Electrical and Computer Engineering ICECE 2008, 20-22 December 2008, Dhaka, Bangladesh A Novel Approach for Complete Identification of Dynamic Fractional Order Systems Using

More information

Tuning of Extended Kalman Filter for nonlinear State Estimation

Tuning of Extended Kalman Filter for nonlinear State Estimation OSR Journal of Computer Engineering (OSR-JCE) e-ssn: 78-0661,p-SSN: 78-877, Volume 18, ssue 5, Ver. V (Sep. - Oct. 016), PP 14-19 www.iosrjournals.org Tuning of Extended Kalman Filter for nonlinear State

More information

Application of GA and PSO Tuned Fuzzy Controller for AGC of Three Area Thermal- Thermal-Hydro Power System

Application of GA and PSO Tuned Fuzzy Controller for AGC of Three Area Thermal- Thermal-Hydro Power System International Journal of Computer Theory and Engineering, Vol. 2, No. 2 April, 2 793-82 Application of GA and PSO Tuned Fuzzy Controller for AGC of Three Area Thermal- Thermal-Hydro Power System S. K.

More information

International Journal of Scientific & Engineering Research, Volume 8, Issue 1, January-2017 ISSN

International Journal of Scientific & Engineering Research, Volume 8, Issue 1, January-2017 ISSN ISSN 2229-5518 33 Voltage Regulation for a Photovoltaic System Connected to Grid by Using a Swarm Optimization Techniques Ass.prof. Dr.Mohamed Ebrahim El sayed Dept. of Electrical Engineering Al-Azhar

More information

Solving Numerical Optimization Problems by Simulating Particle-Wave Duality and Social Information Sharing

Solving Numerical Optimization Problems by Simulating Particle-Wave Duality and Social Information Sharing International Conference on Artificial Intelligence (IC-AI), Las Vegas, USA, 2002: 1163-1169 Solving Numerical Optimization Problems by Simulating Particle-Wave Duality and Social Information Sharing Xiao-Feng

More information

PARTICLE SWARM OPTIMIZATION FOR SOLVING A CLASS OF TYPE-1 AND TYPE-2 FUZZY NONLINEAR EQUATIONS

PARTICLE SWARM OPTIMIZATION FOR SOLVING A CLASS OF TYPE-1 AND TYPE-2 FUZZY NONLINEAR EQUATIONS JAISCR, 2018, Vol. 8, No. 2, pp. 103 110 10.1515/jaiscr-2018-0007 PARTICLE SWARM OPTIMIZATION FOR SOLVING A CLASS OF TYPE-1 AND TYPE-2 FUZZY NONLINEAR EQUATIONS Sheriff Sadiqbatcha 1, Saeed Jafarzadeh

More information

A PSO Approach for Optimum Design of Multivariable PID Controller for nonlinear systems

A PSO Approach for Optimum Design of Multivariable PID Controller for nonlinear systems A PSO Approach for Optimum Design of Multivariable PID Controller for nonlinear systems Taeib Adel Email: taeibadel@live.fr Ltaeif Ali Email: ltaief24@yahoo.fr Chaari Abdelkader Email: nabile.chaari@yahoo.fr

More information

OPTIMAL POWER FLOW BASED ON PARTICLE SWARM OPTIMIZATION

OPTIMAL POWER FLOW BASED ON PARTICLE SWARM OPTIMIZATION U.P.B. Sci. Bull., Series C, Vol. 78, Iss. 3, 2016 ISSN 2286-3540 OPTIMAL POWER FLOW BASED ON PARTICLE SWARM OPTIMIZATION Layth AL-BAHRANI 1, Virgil DUMBRAVA 2 Optimal Power Flow (OPF) is one of the most

More information

Nonlinear Process Identification Using Fuzzy Wavelet Neural Network Based on Particle Swarm Optimization Algorithm

Nonlinear Process Identification Using Fuzzy Wavelet Neural Network Based on Particle Swarm Optimization Algorithm J. Basic. Appl. Sci. Res., 3(5)30-309, 013 013, TextRoad Publication ISSN 090-4304 Journal of Basic and Applied Scientific Research www.textroad.com Nonlinear Process Identification Using Fuzzy Wavelet

More information

SOULTION TO CONSTRAINED ECONOMIC LOAD DISPATCH

SOULTION TO CONSTRAINED ECONOMIC LOAD DISPATCH SOULTION TO CONSTRAINED ECONOMIC LOAD DISPATCH SANDEEP BEHERA (109EE0257) Department of Electrical Engineering National Institute of Technology, Rourkela SOLUTION TO CONSTRAINED ECONOMIC LOAD DISPATCH

More information

Three Steps toward Tuning the Coordinate Systems in Nature-Inspired Optimization Algorithms

Three Steps toward Tuning the Coordinate Systems in Nature-Inspired Optimization Algorithms Three Steps toward Tuning the Coordinate Systems in Nature-Inspired Optimization Algorithms Yong Wang and Zhi-Zhong Liu School of Information Science and Engineering Central South University ywang@csu.edu.cn

More information

A PSO APPROACH FOR PREVENTIVE MAINTENANCE SCHEDULING OPTIMIZATION

A PSO APPROACH FOR PREVENTIVE MAINTENANCE SCHEDULING OPTIMIZATION 2009 International Nuclear Atlantic Conference - INAC 2009 Rio de Janeiro,RJ, Brazil, September27 to October 2, 2009 ASSOCIAÇÃO BRASILEIRA DE ENERGIA NUCLEAR - ABEN ISBN: 978-85-99141-03-8 A PSO APPROACH

More information

Egocentric Particle Swarm Optimization

Egocentric Particle Swarm Optimization Egocentric Particle Swarm Optimization Foundations of Evolutionary Computation Mandatory Project 1 Magnus Erik Hvass Pedersen (971055) February 2005, Daimi, University of Aarhus 1 Introduction The purpose

More information

Project 6 - Calculating π and using building models for data

Project 6 - Calculating π and using building models for data Project 6 - Calculating π and using building models for data MTH337 - Fall 2018 Due date: November 29, 2018 Instructor - Rahul Kashyap Part 1 - Calculating the value of π The mathematical constant π is

More information

A PARTICLE SWARM OPTIMIZATION TO OPTIMAL SHUNT-CAPACITOR PLACEMENT IN RADIAL DISTRIBUTION SYSTEMS

A PARTICLE SWARM OPTIMIZATION TO OPTIMAL SHUNT-CAPACITOR PLACEMENT IN RADIAL DISTRIBUTION SYSTEMS ISSN (Print) : 30 3765 ISSN (Online): 78 8875 (An ISO 397: 007 Certified Organization) ol., Issue 0, October 03 A PARTICLE SWARM OPTIMIZATION TO OPTIMAL SHUNT-CAPACITOR PLACEMENT IN RADIAL DISTRIBUTION

More information

Analyses of Guide Update Approaches for Vector Evaluated Particle Swarm Optimisation on Dynamic Multi-Objective Optimisation Problems

Analyses of Guide Update Approaches for Vector Evaluated Particle Swarm Optimisation on Dynamic Multi-Objective Optimisation Problems WCCI 22 IEEE World Congress on Computational Intelligence June, -5, 22 - Brisbane, Australia IEEE CEC Analyses of Guide Update Approaches for Vector Evaluated Particle Swarm Optimisation on Dynamic Multi-Objective

More information

Communication, Leadership, Publicity and Group Formation in Particle Swarms

Communication, Leadership, Publicity and Group Formation in Particle Swarms Communication, Leadership, Publicity and Group Formation in Particle Swarms Riccardo Poli, William B. Langdon, Paul Marrow, Jim Kennedy, Maurice Clerc, Dan Bratton, and Nick Holden Department of Computer

More information

PARTICLE swarm optimization (PSO) is one powerful and. A Competitive Swarm Optimizer for Large Scale Optimization

PARTICLE swarm optimization (PSO) is one powerful and. A Competitive Swarm Optimizer for Large Scale Optimization IEEE TRANSACTIONS ON CYBERNETICS, VOL. XX, NO. X, XXXX XXXX 1 A Competitive Swarm Optimizer for Large Scale Optimization Ran Cheng and Yaochu Jin, Senior Member, IEEE Abstract In this paper, a novel competitive

More information

STUDIES of the behaviour of social insects and animals

STUDIES of the behaviour of social insects and animals IJATS INVITED SESSION FOR EDITORS :: INTERNATIONAL JOURNAL OF AGENT TECHNOLOGIES AND SYSTEMS, 6(2), 1-31, APRIL-JUNE 2014 1 Penguins Huddling Optimisation Mohammad Majid al-rifaie Abstract In our everyday

More information

Nature inspired optimization technique for the design of band stop FIR digital filter

Nature inspired optimization technique for the design of band stop FIR digital filter Nature inspired optimization technique for the design of band stop FIR digital filter Dilpreet Kaur, 2 Balraj Singh M.Tech (Scholar), 2 Associate Professor (ECE), 2 (Department of Electronics and Communication

More information

Computational Intelligence in Product-line Optimization

Computational Intelligence in Product-line Optimization Computational Intelligence in Product-line Optimization Simulations and Applications Peter Kurz peter.kurz@tns-global.com June 2017 Restricted use Restricted use Computational Intelligence in Product-line

More information

STEPPED-FREQUENCY ISAR MOTION COMPENSATION USING PARTICLE SWARM OPTIMIZATION WITH AN ISLAND MODEL

STEPPED-FREQUENCY ISAR MOTION COMPENSATION USING PARTICLE SWARM OPTIMIZATION WITH AN ISLAND MODEL Progress In Electromagnetics Research, PIER 85, 25 37, 2008 STEPPED-FREQUENCY ISAR MOTION COMPENSATION USING PARTICLE SWARM OPTIMIZATION WITH AN ISLAND MODEL S. H. Park and H. T. Kim Department of Electronic

More information

Artificial Immune System Based DSTATCOM Control for an Electric Ship Power System

Artificial Immune System Based DSTATCOM Control for an Electric Ship Power System Artificial Immune System Based DSTATCOM Control for an Electric Ship Power System Pinaki Mitra and Ganesh K. Venayagamoorthy Real-Time Power and Intelligent Systems Laboratory, Department of Electrical

More information

Situation. The XPS project. PSO publication pattern. Problem. Aims. Areas

Situation. The XPS project. PSO publication pattern. Problem. Aims. Areas Situation The XPS project we are looking at a paradigm in its youth, full of potential and fertile with new ideas and new perspectives Researchers in many countries are experimenting with particle swarms

More information

The Parameters Selection of PSO Algorithm influencing On performance of Fault Diagnosis

The Parameters Selection of PSO Algorithm influencing On performance of Fault Diagnosis The Parameters Selection of Algorithm influencing On performance of Fault Diagnosis Yan HE,a, Wei Jin MA and Ji Ping ZHANG School of Mechanical Engineering and Power Engineer North University of China,

More information

A NETWORK TRAFFIC PREDICTION MODEL BASED ON QUANTUM INSPIRED PSO AND WAVELET NEURAL NETWORK. Kun Zhang

A NETWORK TRAFFIC PREDICTION MODEL BASED ON QUANTUM INSPIRED PSO AND WAVELET NEURAL NETWORK. Kun Zhang Mathematical and Computational Applications, Vol. 19, No. 3, pp. 218-229, 2014 A NETWORK TRAFFIC PREDICTION MODEL BASED ON QUANTUM INSPIRED PSO AND WAVELET NEURAL NETWORK Kun Zhang Department of Mathematics,

More information

Integrated PSO-SQP technique for Short-term Hydrothermal Scheduling

Integrated PSO-SQP technique for Short-term Hydrothermal Scheduling Integrated PSO-SQP technique for Short-term Hydrothermal Scheduling Shashank Gupta 1, Nitin Narang 2 Abstract his paper presents short-term fixed and variable head hydrotherml scheduling. An integrated

More information

Particle swarm optimization approach to portfolio optimization

Particle swarm optimization approach to portfolio optimization Nonlinear Analysis: Real World Applications 10 (2009) 2396 2406 Contents lists available at ScienceDirect Nonlinear Analysis: Real World Applications journal homepage: www.elsevier.com/locate/nonrwa Particle

More information

THE APPLICATION OF PARTICLE SWARM OPTIMISATION TO SANDWICH MATERIAL DESIGN

THE APPLICATION OF PARTICLE SWARM OPTIMISATION TO SANDWICH MATERIAL DESIGN THE APPLICATION OF PARTICLE SWARM OPTIMISATION TO SANDWICH MATERIAL DESIGN Craig W. Hudson, Joe J. Carruthers and A. Mark Robinson NewRail School of Mechanical & Systems Engineering, Newcastle University,

More information

Short-term Wind Prediction Using an Ensemble of Particle Swarm Optimised FIR Filters

Short-term Wind Prediction Using an Ensemble of Particle Swarm Optimised FIR Filters Short-term Wind Prediction Using an Ensemble of Particle Swarm Optimised FIR Filters J Dowell, S Weiss Wind Energy Systems Centre for Doctoral Training, University of Strathclyde, Glasgow Department of

More information

The particle swarm optimization algorithm: convergence analysis and parameter selection

The particle swarm optimization algorithm: convergence analysis and parameter selection Information Processing Letters 85 (2003) 317 325 www.elsevier.com/locate/ipl The particle swarm optimization algorithm: convergence analysis and parameter selection Ioan Cristian Trelea INA P-G, UMR Génie

More information

ENHANCING THE CUCKOO SEARCH WITH LEVY FLIGHT THROUGH POPULATION ESTIMATION

ENHANCING THE CUCKOO SEARCH WITH LEVY FLIGHT THROUGH POPULATION ESTIMATION ENHANCING THE CUCKOO SEARCH WITH LEVY FLIGHT THROUGH POPULATION ESTIMATION Nazri Mohd Nawi, Shah Liyana Shahuddin, Muhammad Zubair Rehman and Abdullah Khan Soft Computing and Data Mining Centre, Faculty

More information

Self-Organization Hypothesis. Lecture 18

Self-Organization Hypothesis. Lecture 18 Self-Organization Hypothesis Lecture 18 Simple attraction & repulsion rules generate schooling behavior positive feedback: brings individuals together negative feedback: but not too close Rules rely on

More information

UNIVERSITY OF NAIROBI

UNIVERSITY OF NAIROBI UNIVERSITY OF NAIROBI FACULTY OF ENGINEERING DEPARTMENT OF ELECTRICAL AND INFORMATION ENGINEEERING HYDROTHERMAL ECONOMIC DISPATCH USING PARTICLE SWARM OPTIMIZATION (P.S.O) PROJECT INDEX: 055 SUBMITTED

More information

Differential Evolution Based Particle Swarm Optimization

Differential Evolution Based Particle Swarm Optimization Differential Evolution Based Particle Swarm Optimization Mahamed G.H. Omran Department of Computer Science Gulf University of Science and Technology Kuwait mjomran@gmail.com Andries P. Engelbrecht Department

More information

Automatic Generation Control of interconnected Hydro Thermal system by using APSO scheme

Automatic Generation Control of interconnected Hydro Thermal system by using APSO scheme IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331 PP 50-57 www.iosrjournals.org Automatic Generation Control of interconnected Hydro Thermal system

More information

Application of Meta-heuristic Methods to Robust FACTS Controllers Design.

Application of Meta-heuristic Methods to Robust FACTS Controllers Design. Application of Meta-heuristic Methods to Robust FACS Controllers Design. Lamia Kartobi 1 and Mohamed Boudour 2 1 Department of Electrical Engineering U.S..H.B. El Alia, BP.32, Bab Ezzouar, 16111, Algiers,

More information

Swarm intelligence approach to the solution of optimal power flow

Swarm intelligence approach to the solution of optimal power flow J. Indian Inst. Sci., Sept. Oct. 2006, 86, 439 455 Indian Institute of Science. Swarm intelligence approach to the solution of optimal power flow Department of Electrical Engineering, Indian Institute

More information

Optimization of Threshold for Energy Based Spectrum Sensing Using Differential Evolution

Optimization of Threshold for Energy Based Spectrum Sensing Using Differential Evolution Wireless Engineering and Technology 011 130-134 doi:10.436/wet.011.3019 Published Online July 011 (http://www.scirp.org/journal/wet) Optimization of Threshold for Energy Based Spectrum Sensing Using Differential

More information

A self-guided Particle Swarm Optimization with Independent Dynamic Inertia Weights Setting on Each Particle

A self-guided Particle Swarm Optimization with Independent Dynamic Inertia Weights Setting on Each Particle Appl. Math. Inf. Sci. 7, No. 2, 545-552 (2013) 545 Applied Mathematics & Information Sciences An International Journal A self-guided Particle Swarm Optimization with Independent Dynamic Inertia Weights

More information

Vedant V. Sonar 1, H. D. Mehta 2. Abstract

Vedant V. Sonar 1, H. D. Mehta 2. Abstract Load Shedding Optimization in Power System Using Swarm Intelligence-Based Optimization Techniques Vedant V. Sonar 1, H. D. Mehta 2 1 Electrical Engineering Department, L.D. College of Engineering Ahmedabad,

More information

Limiting the Velocity in the Particle Swarm Optimization Algorithm

Limiting the Velocity in the Particle Swarm Optimization Algorithm Limiting the Velocity in the Particle Swarm Optimization Algorithm Julio Barrera 1, Osiris Álvarez-Bajo 2, Juan J. Flores 3, Carlos A. Coello Coello 4 1 Universidad Michoacana de San Nicolás de Hidalgo,

More information

Optimal Placement of Multi DG Unit in Distribution Systems Using Evolutionary Algorithms

Optimal Placement of Multi DG Unit in Distribution Systems Using Evolutionary Algorithms IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume, Issue 6 Ver. IV (Nov Dec. 2014), PP 47-52 www.iosrjournals.org Optimal Placement of Multi

More information

M. Rattan Department of Electronics and Communication Engineering Guru Nanak Dev Engineering College Ludhiana, Punjab, India

M. Rattan Department of Electronics and Communication Engineering Guru Nanak Dev Engineering College Ludhiana, Punjab, India Progress In Electromagnetics Research M, Vol. 2, 131 139, 2008 DESIGN OF A LINEAR ARRAY OF HALF WAVE PARALLEL DIPOLES USING PARTICLE SWARM OPTIMIZATION M. Rattan Department of Electronics and Communication

More information

Hybrid particle swarm algorithm for solving nonlinear constraint. optimization problem [5].

Hybrid particle swarm algorithm for solving nonlinear constraint. optimization problem [5]. Hybrid particle swarm algorithm for solving nonlinear constraint optimization problems BINGQIN QIAO, XIAOMING CHANG Computers and Software College Taiyuan University of Technology Department of Economic

More information

A Particle Swarm Optimization for Reactive Power Optimization

A Particle Swarm Optimization for Reactive Power Optimization ISSN (e): 2250 3005 Vol, 04 Issue, 11 November 2014 International Journal of Computational Engineering Research (IJCER) A Particle Swarm Optimization for Reactive Power Optimization Suresh Kumar 1, Sunil

More information

Artificial immune system based algorithms for optimization and self-tuning control in power systems

Artificial immune system based algorithms for optimization and self-tuning control in power systems Scholars' Mine Masters Theses Student Research & Creative Works 007 Artificial immune system based algorithms for optimization and self-tuning control in power systems Mani Hunjan Follow this and additional

More information

Abstract. 2. Dynamical model of power system

Abstract. 2. Dynamical model of power system Optimization Of Controller Parametersfornon-Linear Power Systems Using Different Optimization Techniques Rekha 1,Amit Kumar 2, A. K. Singh 3 1, 2 Assistant Professor, Electrical Engg. Dept. NIT Jamshedpur

More information

Crossing Genetic and Swarm Intelligence Algorithms to Generate Logic Circuits

Crossing Genetic and Swarm Intelligence Algorithms to Generate Logic Circuits Crossing Genetic and Swarm Intelligence Algorithms to Generate Logic Circuits Cecília Reis and J. A. Tenreiro Machado GECAD - Knowledge Engineering and Decision Support Group / Electrical Engineering Department

More information

Open Access Mathematical Model and IDPSO Algorithm Research on Dynamic Fleet Planning

Open Access Mathematical Model and IDPSO Algorithm Research on Dynamic Fleet Planning Send Orders for Reprints to reprints@benthamscience.ae 988 The Open Automation and Control Systems Journal, 2014, 6, 988-996 Open Access Mathematical Model and IDPSO Algorithm Research on Dynamic Fleet

More information

Outline. Ant Colony Optimization. Outline. Swarm Intelligence DM812 METAHEURISTICS. 1. Ant Colony Optimization Context Inspiration from Nature

Outline. Ant Colony Optimization. Outline. Swarm Intelligence DM812 METAHEURISTICS. 1. Ant Colony Optimization Context Inspiration from Nature DM812 METAHEURISTICS Outline Lecture 8 http://www.aco-metaheuristic.org/ 1. 2. 3. Marco Chiarandini Department of Mathematics and Computer Science University of Southern Denmark, Odense, Denmark

More information

SOLUTION TO ECONOMIC LOAD DISPATCH USING PSO

SOLUTION TO ECONOMIC LOAD DISPATCH USING PSO SOLUTION TO ECONOMIC LOAD DISPATCH USING PSO A thesis submitted in partial fulfillment of the requirements for the degree of Bachelor of Technology in Electrical Engineering By MAHESH PRASAD MISHRA,108ee007

More information

IOSR Journal of Engineering May. 2012, Vol. 2(5) pp:

IOSR Journal of Engineering May. 2012, Vol. 2(5) pp: Design of Particle Swarm Optimization Based PI Controller for an Isolated Wind - Diesel Hybrid Power System with Superconducting Magnetic Energy Storage Unit S.Lese 1, M.Mohamed Thameem Ansari 2, N.J.Vinoth

More information

International Research Journal of Engineering and Technology (IRJET) e-issn: Volume: 03 Issue: 03 Mar p-issn:

International Research Journal of Engineering and Technology (IRJET) e-issn: Volume: 03 Issue: 03 Mar p-issn: Optimum Size and Location of Distributed Generation and for Loss Reduction using different optimization technique in Power Distribution Network Renu Choudhary 1, Pushpendra Singh 2 1Student, Dept of electrical

More information

Power Quality improvement of Distribution System by Optimal Location and Size of DGs Using Particle Swarm Optimization

Power Quality improvement of Distribution System by Optimal Location and Size of DGs Using Particle Swarm Optimization 72 Power Quality improvement of Distribution System by Optimal Location and Size of DGs Using Particle Swarm Optimization Ankita Mishra 1, Arti Bhandakkar 2 1(PG Scholar, Department of Electrical & Electronics

More information

Regular paper. Particle Swarm Optimization Applied to the Economic Dispatch Problem

Regular paper. Particle Swarm Optimization Applied to the Economic Dispatch Problem Rafik Labdani Linda Slimani Tarek Bouktir Electrical Engineering Department, Oum El Bouaghi University, 04000 Algeria. rlabdani@yahoo.fr J. Electrical Systems 2-2 (2006): 95-102 Regular paper Particle

More information

Enhancement in Channel Equalization Using Particle Swarm Optimization Techniques

Enhancement in Channel Equalization Using Particle Swarm Optimization Techniques Circuits and Systems, 2016, 7, 4071-4084 http://www.scirp.org/journal/cs ISSN Online: 2153-1293 ISSN Print: 2153-1285 Enhancement in Channel Equalization Using Particle Swarm Optimization Techniques D.

More information

Particle Swarm Optimization with Velocity Adaptation

Particle Swarm Optimization with Velocity Adaptation In Proceedings of the International Conference on Adaptive and Intelligent Systems (ICAIS 2009), pp. 146 151, 2009. c 2009 IEEE Particle Swarm Optimization with Velocity Adaptation Sabine Helwig, Frank

More information

Standard Particle Swarm Optimisation

Standard Particle Swarm Optimisation Standard Particle Swarm Optimisation From 2006 to 2011 Maurice.Clerc@WriteMe.com 2012-09-23 version 1 Introduction Since 2006, three successive standard PSO versions have been put on line on the Particle

More information

Hybrid PSO-ANN Application for Improved Accuracy of Short Term Load Forecasting

Hybrid PSO-ANN Application for Improved Accuracy of Short Term Load Forecasting Hybrid PSO-ANN Application for Improved Accuracy of Short Term Load Forecasting A. G. ABDULLAH, G. M. SURANEGARA, D.L. HAKIM Electrical Engineering Education Department Indonesia University of Education

More information

2. Particle swarm optimization

2. Particle swarm optimization Quantum-Inspired Particle Swarm Optimization for Feature Selection and Parameter Optimization in Evolving Spiking Neural Networks for Classification Tasks 8 Haza Nuzly Abdull Hamed 1,2, Nikola K. Kasabov

More information