Solving Economic Load Dispatch Problems in Power Systems using Genetic Algorithm and Particle Swarm Optimization

Size: px
Start display at page:

Download "Solving Economic Load Dispatch Problems in Power Systems using Genetic Algorithm and Particle Swarm Optimization"

Transcription

1 Solving Economic Load Dispatch Problems in Power Systems using Genetic Algorithm and Particle Swarm Optimization Loveleen Kaur 1, Aashish Ranjan 2, S.Chatterji 3, and Amod Kumar 4 1 Asst. Professor, PEC University of Technology, Chandigarh, India 2 Student, PEC University of Technology, Chandigarh, India 3 Director, UCER, Gr Noida, Uttar Pradesh, India 4 Chief Scientist, CSIO, Chandigarh, India Abstract In this paper, comparative study of two methods, Particle Swarm Optimization (PSO) and Genetic Algorithm (GA) is used to solve Economic dispatch problem in power systems. The feasibility of both the methods is demonstrated for a six-generator system and a fifteen- generator system. The results from the experiments show that the PSO method gives a better quality solution to the Economic Dispatch problem than the Genetic Algorithm technique. Index Terms Power systems, Particle Swarm Optimization, Genetic Algorithm, Economic Dispatch. I. INTRODUCTION ECONOMIC Dispatch (ED) problem is one of the fundamental issues in the operation of Power Systems. In an interconnected Power System, the objective is to minimize the operating cost of the system without violating the system constraints. This means that the active and reactive power of the individual units is varied in such a manner that the total fuel cost of the system is minimum while meeting the total load demand on the system. This is known as the Optimal Power Flow (OPF) problem. In order to find the optimal solution of the OPF problem, the selected objective function is optimized (maximized or minimized). The objective function could be of different forms like fuel cost, transmission cost, and the system security. Usually, the total production cost is taken as an objective function. For the simplification of an OPF problem, the transmission losses are not considered. In actual practice, the transmission losses are taken into consideration. But, this makes the ED problem more complicated and a different solution procedure needs to be used to find the solution. Several factors like operating efficiencies of generators, fuel cost, and transmission losses, influence power generation at minimum cost. It is not necessary that the generator with the highest efficiency guarantees least cost of operation as it may be located at a place where the cost of the fuel is high. Likewise, if the load center is far-off from the plant, transmission losses would be quite high and hence the cost of operation would be high. Hence, the ED problem becomes the determination of the generation of individual plants such that the total cost of operation is least. There are a number of mathematical programming methods and optimization problem techniques for the determination of an optimal solution of an Economic Dispatch problem [1], [2], [18], [19]. Some of the Artificial Intelligence techniques like Hopfield Neural Networks are used to solve economic dispatch problem with transmission capacity constraints [3], [4]. Genetic Algorithms are adaptive metaheuristic search algorithm. Its source of inspiration is the process of natural selection, according to which, the competition among the individuals over limited resources results in fitter ones dominating over the weaker ones. It is based on bio-inspired operators like mutation, crossover, and selection. As compared to another popular method, called Simulated Annealing (SA), GA gives faster results due to its parallel search techniques. In GAs, a population of points at each iteration is generated. Among all these points, the best point converges towards the optimal solution. GA has been used for various types of optimization problems of power systems like feeder reconfiguration and placement of capacitors in the distribution system [1], [5]-[7]. 279 Loveleen Kaur, Aashish Ranjan, S.Chatterji, and Amod Kumar

2 In [5], Walters and Sheble make use of a GA-based algorithm to solve an ED problem for valve point discontinuities. Yalcinoz et al. use a neural network based approach for solving the ED problem under constrained transmission conditions [4]. Chen and Chang present a GA based approach for solving the ED problem in a large-scale system [8]. Through numerical results, they show that their proposed method is faster than the lambda-iteration method in a large-scale system. Fung et al. make use of Simulated Annealing (SA) and Tabu Search (TS) techniques in an integrated parallel Genetic Algorithm to solve the ED problem [9]. Yalcinoz et al. propose a new genetic approach based on arithmetic crossover for solving the problem of economic dispatch. They use elitism, arithmetic crossover and mutation in GA to find the solution of the ED problem more efficiently [10]. Although GA is widely used for solving the optimization problems, it suffers from various deficiencies. In GA, the crossover and mutation operations do not promise better fitness of successive population [11], [16]. Also, the performance of GA is further degraded by its premature convergence. Particle Swarm Optimization (PSO) is a computational technique which is used for solving the optimization problem. It was developed by Eberhart and Kennedy [17], [18]. This method is quite powerful in solving continuous nonlinear optimization problems [13]-[16], [19]. It generates solutions of higher quality with stable convergence characteristics. In [20], the authors present a PSO for the control of voltage and reactive power. Their method takes care of the voltage security by the use of continuation power flow and a contingency analysis technique. Neka et al. present the application of a hybrid PSO method for the solution of a practical distribution state estimation problem [21]. II. OVERVIEW OF PARTICLE SWARM OPTIMIZATION Particle Swarm optimization (PSO) is originally attributed to Kennedy and Eberhart. Its source of inspiration was the social behavior of a bird flock. In a swarm of birds looking for food, the birds adjust their position as per its own experience and the experience of its neighboring birds. This simulation is used for optimization of nonlinear multi-dimensional functions. Let x denotes the position of a particle and v denotes its flight velocity. In a d- dimensional space, pbest and gbest denote the previous best position of the particle and the best position obtained by all particles so far, respectively. The updated position and velocity of each particle can be calculated using its current velocity and its distance from the gbest as: New Velocity, v i (k+1) = w * v i (k) + C 1 * (pbest i x i (k)) + C 2 * (gbest x i (k)) New Position, x i (k + 1) = x i (k) + v i (k + 1) i particle index k discrete time index w inertia weight factor v i velocity of i th particle x i position of i th particle pbest i best position found by i th particle (personal best) gbest best position found by swarm (global best, best of personal bests) C 1, C 2 acceleration constant. With the addition of w, known as inertia weight factor, the PSO is modified. This inertia weight factor is added to provide the balance between global and local explorations. It helps in reducing the number of iterations. The constants, C 1 and C 2, known as acceleration constants, pull each particle towards the particle and global best positions. Lower values of C 1 and C 2 let the particles roam away from the target region while the higher values leads to their abrupt movement towards the target region. Typically, both C 1 and C 2 are given a value of 2. III. OVERVIEW OF GENETIC ALGORITHM Genetic Algorithm (GA) is an adaptive heuristic search algorithm. It is based on the evolutionary ideas of natural selection and genetics. According to the concept of natural selection, given by Charles Darwin, the competition among the individuals for limited resources leads to the domination of the fittest individuals over the weaker ones. GA is used for solving both constrained and unconstrained optimization problems. In GA, from a population of candidate solutions, individuals are 280 Loveleen Kaur, Aashish Ranjan, S.Chatterji, and Amod Kumar

3 randomly selected to be parents and they are used to produce children for next generation. Only the fittest among all the individuals will survive and reproduce, producing the next generation. In this way, the future generations will keep getting better than the previous generations. So, in an optimization problem, the objective function improves with each iteration. The nature of the problem decides the population size. Usually, the initial population is randomly generated, allowing the entire range of possible solutions. During each generation, individual solutions are chosen through a fitness-based process. In this process, the fitter solutions have a higher probability of getting selected (by the fitness function). The fitness function is problem dependent. It measures the quality of the represented solution. Sometimes, in some cases, it is difficult or impossible to define the fitness function. In that case, we can use simulation to determine the fitness function. After the selection of fitter solutions, a second generation population of solutions is generated. The second generation consists of three types of children: elite children, crossover children, and mutation children. Elite children are the ones with the best fitness level. Crossover children (solution) are produced by taking more than one parent solution. The mutation children (solution) are produced by changing one or more genes of a single parent. By producing a child solution using crossover and mutation, the new solution generated has several characteristics of its parents. Then again new parents are selected for producing new children and the process continues until a termination condition is reached. Some of the common terminating conditions are: 1) a solution satisfying minimum criteria is found 2) fixed number of generations reached 3) allocated computation time or money is reached 4) highest ranking solution s fitness is reached 5) A combination of above. If the stopping criteria are modified, the solution may change as per the new conditions. obtained are discussed and compared. Two different systems, having six and fifteen generators, are taken as the test system. For simplicity, the losses, ramp rate limits and the prohibited zones are not considered. Under the same evaluation function and individual definition, we perform 20 trials using the two methods and the quality of the solution is observed. 1) PSO Method: Population size = 100 Generations = 200 Inertia weight factor: w max = 0.9 and w min = 0.4 Acceleration constants: C 1 =2 and C 2 =2. 2) GA Method Population size = 100 Generations = 200 Crossover rate, P c =0.8 Mute rate, P m = 0.01 Case Study Example 1: Six-Unit system: The system consists of six generators and the total load demand on the system is 1263 MW. The characteristics of the six thermal units are given in table Ⅰ. The power outputs of the six generators are represented by P 1, P 2, P 3, P 4, P 5 and P 6. These values are randomly generated. The best solution obtained by applying these methods is shown in table Ⅱ. TABLE 1 GENERATING UNIT CAPACITY AND COEFFICIENTS IV. NUMERICAL EXAMPLES AND RESULTS The PSO and the GA method are used to solve an Economic Dispatch(ED) problem and the results 281 Loveleen Kaur, Aashish Ranjan, S.Chatterji, and Amod Kumar

4 TABLE II BEST SOLUTION OF 6-UNIT SYSTEM (BEST INDIVIDUAL) Unit Power PSO method GA method Output P 1 (MW) P 2 (MW) P 3 (MW) P 4 (MW) P 5 (MW) P 6 (MW) Total Power output (MW) Total Generation cost ($/hr) 15,276 15,276 TABLE Ⅲ COMPARISON BETWEEN BOTH METHODS (20 TRIALS) Generation cost ($) Max Min PSO GA Example 2: Fifteen-Unit System: The system consists of fifteen generators and the total load demand on the system is 2630 MW. The characteristics of the fifteen generators are given in table Ⅳ. The experimental results are shown in Tables V and VI. These results are found to satisfy the system constraints. TABLE Ⅳ GENERATING UNIT DATA TABLE Ⅴ BEST SOLUTION OF 15-UNIT SYSTEM (BEST INDIVIDUAL) Unit Power Output PSO method GA method P 1 (MW) P 2 (MW) P 3 (MW) P 4 (MW) P 5 (MW) P 6 (MW) P 7 (MW) P 8 (MW) P 9 (MW) P 10 (MW) P 11 (MW) P 12 (MW) P 13 (MW) P 14 (MW) P 15 (MW) Total Power output (MW) Total Generation cost($/hr) ,604 32,844 TABLE Ⅵ COMPARISON BETWEEN BOTH METHODS (20 TRIALS) Generation cost ($) Max Min PSO GA Loveleen Kaur, Aashish Ranjan, S.Chatterji, and Amod Kumar V. DISCUSSION AND CONCLUSION In this paper, Particle Swarm Optimization (PSO) and Genetic Algorithm (GA) have been successfully implemented to solve the Economic Dispatch problem with generator constraints. For simplicity, some of the nonlinear characteristics of the generator like ramp rate limits and valve point zones have not been considered. For the testing of the above two methods, six generator and a fifteen

5 generator systems have been used. The results obtained show that PSO gives higher quality solution than the GA. REFERENCES [1] A. Bakirtzis, V. Petridis, and S. Kazarlis, Genetic algorithm solution to the economic dispatch problem, Proc. Inst. Elect. Eng. Gen., Transm. Dist., vol. 141, no. 4, pp , July [2] F. N. Lee and A. M. Breipohl, Reserve constrained economic dispatch with prohibited operating zones, IEEE Trans. Power Syst., vol. 8, pp , Feb [3] C.-T. Su and G.-J. Chiou, A fast-computation hopfield method to eco-nomic dispatch of power systems, IEEE Trans. Power Syst., vol. 12, pp , Nov [4] T. Yalcinoz and M. J. Short, Neural networks approach for solving economic dispatch problem with transmission capacity constraints, IEEE Trans. Power Syst., vol. 13, pp , May [5] D. C. Walters and G. B. Sheble, Genetic algorithm solution of economic dispatch with valve point loading, IEEE Trans. Power Syst., vol. 8, pp , Aug [6] K. P. Wong and Y. W. Wong, Genetic and genetic/simulated Annealing approaches to economic dispatch, Proc. Inst. Elect. Eng., pt. C, vol. 141, no. 5, pp , Sept [7] G. B. Sheble and K. Brittig, Refined genetic algorithm Economic dispatch example, IEEE Trans. Power Syst., vol. 10, pp , Feb [8] P.-H. Chen and H.-C. Chang, "Large-Scale economic dispatch by genetic algorithm," IEEE Trans. Power Syst., vol. 10, pp , Nov [9] C. C. Fung, S. Y. Chow, and K. P. Wong, Solving the economic dis-patch problem with an integrated parallel genetic algorithm, in Proc. PowerCon Int. Conf., vol. 3, 2000, pp [10] T. Yalcionoz, H. Altun, and M. Uzam, Economic dispatch solution using a genetic algorithm based on arithmetic crossover, in Proc. IEEE Proto Power Tech. Conf., Proto, Portugal, Sept [11] D. B. Fogel, Evolutionary Computation: Toward a New Philosophy of Machine Intelligence, 2 ed. Piscataway, NJ: IEEE Press, [12] K. S. Swarup and S. Yamashiro, Unit commitment solution method-ology using genetic algorithm, IEEE Trans. Power Syst., vol. 17, pp , Feb [13] J. Kennedy and R. Eberhart, Particle swarm optimization, Proc. IEEE Int. Conf. Neural Networks, vol. IV, pp , [14] Y. Shi and R. Eberhart, A modified particle swarm optimizer, Proc. IEEE Int. Conf. Evol. Comput., pp , May [15] Y. Shi and R. C. Eberhart, "Empirical study of particle swarm optimization," in Proc. Congr. Evol. Comput., NJ, 1999, pp [16] R. C. Eberhart and Y. Shi, Comparison between genetic algorithms and particle swarm optimization, Proc. IEEE Int. Conf. Evol. Comput., pp , May [17] Eberhart, R. C., Dobbins, R. W., and Simpson, P. K. (1996), Computational Intelligence PC Tools, Boston: Academic Press. [18] Eberhart, R. C., and Kennedy, J. (1995), A new optimizer using particle swarm theory, Proc. Sixth International Symposium on Micro Machine and Human Science (Nagoya, Japan), IEEE Service Center, Piscataway, NJ, [19] P. J. Angeline, "Using selection to improve particle swarm optimization," Proc. IEEE Int. Conf. Evol. Comput., pp , May [20] H. Yoshida, K. Kawata, Y. Fukuyama, S. Takayama, and Y. Nakanishi, A particle swarm optimization for reactive power and voltage control considering voltage security assessment, IEEE Trans. Power Syst., vol. 15, pp , Nov [21] S. Naka, T. Genji, T. Yura, and Y. Fukuyama, Practical distribution state estimation using hybrid particle swarm optimization, Proc. IEEE Power Eng. Soc. Winter Meeting, vol. 2, pp , [22] H. Saadat, Power System Analysis. New York: McGraw-Hill, Loveleen Kaur, Aashish Ranjan, S.Chatterji, and Amod Kumar

A NEW APPROACH TO THE SOLUTION OF ECONOMIC DISPATCH USING PARTICLE SWARM OPTIMIZATION WITH SIMULATED ANNEALING

A NEW APPROACH TO THE SOLUTION OF ECONOMIC DISPATCH USING PARTICLE SWARM OPTIMIZATION WITH SIMULATED ANNEALING A NEW APPROACH TO THE SOLUTION OF ECONOMIC DISPATCH USING PARTICLE SWARM OPTIMIZATION WITH SIMULATED ANNEALING V.Karthikeyan 1 S.Senthilkumar 2 and V.J.Vijayalakshmi 3 1Department of Electronics and communication

More information

A NEW APPROACH TO SOLVE ECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATION

A NEW APPROACH TO SOLVE ECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATION A NEW APPROACH TO SOLVE ECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATION Manjeet Singh 1, Divesh Thareja 2 1 Department of Electrical and Electronics Engineering, Assistant Professor, HCTM Technical

More information

IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 20, NO. 4, NOVEMBER John G. Vlachogiannis and Kwang Y. Lee, Fellow, IEEE

IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 20, NO. 4, NOVEMBER John G. Vlachogiannis and Kwang Y. Lee, Fellow, IEEE IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 20, NO. 4, NOVEMBER 2005 1765 Determining Generator Contributions to Transmission System Using Parallel Vector Evaluated Particle Swarm Optimization John G. Vlachogiannis

More information

Dr. Ramesh Kumar, Nayan Kumar (Department of Electrical Engineering,NIT Patna, India, (Department of Electrical Engineering,NIT Uttarakhand, India,

Dr. Ramesh Kumar, Nayan Kumar (Department of Electrical Engineering,NIT Patna, India, (Department of Electrical Engineering,NIT Uttarakhand, India, Dr Ramesh Kumar, Nayan Kumar/ International Journal of Engineering Research and An Efficent Particle Swarm Optimisation (Epso) For Solving Economic Load Dispatch (Eld) Problems Dr Ramesh Kumar, Nayan Kumar

More information

MOST of power system optimization problems including

MOST of power system optimization problems including 34 IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 20, NO. 1, FEBRUARY 2005 A Particle Swarm Optimization for Economic Dispatch With Nonsmooth Cost Functions Jong-Bae Park, Member, IEEE, Ki-Song Lee, Joong-Rin

More information

Dynamic Economic Dispatch for Power Generation Using Hybrid optimization Algorithm

Dynamic Economic Dispatch for Power Generation Using Hybrid optimization Algorithm Dynamic Economic Dispatch for Power Generation Using Hybrid optimization Algorithm G.Karthika 1, Mr.M.Vigneshwaran, M.E., 2 PG Scholar, M. Kumarasamy College of Engineering, Karur, Tamilnadu, India 1 Assistant

More information

Reconfiguration Optimization for Loss Reduction in Distribution Networks using Hybrid PSO algorithm and Fuzzy logic

Reconfiguration Optimization for Loss Reduction in Distribution Networks using Hybrid PSO algorithm and Fuzzy logic Bulletin of Environment, Pharmacology and Life Sciences Bull. Env. Pharmacol. Life Sci., Vol 4 [9] August 2015: 115-120 2015 Academy for Environment and Life Sciences, India Online ISSN 2277-1808 Journal

More information

Hybrid Particle Swarm-Based-Simulated Annealing Optimization Techniques

Hybrid Particle Swarm-Based-Simulated Annealing Optimization Techniques Hybrid Particle Swarm-Based-Simulated Annealing Optimization Techniques Nasser Sadati Abstract Particle Swarm Optimization (PSO) algorithms recently invented as intelligent optimizers with several highly

More information

Handling Multi Objectives of with Multi Objective Dynamic Particle Swarm Optimization

Handling Multi Objectives of with Multi Objective Dynamic Particle Swarm Optimization Handling Multi Objectives of with Multi Objective Dynamic Particle Swarm Optimization Richa Agnihotri #1, Dr. Shikha Agrawal #1, Dr. Rajeev Pandey #1 # Department of Computer Science Engineering, UIT,

More information

2009 International Conference of Soft Computing and Pattern Recognition

2009 International Conference of Soft Computing and Pattern Recognition 2009 International Conference of Soft Computing and Pattern Recognition Implementing Particle Swarm Optimization to Solve Economic Load Dispatch Problem Abolfazl Zaraki Control and instrumentation Engineering

More information

ABC Analysis For Economic operation of power system

ABC Analysis For Economic operation of power system ABC Analysis For Economic operation of power system 1 Prachi Shukla, 2.Alka Thakur 1 M.tech Schlor, Electrical Department, SSSUTMS, M.P.India 2 Associate Professor, Electrical Department, SSSUTMS, M.P.India

More information

International Journal of Digital Application & Contemporary research Website: (Volume 1, Issue 7, February 2013)

International Journal of Digital Application & Contemporary research Website:   (Volume 1, Issue 7, February 2013) Performance Analysis of GA and PSO over Economic Load Dispatch Problem Sakshi Rajpoot sakshirajpoot1988@gmail.com Dr. Sandeep Bhongade sandeepbhongade@rediffmail.com Abstract Economic Load dispatch problem

More information

Discussion of Various Techniques for Solving Economic Load Dispatch

Discussion of Various Techniques for Solving Economic Load Dispatch International Journal of Enhanced Research in Science, Technology & Engineering ISSN: 2319-7463, Vol. 4 Issue 7, July-2015 Discussion of Various Techniques for Solving Economic Load Dispatch Veerpal Kaur

More information

OPTIMUM CAPACITY ALLOCATION OF DISTRIBUTED GENERATION UNITS USING PARALLEL PSO USING MESSAGE PASSING INTERFACE

OPTIMUM CAPACITY ALLOCATION OF DISTRIBUTED GENERATION UNITS USING PARALLEL PSO USING MESSAGE PASSING INTERFACE OPTIMUM CAPACITY ALLOCATION OF DISTRIBUTED GENERATION UNITS USING PARALLEL PSO USING MESSAGE PASSING INTERFACE Rosamma Thomas 1, Jino M Pattery 2, Surumi Hassainar 3 1 M.Tech Student, Electrical and Electronics,

More information

A Novel Approach to Solve Unit Commitment and Economic Load Dispatch Problem using IDE-OBL

A Novel Approach to Solve Unit Commitment and Economic Load Dispatch Problem using IDE-OBL Journal of Scientific & Industrial Research Vol. 74, July 2015, pp. 395-399 A Novel Approach to Solve Unit Commitment and Economic Load Dispatch Problem using IDE-OBL P Surekha 1 * and S Sumathi 2 *1,2

More information

CHAPTER 2 CONVENTIONAL AND NON-CONVENTIONAL TECHNIQUES TO SOLVE ORPD PROBLEM

CHAPTER 2 CONVENTIONAL AND NON-CONVENTIONAL TECHNIQUES TO SOLVE ORPD PROBLEM 20 CHAPTER 2 CONVENTIONAL AND NON-CONVENTIONAL TECHNIQUES TO SOLVE ORPD PROBLEM 2.1 CLASSIFICATION OF CONVENTIONAL TECHNIQUES Classical optimization methods can be classified into two distinct groups:

More information

Meta- Heuristic based Optimization Algorithms: A Comparative Study of Genetic Algorithm and Particle Swarm Optimization

Meta- Heuristic based Optimization Algorithms: A Comparative Study of Genetic Algorithm and Particle Swarm Optimization 2017 2 nd International Electrical Engineering Conference (IEEC 2017) May. 19 th -20 th, 2017 at IEP Centre, Karachi, Pakistan Meta- Heuristic based Optimization Algorithms: A Comparative Study of Genetic

More information

Modified Particle Swarm Optimization

Modified Particle Swarm Optimization Modified Particle Swarm Optimization Swati Agrawal 1, R.P. Shimpi 2 1 Aerospace Engineering Department, IIT Bombay, Mumbai, India, swati.agrawal@iitb.ac.in 2 Aerospace Engineering Department, IIT Bombay,

More information

Feeder Reconfiguration Using Binary Coding Particle Swarm Optimization

Feeder Reconfiguration Using Binary Coding Particle Swarm Optimization 488 International Journal Wu-Chang of Control, Wu Automation, and Men-Shen and Systems, Tsai vol. 6, no. 4, pp. 488-494, August 2008 Feeder Reconfiguration Using Binary Coding Particle Swarm Optimization

More information

Generation of Ultra Side lobe levels in Circular Array Antennas using Evolutionary Algorithms

Generation of Ultra Side lobe levels in Circular Array Antennas using Evolutionary Algorithms Generation of Ultra Side lobe levels in Circular Array Antennas using Evolutionary Algorithms D. Prabhakar Associate Professor, Dept of ECE DVR & Dr. HS MIC College of Technology Kanchikacherla, AP, India.

More information

Traffic Signal Control Based On Fuzzy Artificial Neural Networks With Particle Swarm Optimization

Traffic Signal Control Based On Fuzzy Artificial Neural Networks With Particle Swarm Optimization Traffic Signal Control Based On Fuzzy Artificial Neural Networks With Particle Swarm Optimization J.Venkatesh 1, B.Chiranjeevulu 2 1 PG Student, Dept. of ECE, Viswanadha Institute of Technology And Management,

More information

Optimal Reactive Power Dispatch Using Hybrid Loop-Genetic Based Algorithm

Optimal Reactive Power Dispatch Using Hybrid Loop-Genetic Based Algorithm Optimal Reactive Power Dispatch Using Hybrid Loop-Genetic Based Algorithm Md Sajjad Alam Student Department of Electrical Engineering National Institute of Technology, Patna Patna-800005, Bihar, India

More information

PARTICLE SWARM OPTIMIZATION (PSO)

PARTICLE SWARM OPTIMIZATION (PSO) PARTICLE SWARM OPTIMIZATION (PSO) J. Kennedy and R. Eberhart, Particle Swarm Optimization. Proceedings of the Fourth IEEE Int. Conference on Neural Networks, 1995. A population based optimization technique

More information

Particle Swarm Optimization Based Approach for Location Area Planning in Cellular Networks

Particle Swarm Optimization Based Approach for Location Area Planning in Cellular Networks International Journal of Intelligent Systems and Applications in Engineering Advanced Technology and Science ISSN:2147-67992147-6799 www.atscience.org/ijisae Original Research Paper Particle Swarm Optimization

More information

An improved PID neural network controller for long time delay systems using particle swarm optimization algorithm

An improved PID neural network controller for long time delay systems using particle swarm optimization algorithm An improved PID neural network controller for long time delay systems using particle swarm optimization algorithm A. Lari, A. Khosravi and A. Alfi Faculty of Electrical and Computer Engineering, Noushirvani

More information

A Modified PSO Technique for the Coordination Problem in Presence of DG

A Modified PSO Technique for the Coordination Problem in Presence of DG A Modified PSO Technique for the Coordination Problem in Presence of DG M. El-Saadawi A. Hassan M. Saeed Dept. of Electrical Engineering, Faculty of Engineering, Mansoura University, Egypt saadawi1@gmail.com-

More information

LECTURE 16: SWARM INTELLIGENCE 2 / PARTICLE SWARM OPTIMIZATION 2

LECTURE 16: SWARM INTELLIGENCE 2 / PARTICLE SWARM OPTIMIZATION 2 15-382 COLLECTIVE INTELLIGENCE - S18 LECTURE 16: SWARM INTELLIGENCE 2 / PARTICLE SWARM OPTIMIZATION 2 INSTRUCTOR: GIANNI A. DI CARO BACKGROUND: REYNOLDS BOIDS Reynolds created a model of coordinated animal

More information

Optimal Analysis of Economic Load Dispatch using Artificial Intelligence Techniques

Optimal Analysis of Economic Load Dispatch using Artificial Intelligence Techniques Optimal Analysis of Economic Load Dispatch using Artificial Intelligence Techniques Vijay Kumar, Rakesh Kumar Abstract: Applications of artificial intelligence to economic load dispatch problems are discussed

More information

Artificial Bee Colony (ABC) Optimization Algorithm for Solving Constrained Optimization Problems

Artificial Bee Colony (ABC) Optimization Algorithm for Solving Constrained Optimization Problems Artificial Bee Colony (ABC) Optimization Algorithm for Solving Constrained Optimization Problems Dervis Karaboga and Bahriye Basturk Erciyes University, Engineering Faculty, The Department of Computer

More information

A Cost Comparative Analysis for Economic Load Dispatch Problems Using Modern Optimization Techniques

A Cost Comparative Analysis for Economic Load Dispatch Problems Using Modern Optimization Techniques ISSN 2319 7757 EISSN 2319 7765 RESEARCH Indian Journal of Engineering, Volume 2, Number 4, February 2013 RESEARCH Indian Journal of Engineering A Cost Comparative Analysis for Economic Load Dispatch Problems

More information

GENETIC ALGORITHM VERSUS PARTICLE SWARM OPTIMIZATION IN N-QUEEN PROBLEM

GENETIC ALGORITHM VERSUS PARTICLE SWARM OPTIMIZATION IN N-QUEEN PROBLEM Journal of Al-Nahrain University Vol.10(2), December, 2007, pp.172-177 Science GENETIC ALGORITHM VERSUS PARTICLE SWARM OPTIMIZATION IN N-QUEEN PROBLEM * Azhar W. Hammad, ** Dr. Ban N. Thannoon Al-Nahrain

More information

Genetic-PSO Fuzzy Data Mining With Divide and Conquer Strategy

Genetic-PSO Fuzzy Data Mining With Divide and Conquer Strategy Genetic-PSO Fuzzy Data Mining With Divide and Conquer Strategy Amin Jourabloo Department of Computer Engineering, Sharif University of Technology, Tehran, Iran E-mail: jourabloo@ce.sharif.edu Abstract

More information

Optimal Power Flow Using Particle Swarm Optimization

Optimal Power Flow Using Particle Swarm Optimization Optimal Power Flow Using Particle Swarm Optimization M.Chiranjivi, (Ph.D) Lecturer Department of ECE Bule Hora University, Bulehora, Ethiopia. Abstract: The Optimal Power Flow (OPF) is an important criterion

More information

POWER FLOW OPTIMIZATION USING SEEKER OPTIMIZATION ALGORITHM AND PSO

POWER FLOW OPTIMIZATION USING SEEKER OPTIMIZATION ALGORITHM AND PSO POWER FLOW OPTIMIZATION USING SEEKER OPTIMIZATION ALGORITHM AND PSO VIGNESH.P Department of Electrical & Electronics Engineering Anna University Veerammal Engineering College, Dindigul, Tamilnadu India

More information

ARTIFICIAL INTELLIGENCE (CSCU9YE ) LECTURE 5: EVOLUTIONARY ALGORITHMS

ARTIFICIAL INTELLIGENCE (CSCU9YE ) LECTURE 5: EVOLUTIONARY ALGORITHMS ARTIFICIAL INTELLIGENCE (CSCU9YE ) LECTURE 5: EVOLUTIONARY ALGORITHMS Gabriela Ochoa http://www.cs.stir.ac.uk/~goc/ OUTLINE Optimisation problems Optimisation & search Two Examples The knapsack problem

More information

International Journal of Current Research and Modern Education (IJCRME) ISSN (Online): & Impact Factor: Special Issue, NCFTCCPS -

International Journal of Current Research and Modern Education (IJCRME) ISSN (Online): & Impact Factor: Special Issue, NCFTCCPS - TO SOLVE ECONOMIC DISPATCH PROBLEM USING SFLA P. Sowmya* & Dr. S. P. Umayal** * PG Scholar, Department Electrical and Electronics Engineering, Muthayammal Engineering College, Rasipuram, Tamilnadu ** Dean

More information

SWITCHES ALLOCATION IN DISTRIBUTION NETWORK USING PARTICLE SWARM OPTIMIZATION BASED ON FUZZY EXPERT SYSTEM

SWITCHES ALLOCATION IN DISTRIBUTION NETWORK USING PARTICLE SWARM OPTIMIZATION BASED ON FUZZY EXPERT SYSTEM SWITCHES ALLOCATION IN DISTRIBUTION NETWORK USING PARTICLE SWARM OPTIMIZATION BASED ON FUZZY EXPERT SYSTEM Tiago Alencar UFMA tiagoalen@gmail.com Anselmo Rodrigues UFMA schaum.nyquist@gmail.com Maria da

More information

Automatic differentiation based for particle swarm optimization steepest descent direction

Automatic differentiation based for particle swarm optimization steepest descent direction International Journal of Advances in Intelligent Informatics ISSN: 2442-6571 Vol 1, No 2, July 2015, pp. 90-97 90 Automatic differentiation based for particle swarm optimization steepest descent direction

More information

DERIVATIVE-FREE OPTIMIZATION

DERIVATIVE-FREE OPTIMIZATION DERIVATIVE-FREE OPTIMIZATION Main bibliography J.-S. Jang, C.-T. Sun and E. Mizutani. Neuro-Fuzzy and Soft Computing: A Computational Approach to Learning and Machine Intelligence. Prentice Hall, New Jersey,

More information

CHAPTER 6 ORTHOGONAL PARTICLE SWARM OPTIMIZATION

CHAPTER 6 ORTHOGONAL PARTICLE SWARM OPTIMIZATION 131 CHAPTER 6 ORTHOGONAL PARTICLE SWARM OPTIMIZATION 6.1 INTRODUCTION The Orthogonal arrays are helpful in guiding the heuristic algorithms to obtain a good solution when applied to NP-hard problems. This

More information

Witold Pedrycz. University of Alberta Edmonton, Alberta, Canada

Witold Pedrycz. University of Alberta Edmonton, Alberta, Canada 2017 IEEE International Conference on Systems, Man, and Cybernetics (SMC) Banff Center, Banff, Canada, October 5-8, 2017 Analysis of Optimization Algorithms in Automated Test Pattern Generation for Sequential

More information

Robust Descriptive Statistics Based PSO Algorithm for Image Segmentation

Robust Descriptive Statistics Based PSO Algorithm for Image Segmentation Robust Descriptive Statistics Based PSO Algorithm for Image Segmentation Ripandeep Kaur 1, Manpreet Kaur 2 1, 2 Punjab Technical University, Chandigarh Engineering College, Landran, Punjab, India Abstract:

More information

Mobile Robot Path Planning in Static Environments using Particle Swarm Optimization

Mobile Robot Path Planning in Static Environments using Particle Swarm Optimization Mobile Robot Path Planning in Static Environments using Particle Swarm Optimization M. Shahab Alam, M. Usman Rafique, and M. Umer Khan Abstract Motion planning is a key element of robotics since it empowers

More information

Particle Swarm Optimization Approach for Scheduling of Flexible Job Shops

Particle Swarm Optimization Approach for Scheduling of Flexible Job Shops Particle Swarm Optimization Approach for Scheduling of Flexible Job Shops 1 Srinivas P. S., 2 Ramachandra Raju V., 3 C.S.P Rao. 1 Associate Professor, V. R. Sdhartha Engineering College, Vijayawada 2 Professor,

More information

CHAPTER 6 HYBRID AI BASED IMAGE CLASSIFICATION TECHNIQUES

CHAPTER 6 HYBRID AI BASED IMAGE CLASSIFICATION TECHNIQUES CHAPTER 6 HYBRID AI BASED IMAGE CLASSIFICATION TECHNIQUES 6.1 INTRODUCTION The exploration of applications of ANN for image classification has yielded satisfactory results. But, the scope for improving

More information

Cell-to-switch assignment in. cellular networks. barebones particle swarm optimization

Cell-to-switch assignment in. cellular networks. barebones particle swarm optimization Cell-to-switch assignment in cellular networks using barebones particle swarm optimization Sotirios K. Goudos a), Konstantinos B. Baltzis, Christos Bachtsevanidis, and John N. Sahalos RadioCommunications

More information

Feature weighting using particle swarm optimization for learning vector quantization classifier

Feature weighting using particle swarm optimization for learning vector quantization classifier Journal of Physics: Conference Series PAPER OPEN ACCESS Feature weighting using particle swarm optimization for learning vector quantization classifier To cite this article: A Dongoran et al 2018 J. Phys.:

More information

Argha Roy* Dept. of CSE Netaji Subhash Engg. College West Bengal, India.

Argha Roy* Dept. of CSE Netaji Subhash Engg. College West Bengal, India. Volume 3, Issue 3, March 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Training Artificial

More information

The Design of Pole Placement With Integral Controllers for Gryphon Robot Using Three Evolutionary Algorithms

The Design of Pole Placement With Integral Controllers for Gryphon Robot Using Three Evolutionary Algorithms The Design of Pole Placement With Integral Controllers for Gryphon Robot Using Three Evolutionary Algorithms Somayyeh Nalan-Ahmadabad and Sehraneh Ghaemi Abstract In this paper, pole placement with integral

More information

Particle swarm optimization for mobile network design

Particle swarm optimization for mobile network design Particle swarm optimization for mobile network design Ayman A. El-Saleh 1,2a), Mahamod Ismail 1, R. Viknesh 2, C. C. Mark 2, and M. L. Chan 2 1 Department of Electrical, Electronics, and Systems Engineering,

More information

B.Tech Thesis on ECONOMIC LOAD DISPATCH FOR IEEE 30-BUS SYSTEM USING PSO

B.Tech Thesis on ECONOMIC LOAD DISPATCH FOR IEEE 30-BUS SYSTEM USING PSO B.Tech Thesis on ECONOMIC LOAD DISPATCH FOR IEEE 30-BUS SYSTEM USING PSO For the partial fulfilment of the requirement for the degree of Bachelor of Technology In Electrical Engineering Submitted by: BARNIKA

More information

Research Article Path Planning Using a Hybrid Evolutionary Algorithm Based on Tree Structure Encoding

Research Article Path Planning Using a Hybrid Evolutionary Algorithm Based on Tree Structure Encoding e Scientific World Journal, Article ID 746260, 8 pages http://dx.doi.org/10.1155/2014/746260 Research Article Path Planning Using a Hybrid Evolutionary Algorithm Based on Tree Structure Encoding Ming-Yi

More information

Hybrid Approach for Placement of Multiple DGs in Primary Distribution Networks

Hybrid Approach for Placement of Multiple DGs in Primary Distribution Networks Asian Journal of Electrical Sciences ISSN: 2249 6297, Vol. 7, No. 2, 2018, pp. 90-95 The Research Publication, www.trp.org.in Hybrid Approach for Placement of Multiple DGs in Primary Distribution Networks

More information

Particle Swarm Optimization

Particle Swarm Optimization Particle Swarm Optimization Gonçalo Pereira INESC-ID and Instituto Superior Técnico Porto Salvo, Portugal gpereira@gaips.inesc-id.pt April 15, 2011 1 What is it? Particle Swarm Optimization is an algorithm

More information

A MULTI-SWARM PARTICLE SWARM OPTIMIZATION WITH LOCAL SEARCH ON MULTI-ROBOT SEARCH SYSTEM

A MULTI-SWARM PARTICLE SWARM OPTIMIZATION WITH LOCAL SEARCH ON MULTI-ROBOT SEARCH SYSTEM A MULTI-SWARM PARTICLE SWARM OPTIMIZATION WITH LOCAL SEARCH ON MULTI-ROBOT SEARCH SYSTEM BAHAREH NAKISA, MOHAMMAD NAIM RASTGOO, MOHAMMAD FAIDZUL NASRUDIN, MOHD ZAKREE AHMAD NAZRI Department of Computer

More information

ATI Material Do Not Duplicate ATI Material. www. ATIcourses.com. www. ATIcourses.com

ATI Material Do Not Duplicate ATI Material. www. ATIcourses.com. www. ATIcourses.com ATI Material Material Do Not Duplicate ATI Material Boost Your Skills with On-Site Courses Tailored to Your Needs www.aticourses.com The Applied Technology Institute specializes in training programs for

More information

NOVEL CONSTRAINED SEARCH-TACTIC FOR OPTIMAL DYNAMIC ECONOMIC DISPATCH USING MODERN META-HEURISTIC OPTIMIZATION ALGORITHMS

NOVEL CONSTRAINED SEARCH-TACTIC FOR OPTIMAL DYNAMIC ECONOMIC DISPATCH USING MODERN META-HEURISTIC OPTIMIZATION ALGORITHMS NOVEL CONSTRAINED SEARCH-TACTIC FOR OPTIMAL DYNAMIC ECONOMIC DISPATCH USING MODERN META-HEURISTIC OPTIMIZATION ALGORITHMS Authors: Fahad S. Abu-Mouti and M. E. El-Hawary OUTLINE Introduction Problem Formulation

More information

Kyrre Glette INF3490 Evolvable Hardware Cartesian Genetic Programming

Kyrre Glette INF3490 Evolvable Hardware Cartesian Genetic Programming Kyrre Glette kyrrehg@ifi INF3490 Evolvable Hardware Cartesian Genetic Programming Overview Introduction to Evolvable Hardware (EHW) Cartesian Genetic Programming Applications of EHW 3 Evolvable Hardware

More information

OPTIMIZING OF MAKESPAN IN JOB SHOP SCHEDULING PROBLEM: A COMBINED NEW APPROACH

OPTIMIZING OF MAKESPAN IN JOB SHOP SCHEDULING PROBLEM: A COMBINED NEW APPROACH Int. J. Mech. Eng. & Rob. Res. 2014 T Varun Kumar and B Ganesh Babu, 2014 Research Paper ISSN 2278 0149 www.ijmerr.com Vol. 3, No. 2, April 2014 2014 IJMERR. All Rights Reserved OPTIMIZING OF MAKESPAN

More information

Hybrid Real coded Genetic Algorithm - Differential Evolution for Optimal Power Flow

Hybrid Real coded Genetic Algorithm - Differential Evolution for Optimal Power Flow Hybrid Real coded Genetic Algorithm - Differential Evolution for Optimal Power Flow C.N. Ravi 1, G. Selvakumar 2, C. Christober Asir Rajan 3 1 Research Scholar, Sathyabama University, Chennai, Tamil Nadu,

More information

Optimal Power Flow of Distribution Network

Optimal Power Flow of Distribution Network Optimal Power Flow of Distribution Network Dr.R.Muthu Kumar 1 and Ms. Swathi M 2 1 Associate Professor, Department of EEE, Shree Venkateshwara Hi-Tech Engineering College, Erode, India 2 PG Scholar, ME

More information

METAHEURISTICS. Introduction. Introduction. Nature of metaheuristics. Local improvement procedure. Example: objective function

METAHEURISTICS. Introduction. Introduction. Nature of metaheuristics. Local improvement procedure. Example: objective function Introduction METAHEURISTICS Some problems are so complicated that are not possible to solve for an optimal solution. In these problems, it is still important to find a good feasible solution close to the

More information

International Conference on Modeling and SimulationCoimbatore, August 2007

International Conference on Modeling and SimulationCoimbatore, August 2007 International Conference on Modeling and SimulationCoimbatore, 27-29 August 2007 OPTIMIZATION OF FLOWSHOP SCHEDULING WITH FUZZY DUE DATES USING A HYBRID EVOLUTIONARY ALGORITHM M.S.N.Kiran Kumara, B.B.Biswalb,

More information

Experimental Study on Bound Handling Techniques for Multi-Objective Particle Swarm Optimization

Experimental Study on Bound Handling Techniques for Multi-Objective Particle Swarm Optimization Experimental Study on Bound Handling Techniques for Multi-Objective Particle Swarm Optimization adfa, p. 1, 2011. Springer-Verlag Berlin Heidelberg 2011 Devang Agarwal and Deepak Sharma Department of Mechanical

More information

FDR PSO-Based Optimization for Non-smooth Functions

FDR PSO-Based Optimization for Non-smooth Functions M. Anitha, et al. / International Energy Journal 0 (009) 37-44 37 www.serd.ait.ac.th/reric FDR PSO-Based Optimization for n-smooth Functions M. Anitha*, S. Subramanian* and R. Gnanadass + Abstract In this

More information

A Particle Swarm Optimization Algorithm for Solving Flexible Job-Shop Scheduling Problem

A Particle Swarm Optimization Algorithm for Solving Flexible Job-Shop Scheduling Problem 2011, TextRoad Publication ISSN 2090-4304 Journal of Basic and Applied Scientific Research www.textroad.com A Particle Swarm Optimization Algorithm for Solving Flexible Job-Shop Scheduling Problem Mohammad

More information

Tracking Changing Extrema with Particle Swarm Optimizer

Tracking Changing Extrema with Particle Swarm Optimizer Tracking Changing Extrema with Particle Swarm Optimizer Anthony Carlisle Department of Mathematical and Computer Sciences, Huntingdon College antho@huntingdon.edu Abstract The modification of the Particle

More information

THE MAIN purpose of optimal reactive power flow (ORPF)

THE MAIN purpose of optimal reactive power flow (ORPF) IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 21, NO. 3, AUGUST 2006 1163 A Hybrid Genetic Algorithm Interior Point Method for Optimal Reactive Power Flow Wei Yan, Fang Liu, C. Y. Chung, Member, IEEE, and K.

More information

A *69>H>N6 #DJGC6A DG C<>C::G>C<,8>:C8:H /DA 'D 2:6G, ()-"&"3 -"(' ( +-" " " % '.+ % ' -0(+$,

A *69>H>N6 #DJGC6A DG C<>C::G>C<,8>:C8:H /DA 'D 2:6G, ()-&3 -(' ( +-   % '.+ % ' -0(+$, The structure is a very important aspect in neural network design, it is not only impossible to determine an optimal structure for a given problem, it is even impossible to prove that a given structure

More information

Step Size Optimization of LMS Algorithm Using Particle Swarm Optimization Algorithm in System Identification

Step Size Optimization of LMS Algorithm Using Particle Swarm Optimization Algorithm in System Identification IJCSNS International Journal of Computer Science and Network Security, VOL.13 No.6, June 2013 125 Step Size Optimization of LMS Algorithm Using Particle Swarm Optimization Algorithm in System Identification

More information

Three-Dimensional Off-Line Path Planning for Unmanned Aerial Vehicle Using Modified Particle Swarm Optimization

Three-Dimensional Off-Line Path Planning for Unmanned Aerial Vehicle Using Modified Particle Swarm Optimization Three-Dimensional Off-Line Path Planning for Unmanned Aerial Vehicle Using Modified Particle Swarm Optimization Lana Dalawr Jalal Abstract This paper addresses the problem of offline path planning for

More information

Particle Swarm Optimization for ILP Model Based Scheduling

Particle Swarm Optimization for ILP Model Based Scheduling Particle Swarm Optimization for ILP Model Based Scheduling Shilpa KC, C LakshmiNarayana Abstract This paper focus on the optimal solution to the time constraint scheduling problem with the Integer Linear

More information

ECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATION

ECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATION ECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATION Shubham Tiwari 1, Ankit Kumar 2, G.S Chaurasia 3, G.S Sirohi 4 1 Department of Electrical&Electronics Engineering Ajay Kumar Garg Engineering College,

More information

Binary Differential Evolution Strategies

Binary Differential Evolution Strategies Binary Differential Evolution Strategies A.P. Engelbrecht, Member, IEEE G. Pampará Abstract Differential evolution has shown to be a very powerful, yet simple, population-based optimization approach. The

More information

Particle Swarm Optimization Artificial Bee Colony Chain (PSOABCC): A Hybrid Meteahuristic Algorithm

Particle Swarm Optimization Artificial Bee Colony Chain (PSOABCC): A Hybrid Meteahuristic Algorithm Particle Swarm Optimization Artificial Bee Colony Chain (PSOABCC): A Hybrid Meteahuristic Algorithm Oğuz Altun Department of Computer Engineering Yildiz Technical University Istanbul, Turkey oaltun@yildiz.edu.tr

More information

A Combinatorial Algorithm for The Cardinality Constrained Portfolio Optimization Problem

A Combinatorial Algorithm for The Cardinality Constrained Portfolio Optimization Problem 0 IEEE Congress on Evolutionary Computation (CEC) July -, 0, Beijing, China A Combinatorial Algorithm for The Cardinality Constrained Portfolio Optimization Problem Tianxiang Cui, Shi Cheng, and Ruibin

More information

Grid Scheduling using PSO with Naive Crossover

Grid Scheduling using PSO with Naive Crossover Grid Scheduling using PSO with Naive Crossover Vikas Singh ABV- Indian Institute of Information Technology and Management, GwaliorMorena Link Road, Gwalior, India Deepak Singh Raipur Institute of Technology

More information

PARTICLE Swarm Optimization (PSO), an algorithm by

PARTICLE Swarm Optimization (PSO), an algorithm by , March 12-14, 2014, Hong Kong Cluster-based Particle Swarm Algorithm for Solving the Mastermind Problem Dan Partynski Abstract In this paper we present a metaheuristic algorithm that is inspired by Particle

More information

Evolutionary Computation Algorithms for Cryptanalysis: A Study

Evolutionary Computation Algorithms for Cryptanalysis: A Study Evolutionary Computation Algorithms for Cryptanalysis: A Study Poonam Garg Information Technology and Management Dept. Institute of Management Technology Ghaziabad, India pgarg@imt.edu Abstract The cryptanalysis

More information

The Pennsylvania State University. The Graduate School. Department of Electrical Engineering COMPARISON OF CAT SWARM OPTIMIZATION WITH PARTICLE SWARM

The Pennsylvania State University. The Graduate School. Department of Electrical Engineering COMPARISON OF CAT SWARM OPTIMIZATION WITH PARTICLE SWARM The Pennsylvania State University The Graduate School Department of Electrical Engineering COMPARISON OF CAT SWARM OPTIMIZATION WITH PARTICLE SWARM OPTIMIZATION FOR IIR SYSTEM IDENTIFICATION A Thesis in

More information

Particle Swarm Optimization to Solve Optimization Problems

Particle Swarm Optimization to Solve Optimization Problems Particle Swarm Optimization to Solve Optimization Problems Gregorio Toscano-Pulido and Carlos A. Coello Coello Evolutionary Computation Group at CINVESTAV-IPN (EVOCINV) Electrical Eng. Department, Computer

More information

HPSOM: A HYBRID PARTICLE SWARM OPTIMIZATION ALGORITHM WITH GENETIC MUTATION. Received February 2012; revised June 2012

HPSOM: A HYBRID PARTICLE SWARM OPTIMIZATION ALGORITHM WITH GENETIC MUTATION. Received February 2012; revised June 2012 International Journal of Innovative Computing, Information and Control ICIC International c 2013 ISSN 1349-4198 Volume 9, Number 5, May 2013 pp. 1919 1934 HPSOM: A HYBRID PARTICLE SWARM OPTIMIZATION ALGORITHM

More information

A Modified Genetic Algorithm for Process Scheduling in Distributed System

A Modified Genetic Algorithm for Process Scheduling in Distributed System A Modified Genetic Algorithm for Process Scheduling in Distributed System Vinay Harsora B.V.M. Engineering College Charatar Vidya Mandal Vallabh Vidyanagar, India Dr.Apurva Shah G.H.Patel College of Engineering

More information

A HYBRID ALGORITHM BASED ON PARTICLE SWARM OPTIMIZATION

A HYBRID ALGORITHM BASED ON PARTICLE SWARM OPTIMIZATION INTERNATIONAL JOURNAL OF INFORMATION AND SYSTEMS SCIENCES Volume 1, Number 3-4, Pages 275-282 2005 Institute for Scientific Computing and Information A HYBRID ALGORITHM BASED ON PARTICLE SWARM OPTIMIZATION

More information

PARTICLE SWARM OPTIMISATION APPLIED TO ECONOMIC LOAD DISPATCH PROBLEM

PARTICLE SWARM OPTIMISATION APPLIED TO ECONOMIC LOAD DISPATCH PROBLEM PARTICLE SWARM OPTIMISATION APPLIED TO ECONOMIC LOAD DISPATCH PROBLEM A THESIS SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF Master of Technology In Power Control and Drives By

More information

The movement of the dimmer firefly i towards the brighter firefly j in terms of the dimmer one s updated location is determined by the following equat

The movement of the dimmer firefly i towards the brighter firefly j in terms of the dimmer one s updated location is determined by the following equat An Improved Firefly Algorithm for Optimization Problems Amarita Ritthipakdee 1, Arit Thammano, Nol Premasathian 3, and Bunyarit Uyyanonvara 4 Abstract Optimization problem is one of the most difficult

More information

SIMULTANEOUS COMPUTATION OF MODEL ORDER AND PARAMETER ESTIMATION FOR ARX MODEL BASED ON MULTI- SWARM PARTICLE SWARM OPTIMIZATION

SIMULTANEOUS COMPUTATION OF MODEL ORDER AND PARAMETER ESTIMATION FOR ARX MODEL BASED ON MULTI- SWARM PARTICLE SWARM OPTIMIZATION SIMULTANEOUS COMPUTATION OF MODEL ORDER AND PARAMETER ESTIMATION FOR ARX MODEL BASED ON MULTI- SWARM PARTICLE SWARM OPTIMIZATION Kamil Zakwan Mohd Azmi, Zuwairie Ibrahim and Dwi Pebrianti Faculty of Electrical

More information

IEEE TRANSACTIONS ON EVOLUTIONARY COMPUTATION, VOL. 5, NO. 1, FEBRUARY

IEEE TRANSACTIONS ON EVOLUTIONARY COMPUTATION, VOL. 5, NO. 1, FEBRUARY IEEE TRANSACTIONS ON EVOLUTIONARY COMPUTATION, VOL. 5, NO. 1, FEBRUARY 2001 41 Brief Papers An Orthogonal Genetic Algorithm with Quantization for Global Numerical Optimization Yiu-Wing Leung, Senior Member,

More information

Initializing the Particle Swarm Optimizer Using the Nonlinear Simplex Method

Initializing the Particle Swarm Optimizer Using the Nonlinear Simplex Method Initializing the Particle Swarm Optimizer Using the Nonlinear Simplex Method K.E. PARSOPOULOS, M.N. VRAHATIS Department of Mathematics University of Patras University of Patras Artificial Intelligence

More information

Comparison of Some Evolutionary Algorithms for Approximate Solutions of Optimal Control Problems

Comparison of Some Evolutionary Algorithms for Approximate Solutions of Optimal Control Problems Australian Journal of Basic and Applied Sciences, 4(8): 3366-3382, 21 ISSN 1991-8178 Comparison of Some Evolutionary Algorithms for Approximate Solutions of Optimal Control Problems Akbar H. Borzabadi,

More information

Fast Hybrid PSO and Tabu Search Approach for Optimization of a Fuzzy Controller

Fast Hybrid PSO and Tabu Search Approach for Optimization of a Fuzzy Controller IJCSI International Journal of Computer Science Issues, Vol. 8, Issue 5, No, September ISSN (Online): 694-84 www.ijcsi.org 5 Fast Hybrid PSO and Tabu Search Approach for Optimization of a Fuzzy Controller

More information

Automated Test Data Generation and Optimization Scheme Using Genetic Algorithm

Automated Test Data Generation and Optimization Scheme Using Genetic Algorithm 2011 International Conference on Software and Computer Applications IPCSIT vol.9 (2011) (2011) IACSIT Press, Singapore Automated Test Data Generation and Optimization Scheme Using Genetic Algorithm Roshni

More information

Performance Comparison of Genetic Algorithm, Particle Swarm Optimization and Simulated Annealing Applied to TSP

Performance Comparison of Genetic Algorithm, Particle Swarm Optimization and Simulated Annealing Applied to TSP Performance Comparison of Genetic Algorithm, Particle Swarm Optimization and Simulated Annealing Applied to TSP Madhumita Panda Assistant Professor, Computer Science SUIIT, Sambalpur University. Odisha,

More information

Parameter Estimation of PI Controller using PSO Algorithm for Level Control

Parameter Estimation of PI Controller using PSO Algorithm for Level Control Parameter Estimation of PI Controller using PSO Algorithm for Level Control 1 Bindutesh V.Saner, 2 Bhagsen J.Parvat 1,2 Department of Instrumentation & control Pravara Rural college of Engineering, Loni

More information

ISSN: ISO 9001:2008 Certified International Journal of Engineering and Innovative Technology (IJEIT) Volume 7, Issue 1, July 2017

ISSN: ISO 9001:2008 Certified International Journal of Engineering and Innovative Technology (IJEIT) Volume 7, Issue 1, July 2017 Congestion Management in Deregulated Power System Using Market Splitting Based Approach Manish Harchand 1, KanwardeepSingh 2 M.Tech student 1, Associate professor 2 Department of Electrical Engineering,

More information

Simplifying Handwritten Characters Recognition Using a Particle Swarm Optimization Approach

Simplifying Handwritten Characters Recognition Using a Particle Swarm Optimization Approach ISSN 2286-4822, www.euacademic.org IMPACT FACTOR: 0.485 (GIF) Simplifying Handwritten Characters Recognition Using a Particle Swarm Optimization Approach MAJIDA ALI ABED College of Computers Sciences and

More information

Using Genetic Algorithms to optimize ACS-TSP

Using Genetic Algorithms to optimize ACS-TSP Using Genetic Algorithms to optimize ACS-TSP Marcin L. Pilat and Tony White School of Computer Science, Carleton University, 1125 Colonel By Drive, Ottawa, ON, K1S 5B6, Canada {mpilat,arpwhite}@scs.carleton.ca

More information

GRID SCHEDULING USING ENHANCED PSO ALGORITHM

GRID SCHEDULING USING ENHANCED PSO ALGORITHM GRID SCHEDULING USING ENHANCED PSO ALGORITHM Mr. P.Mathiyalagan 1 U.R.Dhepthie 2 Dr. S.N.Sivanandam 3 1 Lecturer 2 Post Graduate Student 3 Professor and Head Department of Computer Science and Engineering

More information

Index Terms PSO, parallel computing, clustering, multiprocessor.

Index Terms PSO, parallel computing, clustering, multiprocessor. Parallel Particle Swarm Optimization in Data Clustering Yasin ORTAKCI Karabuk University, Computer Engineering Department, Karabuk, Turkey yasinortakci@karabuk.edu.tr Abstract Particle Swarm Optimization

More information

An Adaptive Genetic Algorithm for Solving N- Queens Problem

An Adaptive Genetic Algorithm for Solving N- Queens Problem An Adaptive Genetic Algorithm for Solving N- ueens Problem Uddalok Sarkar 1, * Sayan Nag 1 1 Department of Electrical Engineering Jadavpur University Kolkata, India uddaloksarkar@gmail.com, * nagsayan112358@gmail.com

More information