Simple Optimization (SOPT) for Nonlinear Constrained Optimization Problem

Size: px
Start display at page:

Download "Simple Optimization (SOPT) for Nonlinear Constrained Optimization Problem"

Transcription

1 (ISSN 4-6) Journal of Science & Enineerin Education (ISSN 4-6) Vol.,, Pae-3-39, Year-7 Simple Optimization (SOPT) for Nonlinear Constrained Optimization Vivek Kumar Chouhan *, Joji Thomas **, S. S. Mahapatra *** * Student, Department of Mechanical Enineerin, Christian Collee of Enineerin and Technoloy, Bhilai, Chhattisarh, India, vivekchouhan@mail.com ** Associate Professor, Department of Mechanical Enineerin, Christian Collee of Enineerin and Technoloy, Bhilai, Chhattisarh, India, joji.siji@mail.com *** Professor, Department of Mechanical Enineerin, National Institute Technoloy, Rourkela, Orissa, India, mahapatrass3@mail.com Abstract In recent years, Meta-heuristic alorithm becomes popular for solvin optimization problems. There are problems which are difficult to solve usin traditional methods. SOPT is an efficient meta-heuristic technique to solve such nonlinear problems. In this paper, SOPT alorithm is coded usin MATLAB and three test functions for constrained optimization havin different characteristic are run. The example considered for this alorithm were attempted previously by various researchers usin different optimization techniques such as Leaue championship alorithm(lca), Particle swarm optimization(pso), Artificial bee colony(abc). However, Comparison between results obtained by the proposed alorithm and those obtained by different optimization alorithm shows the better performance of proposed alorithm. Index Terms: SOPT, Meta-heuristics, constrained optimization.. INTRODUCTION In an Optimization technique a real function is maximized or minimized by selectin input values from a iven set of values[9]. A eneral optimization problem selects n decision variables x..., x xn from a feasible reion in order to optimize (either maximize or minimize) a iven objective function f x, x,... x ) of n decision ( n variable. These types of problems may either be linear or nonlinear. Most of the real world problems are nonlinear in nature. In a Nonlinear prorammin problem the objective function is nonlinear and feasible reion may be formed by nonlinear constraints. Thus eneral equation for nonlinear proram for maximization can be written as: Maximizef(x, x,. x n ) subjected to: j x j =,,. J k x = k =,, K x i (L) x x i (U) i =, N Decision variables (: These are the quantities which are needed to be determined. Objective function f(: These are expressions which are to be maximized or minimized. Upper and lower bound(x (U), x (L) ): These are the maximum and minimum limit assined for the decision variable. Constraints: These are the conditions for the variables that are needed to be satisfied. There are basically two approaches for solvin the optimization problems: ) Traditional ) Meta-heuristic. Traditional approach For linear optimization type of problems traditional methods like simplex methods can be used to solve the problems exactly. For nonlinear problems radient based methods like olden section search, Fibonacci search etc. are used. These methods require the problems to be differentiable. Traditional methods sometimes fail to solve complex nonlinear problems. To overcome the difficulties of traditional methods researchers are now-adays developin new Meta-heuristic alorithms. These types of alorithms are population based alorithms where a set of solutions are randomly enerated and then 3

2 Journal of Science & Enineerin Education (ISSN 4-6) Vol.,, Pae-3-39, Year-7 they are moved systematically towards the optimum. These problems do not uarantee an optimum solution but it has been seen that for most of the problems they ive near optimum solutions.. Meta-heuristic approach Meta-heuristic alorithm is an iterative eneration process it utilizes the concept of explorin and exploitin the search space efficiently in order to find near optimal solution. Here startin with a feasible solution. In each iteration, search the neihbourhood of the current solution and terminate when a better solution is obtained. This technique may be Trajectory based method: Here search process is identified by a trajectory in the search space. It focuses on modifyin and improvin a sinle solution. Tabu search, simulated annealin Population based method: Every step of search process has a population-a set of solution. It maintains and improves a set of solutions. Genetic alorithm, bee colony optimization, ant colony optimization.. LEAGUE CHAMPIONSHIP ALGORITHM, PARTICLE SWARM OPTIMIZATION, ARTIFICIAL BEE COLONY. Leaue championship alorithm [3] It is a population based alorithm. Idea came from competition of sport teams in a sport leaue, team plays for several weeks (Iterations). Leaue schedule is iven, a number of individual as a team plays in pairs and the outcome of the ame is decided as team wins or loses the match. Playin strenth (fitness value) with teams intended formations are iven. Modellin a match analysis, each team makes its own playin stratey (New solution) for the next week contest and the process is repeated for several number of seasons.. Particle swarm optimization [] It optimizes the problem havin the candidate solutions, dubbed particles are moved around in the search space accordin to the simple mathematical equations over the particles position and velocity. Its local best known position called pbest and the best known position of the entire swarm called best which influences each particle movement. This way swarm moves toward best solution. The possible solution of the function to be optimized is iven by position of the particle which is updated in each iteration usin equation (). Velocity of a particle in each iteration is iven by equation (). If R is rane of vector x the velocity is normally initialized in the rane ( R, +R). v i = ωv i + φ p r p pbest i x i + φ r (Best x i ) () x i = x i + v i () The parameter ω is called the inertia weiht and controls the manitude of the old velocity in the calculation of the new velocity, whereas φ p and φ determine the sinificance of pbest and best respectively r p and r are the random numbers enerated in the rane [,]. v i at any iteration is constrained by the parameter v max which is normally taken about % of the rane of v. If in any iteration position of the particle crosses the boundary then velocity is adjusted so that particles position reaches to the boundary which is called clampin of velocity..3 Artificial bee colony [] In ABC alorithm, the position of a food source represents a possible solution to the optimization problem. This alorithm simulates the intellient forain behaviour of a honeybee swarm. The colony consist of three types of bees: employed bees, onlooker bees, scouts. Employed bee search for food around food source in memory and shares this information with the onlooker bee waitin in the hive. This information contains distance, direction and location. The nectar amount of food source decides the quality (fitness) of the associated solution. The onlooker bees checks its nectar amount and its closeness to the hive, if new food source is havin hiher nectar (better fitness) then it forets the previous food source and remembers only new one. Then the nectar is loaded from food source and unloaded to the food store after that it miht dance and other nest mate recruited before returnin to the same food source. A scout may an onlooker who tries to find out the food source with the information iven by employed bees. Searchin of nearby food source by employed and onlooker bees are done accordin to followin equation. v ij = x ij + ij (x ij x kj ) Where, i, k,.. NS NS is number of food sources and j, D D is dimension of te problem. k and j are randomly chosen indexes. ij is a random number between [,-] 36

3 Journal of Science & Enineerin Education (ISSN 4-6) Vol.,, Pae-3-39, Year-7 3. SOPT [4] It is a population based alorithm and iterations are performed basically in two staes named exploration and exploitation steps. Which are performed one by one. In Exploration stae, where best solution is enerated usin equation (), if obtained solution is better than the worst solution in population then worst solution is replaced by new enerated solution. X i,new = X i,best + C R i () Similarly Exploitation step is performed usin equation () X i,new = X i,best + C R i () and operation continues repeatedly until a final condition is met. Where, X i,new is the i t parameter of the new solution for any iteration performed. X i,best is the i t parameter of the best solution in the same iteration.c, C are the positive constant and C is half of C.R i is the normally distributed random variable with a mean zero. σ i is the standard deviation of i t parameter of all the members in the population. Value of control variable C can be taken in between to. Value of control variable C is automatically decided as half of value of C []. There are alorithms which do not contain any control parameters e.. TLBO, Jaya alorithm [8] and other alorithms are havin more numbers of control parameters. SOPT is an alorithm which is havin only one control parameter effectively. It also make only two function evaluations in each iteration and therefore computationally less expensive if problem is solved in same number of iterations. The main advantae of SOPT is its simplicity with equivalent efficiency. 4. TEST PROBLEMS Minimize x ) ( x x 7) f ( ( x ( 4.84 ( x.) ( x.) ( x ( x.) 4.84 x x, ) Minimize f ( x ( x h( x x x, x x x, 3 Maximize xx x 4x 6 f ( x x ( x x ( x x x x,. RESULT AND DISCUSSION SOPT alorithm is coded in MATLAB and in this alorithm C is taken as. and C is.7 that is half of C. Three test problems are selected to check the performance of SOPT and the results are compared with the results obtained by LCA, PSO [7], ABC [6]. Each time SOPT ives fairly ood result. The Values obtained by solvin the objective functions for are x=.468, x=.3866, function value obtained= 3.98and for x=.776, x=.7, function value obtained =.7 and for 3 x=.6887, x=.868, function value obtained= For solvin problem and problem 3 less than iterations are required as shown in fiure 4 and fiure 6, while solution for problem is obtained in less than 3 iterations as shown in fiure. Fiures to 3 shows the surface plot of the objective function. 3 is a maximization type of problem which is first converted to minimization type by multiplyin it by - [9]. Table-: function values obtained for constrained optimization problem 3 LCA PSO ABC SOPT

4 Function Values f(x, Function Values f(x, f(x, Function Value Journal of Science & Enineerin Education (ISSN 4-6) Vol.,, Pae-3-39, Year x x Fi-: Surface plot of function Fi-: converence curve for function x - Fi-: Surface plot of function - -. x Fi-6: Converence curve for function x Fi-3: Surface plot of function 3 x 6. CONCLUSION For the optimization purpose a number of Meta-heuristic alorithms are used. SOPT is a population based alorithm consists of two staes: exploration and exploitation. Iterations are to be done for each stae and for each iteration there are two function evaluations. Here only one parameter is required to be set so that number of problems with different parameters can be solved. But in other alorithms parameters are more, to et a best set of parameter value number of experiments are to be performed. A result of experiment shows that SOPT performs satisfactory to et optimum value. It can also be used for multi-objective constraints problems Fi- 4: Converence curve for function REFERENCES []. D. Karaboa, B. Akay, 9 A comparative study of Artificial Bee Colony alorithm Appl. Math.comput. 4(), 8-3. []. J. Kennedy and R.C.Eberhart, Particle Swarm Optimization, IEEE International Conference on Neural Networks, Vol. 4, pp94 948,99. [3]. Ali HusseinzadehKashan, An efficient alorithm for constrained lobal optimization and application 38

5 Journal of Science & Enineerin Education (ISSN 4-6) Vol.,, Pae-3-39, Year-7 tomechanical enineerin desin: Leaue championship alorithm (LCA) comp.-aided desin 43() [4]. J. Thomas, S. S. Mahapatra, Improved Simple optimization (SOPT) alorithm for unconstrained nonlinear optimization problem, Elsevier Academic press, 6 []. O. Hasancebi, K. S. Azad,. An efficient metaheuristic alorithm for enineerin optimization: SOPT. Int. J. Optim. Civ. En.4 (), [6]. G. L. Rakesh, J. Thomas and S. S. Mahapatra 3 Application of Particle Swarm Optimization in Enineerin Desin CPIE(3), 3 [7]. Yin Don, Jiafu tan, BaodonXu and Dinwei Wan An application of swarm optimization tononlinear prorammin, ElsevierComp. And math. With application 49 () [8]. R V Rao,, Jaya: A simple and new optimization alorithm for solvin constrained and unconstrained optimization problems, International Journal of Industrial Enineerin Computations 7 (6) [9]. K. Deb, Optimization for Enineerin Desin, Alorithms and Examples, PHI New Delhi 39

Optimization of Mechanical Design Problems Using Improved Differential Evolution Algorithm

Optimization of Mechanical Design Problems Using Improved Differential Evolution Algorithm International Journal of Recent Trends in Enineerin Vol. No. 5 May 009 Optimization of Mechanical Desin Problems Usin Improved Differential Evolution Alorithm Millie Pant Radha Thanaraj and V. P. Sinh

More information

Bespoke Shuffled Frog Leaping Algorithm and its Engineering Applications

Bespoke Shuffled Frog Leaping Algorithm and its Engineering Applications I.J. Intellient Systems and Applications, 5,, - Published Online March 5 in MECS (http://www.mecs-press.or/ DOI:.585/ijisa.5.. Bespoke Shuffled Fro Leapin Alorithm and its Enineerin Applications Anura

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

Design of Higher Order LP and HP Digital IIR Filter Using the Concept of Teaching-Learning Based Optimization

Design of Higher Order LP and HP Digital IIR Filter Using the Concept of Teaching-Learning Based Optimization Design of Higher Order LP and HP Digital IIR Filter Using the Concept of Teaching-Learning Based Optimization DAMANPREET SINGH, J.S. DHILLON Department of Computer Science & Engineering Department of Electrical

More information

Optimal capacitor placement and sizing via artificial bee colony

Optimal capacitor placement and sizing via artificial bee colony International Journal of Smart Grid and Clean Energy Optimal capacitor placement and sizing via artificial bee colony Mohd Nabil Muhtazaruddin a*, Jasrul Jamani Jamian b, Danvu Nguyen a Nur Aisyah Jalalludin

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

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

First- and Second Order Phase Transitions in the Holstein- Hubbard Model

First- and Second Order Phase Transitions in the Holstein- Hubbard Model Europhysics Letters PREPRINT First- and Second Order Phase Transitions in the Holstein- Hubbard Model W. Koller 1, D. Meyer 1,Y.Ōno 2 and A. C. Hewson 1 1 Department of Mathematics, Imperial Collee, London

More information

Two new spectral conjugate gradient algorithms based on Hestenes Stiefel

Two new spectral conjugate gradient algorithms based on Hestenes Stiefel Research Article Two new spectral conjuate radient alorithms based on Hestenes Stiefel Journal of Alorithms & Computational Technoloy 207, Vol. (4) 345 352! The Author(s) 207 Reprints and permissions:

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

Emotional Optimized Design of Electro-hydraulic Actuators

Emotional Optimized Design of Electro-hydraulic Actuators Sensors & Transducers, Vol. 77, Issue 8, Auust, pp. 9-9 Sensors & Transducers by IFSA Publishin, S. L. http://www.sensorsportal.com Emotional Optimized Desin of Electro-hydraulic Actuators Shi Boqian,

More information

Metaheuristics and Local Search

Metaheuristics and Local Search Metaheuristics and Local Search 8000 Discrete optimization problems Variables x 1,..., x n. Variable domains D 1,..., D n, with D j Z. Constraints C 1,..., C m, with C i D 1 D n. Objective function f :

More information

Metaheuristics and Local Search. Discrete optimization problems. Solution approaches

Metaheuristics and Local Search. Discrete optimization problems. Solution approaches Discrete Mathematics for Bioinformatics WS 07/08, G. W. Klau, 31. Januar 2008, 11:55 1 Metaheuristics and Local Search Discrete optimization problems Variables x 1,...,x n. Variable domains D 1,...,D n,

More information

Normed Distances and Their Applications in Optimal Circuit Design

Normed Distances and Their Applications in Optimal Circuit Design Optimization and Enineerin, 4, 197 213, 2003 c 2003 Kluwer Academic Publishers. Manufactured in he Netherlands Normed Distances and heir Applications in Optimal Circuit Desin ABDEL-KARIM S.O. HASSAN Department

More information

Linearized optimal power flow

Linearized optimal power flow Linearized optimal power flow. Some introductory comments The advantae of the economic dispatch formulation to obtain minimum cost allocation of demand to the eneration units is that it is computationally

More information

Optimal capacitor placement in radial distribution networks with artificial honey bee colony algorithm

Optimal capacitor placement in radial distribution networks with artificial honey bee colony algorithm Bulletin of Environment, Pharmacology and Life Sciences Bull. Env.Pharmacol. Life Sci., Vol 4 [Spl issue 1] 2015: 255-260 2014 Academy for Environment and Life Sciences, India Online ISSN 2277-1808 Journal

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

V DD. M 1 M 2 V i2. V o2 R 1 R 2 C C

V DD. M 1 M 2 V i2. V o2 R 1 R 2 C C UNVERSTY OF CALFORNA Collee of Enineerin Department of Electrical Enineerin and Computer Sciences E. Alon Homework #3 Solutions EECS 40 P. Nuzzo Use the EECS40 90nm CMOS process in all home works and projects

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

Numerical experiments for inverse analysis of material properties and size in functionally graded materials using the Artificial Bee Colony algorithm

Numerical experiments for inverse analysis of material properties and size in functionally graded materials using the Artificial Bee Colony algorithm High Performance and Optimum Design of Structures and Materials 115 Numerical experiments for inverse analysis of material properties and size in functionally graded materials using the Artificial Bee

More information

ON SOLUTION OF NONLINEAR MODELS: A HYBRID ALGORITHM OF ARTIFICIAL BEE COLONY ALGORITHM AND ARTIFICIAL SHOWERING ALGORITHM

ON SOLUTION OF NONLINEAR MODELS: A HYBRID ALGORITHM OF ARTIFICIAL BEE COLONY ALGORITHM AND ARTIFICIAL SHOWERING ALGORITHM Pak. J. Statist. 2017 Vol. 33(5), 399-409 ON SOLUTION OF NONLINEAR MODELS: A HYBRID ALGORITHM OF ARTIFICIAL BEE COLONY ALGORITHM AND ARTIFICIAL SHOWERING ALGORITHM M. Luqman, M. Saeed and Javaid Ali Department

More information

The Bionic Lightweight Design of the Mid-rail Box Girder Based on the Bamboo Structure

The Bionic Lightweight Design of the Mid-rail Box Girder Based on the Bamboo Structure Wenmin Chen 1, Weian Fu 1, Zeqian Zhan 1, Min Zhan 2 Research Institute of Mechanical Enineerin, Southwest Jiaoton University, Chendu, Sichuan, China (1), Department of Industrial and System Enineerin,

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

ARTIFICIAL BEE COLONY ALGORITHM FOR PROFIT BASED UNIT COMMITMENT USING MODIFIED PRE-PREPARED POWER DEMAND TABLE

ARTIFICIAL BEE COLONY ALGORITHM FOR PROFIT BASED UNIT COMMITMENT USING MODIFIED PRE-PREPARED POWER DEMAND TABLE ARTIFICIAL BEE COLONY ALGORITHM FOR PROFIT BASED UNIT COMMITMENT USING MODIFIED PRE-PREPARED POWER DEMAND TABLE Kuldip Deka 1, Dr. Barnali Goswami 2 1M.E. student, Assam Engineering College 2Associate

More information

CHAPTER 2 PROCESS DESCRIPTION

CHAPTER 2 PROCESS DESCRIPTION 15 CHAPTER 2 PROCESS DESCRIPTION 2.1 INTRODUCTION A process havin only one input variable used for controllin one output variable is known as SISO process. The problem of desinin controller for SISO systems

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

The 10 th international Energy Conference (IEC 2014)

The 10 th international Energy Conference (IEC 2014) The 10 th international Enery Conference (IEC 2014) Wind Turbine Interated Control durin Full Load Operation 1. Hamed Habibi and 2. Ahil Yousefi-Koma 1. MSc, Centre of Advanced Systems and Technoloies

More information

A Performance Comparison Study with Information Criteria for MaxEnt Distributions

A Performance Comparison Study with Information Criteria for MaxEnt Distributions A Performance Comparison Study with nformation Criteria for MaxEnt Distributions Ozer OZDEMR and Aslı KAYA Abstract n statistical modelin, the beinnin problem that has to be solved is the parameter estimation

More information

IEEE TRANSACTIONS ON BIOMEDICAL ENGINEERING 1

IEEE TRANSACTIONS ON BIOMEDICAL ENGINEERING 1 IEEE TRANSACTIONS ON BIOMEDICAL ENGINEERING 1 Intervention in Gene Reulatory Networks via a Stationary Mean-First-Passae-Time Control Policy Golnaz Vahedi, Student Member, IEEE, Babak Faryabi, Student

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

The Computational Complexity Analysis of a MINLP-Based Chemical Process Control Design

The Computational Complexity Analysis of a MINLP-Based Chemical Process Control Design J.Oto.Ktrl.Inst (J.Auto.Ctrl.Inst Vol (, 00 ISSN : 085-57 Abstract The Computational Complexity Analysis of a MINLP-Based Chemical Process Control Desin E. Ekawati, S. Yuliar Center for Instrumentation

More information

IMPROVED ARTIFICIAL BEE COLONY FOR DESIGN OF A RECONFIGURABLE ANTENNA ARRAY WITH DISCRETE PHASE SHIFTERS

IMPROVED ARTIFICIAL BEE COLONY FOR DESIGN OF A RECONFIGURABLE ANTENNA ARRAY WITH DISCRETE PHASE SHIFTERS Progress In Electromagnetics Research C, Vol. 25, 193 208, 2012 IMPROVED ARTIFICIAL BEE COLONY FOR DESIGN OF A RECONFIGURABLE ANTENNA ARRAY WITH DISCRETE PHASE SHIFTERS X. T. Li, X. W. Zhao, J. N. Wang,

More information

arxiv: v2 [math.oc] 11 Jun 2018

arxiv: v2 [math.oc] 11 Jun 2018 : Tiht Automated Converence Guarantees Adrien Taylor * Bryan Van Scoy * 2 Laurent Lessard * 2 3 arxiv:83.673v2 [math.oc] Jun 28 Abstract We present a novel way of eneratin Lyapunov functions for provin

More information

Strong Interference and Spectrum Warfare

Strong Interference and Spectrum Warfare Stron Interference and Spectrum Warfare Otilia opescu and Christopher Rose WILAB Ruters University 73 Brett Rd., iscataway, J 8854-86 Email: {otilia,crose}@winlab.ruters.edu Dimitrie C. opescu Department

More information

Implementation of Travelling Salesman Problem Using ant Colony Optimization

Implementation of Travelling Salesman Problem Using ant Colony Optimization RESEARCH ARTICLE OPEN ACCESS Implementation of Travelling Salesman Problem Using ant Colony Optimization Gaurav Singh, Rashi Mehta, Sonigoswami, Sapna Katiyar* ABES Institute of Technology, NH-24, Vay

More information

Nonlinear Model Reduction of Differential Algebraic Equation (DAE) Systems

Nonlinear Model Reduction of Differential Algebraic Equation (DAE) Systems Nonlinear Model Reduction of Differential Alebraic Equation DAE Systems Chuili Sun and Jueren Hahn Department of Chemical Enineerin eas A&M University Collee Station X 77843-3 hahn@tamu.edu repared for

More information

PARTICLE SWARM OPTIMISATION (PSO)

PARTICLE SWARM OPTIMISATION (PSO) PARTICLE SWARM OPTIMISATION (PSO) Perry Brown Alexander Mathews Image: http://www.cs264.org/2009/projects/web/ding_yiyang/ding-robb/pso.jpg Introduction Concept first introduced by Kennedy and Eberhart

More information

Stability Analysis of Nonlinear Systems using Dynamic-Routh's Stability Criterion: A New Approach

Stability Analysis of Nonlinear Systems using Dynamic-Routh's Stability Criterion: A New Approach Stability Analysis of Nonlinear Systems usin Dynamic-Routh's Stability Criterion: A New Approach Bast Kumar Sahu, St. M., IEEE Centre for Industrial Electronics d Robotics National Institute of Technoloy

More information

Steady State Analysis of Self-Excited Induction Generator using THREE Optimization Techniques

Steady State Analysis of Self-Excited Induction Generator using THREE Optimization Techniques ahilgupta / nternational Journal of Enineerin esearch and pplications (JE) N: 8-96 www.ijera.com ol., ssue, eptember- October 0, pp.6-7 teady tate nalysis of elf-excited nduction Generator usin THEE Optimization

More information

MODULE - 2 LECTURE NOTES 3 LAGRANGE MULTIPLIERS AND KUHN-TUCKER CONDITIONS

MODULE - 2 LECTURE NOTES 3 LAGRANGE MULTIPLIERS AND KUHN-TUCKER CONDITIONS Water Resources Systems Plannin and Manaement: Introduction to Optimization: arane Multipliers MODUE - ECTURE NOTES 3 AGRANGE MUTIPIERS AND KUHN-TUCKER CONDITIONS INTRODUCTION In the previous lecture the

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

OPTIMAL CONTROL OF AN HIV MODEL

OPTIMAL CONTROL OF AN HIV MODEL H. R. ERFANIAN and M. H. NOORI SKANDARI/ TMCS Vol.2 No. (211) 65-658 The ournal of Mathematics and Computer Science Available online at http://www.tmcs.com The ournal of Mathematics and Computer Science

More information

arxiv:cond-mat/ v1 [cond-mat.str-el] 15 Dec 2003

arxiv:cond-mat/ v1 [cond-mat.str-el] 15 Dec 2003 Imperial Collee Preprints PREPRINT arxiv:cond-mat/0312367v1 [cond-mat.str-el] 15 Dec 2003 First- and Second Order Phase Transitions in the Holstein- Hubbard Model W. Koller 1, D. Meyer 1, Y. Ōno2 and A.

More information

1 CHAPTER 7 PROJECTILES. 7.1 No Air Resistance

1 CHAPTER 7 PROJECTILES. 7.1 No Air Resistance CHAPTER 7 PROJECTILES 7 No Air Resistance We suppose that a particle is projected from a point O at the oriin of a coordinate system, the y-axis bein vertical and the x-axis directed alon the round The

More information

Blend of Local and Global Variant of PSO in ABC

Blend of Local and Global Variant of PSO in ABC Blend of Local and Global Variant of PSO in ABC Tarun Kumar Sharma School of Mathematics and Computer Applications Thapar University Patiala, India taruniitr@gmail.com Millie Pant Department of Applied

More information

Multi-objective Emission constrained Economic Power Dispatch Using Differential Evolution Algorithm

Multi-objective Emission constrained Economic Power Dispatch Using Differential Evolution Algorithm Multi-objective Emission constrained Economic Power Dispatch Using Differential Evolution Algorithm Sunil Kumar Soni, Vijay Bhuria Abstract The main aim of power utilities is to provide high quality power

More information

Mechanics Cycle 3 Chapter 12++ Chapter 12++ Revisit Circular Motion

Mechanics Cycle 3 Chapter 12++ Chapter 12++ Revisit Circular Motion Chapter 12++ Revisit Circular Motion Revisit: Anular variables Second laws for radial and tanential acceleration Circular motion CM 2 nd aw with F net To-Do: Vertical circular motion in ravity Complete

More information

Health Monitoring of a Truss Bridge using Adaptive Identification

Health Monitoring of a Truss Bridge using Adaptive Identification Proceedins of the 27 IEEE Intellient Transportation Systems Conference Seattle, WA, USA, Sept. 3 - Oct. 3, 27 WeC.4 Health Monitorin of a Truss Bride usin Adaptive Identification James W. Fonda, Student

More information

A HYBRID ARTIFICIAL BEE COLONY OPTIMIZATION AND QUANTUM EVOLUTIONARY ALGORITHM FOR CONTINUOUS OPTIMIZATION PROBLEMS

A HYBRID ARTIFICIAL BEE COLONY OPTIMIZATION AND QUANTUM EVOLUTIONARY ALGORITHM FOR CONTINUOUS OPTIMIZATION PROBLEMS International Journal of Neural Systems, Vol., No. 1 (10) 39 50 c World Scientific Publishing Company DOI: 10.12/S012906571000222X A HYBRID ARTIFICIAL BEE COLONY OPTIMIZATION AND QUANTUM EVOLUTIONARY ALGORITHM

More information

ENERGY LOSS MINIMIZATION AND RELIABILITY ENHANCEMENT IN RADIAL DISTRIBUTION SYSTEMS DURING LINE OUTAGES

ENERGY LOSS MINIMIZATION AND RELIABILITY ENHANCEMENT IN RADIAL DISTRIBUTION SYSTEMS DURING LINE OUTAGES ENERGY LOSS MINIMIZATION AND RELIABILITY ENHANCEMENT IN RADIAL DISTRIBUTION SYSTEMS DURING LINE OUTAGES N. Gnanasekaran 1, S. Chandramohan 2, P. Sathish Kumar 3 and T. D. Sudhakar 4 1 Misrimal Navajee

More information

FLUID flow in a slightly inclined rectangular open

FLUID flow in a slightly inclined rectangular open Numerical Solution of de St. Venant Equations with Controlled Global Boundaries Between Unsteady Subcritical States Aldrin P. Mendoza, Adrian Roy L. Valdez, and Carlene P. Arceo Abstract This paper aims

More information

Scheduling non-preemptive hard real-time tasks with strict periods

Scheduling non-preemptive hard real-time tasks with strict periods Schedulin non-preemptive hard real-time tasks with strict periods Mohamed MAROUF INRIA Rocquencourt Domaine de Voluceau BP 05 785 Le Chesnay Cedex - France Email: mohamed.marouf@inria.fr Yves SOREL INRIA

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

PHY 133 Lab 1 - The Pendulum

PHY 133 Lab 1 - The Pendulum 3/20/2017 PHY 133 Lab 1 The Pendulum [Stony Brook Physics Laboratory Manuals] Stony Brook Physics Laboratory Manuals PHY 133 Lab 1 - The Pendulum The purpose of this lab is to measure the period of a simple

More information

Artificial Bee Colony Based Power System Stabilizer Design for a Turbo-Generator in a Single-Machine Power System

Artificial Bee Colony Based Power System Stabilizer Design for a Turbo-Generator in a Single-Machine Power System Artificial Bee Colony Based Power System Stabilizer Design for a Turbo-Generator in a Single-Machine Power System H. Shayeghi H. A. Shayanfar A. Ghasemi Technical Eng. Department E.E.Department Center

More information

DESIGN OF PI CONTROLLERS FOR MIMO SYSTEM WITH DECOUPLERS

DESIGN OF PI CONTROLLERS FOR MIMO SYSTEM WITH DECOUPLERS Int. J. Chem. Sci.: 4(3), 6, 598-6 ISSN 97-768X www.sadurupublications.com DESIGN OF PI CONTROLLERS FOR MIMO SYSTEM WITH DECOUPLERS A. ILAKKIYA, S. DIVYA and M. MANNIMOZHI * School of Electrical Enineerin,

More information

Congestion Management by integrating Distributed Generation using Cuckoo Search Algorithm

Congestion Management by integrating Distributed Generation using Cuckoo Search Algorithm Conestion Manaement by interatin Distributed Generation usin Cuckoo Search Alorithm Subhasish Deb, Assistant Professor, Mizoram University, Aizawl, India. subhasishdeb30@yahoo.co.in Abstract - Power system

More information

Bidirectional Clustering of Weights for Finding Succinct Multivariate Polynomials

Bidirectional Clustering of Weights for Finding Succinct Multivariate Polynomials IJCSNS International Journal of Computer Science and Network Security, VOL.8 No.5, May 28 85 Bidirectional Clusterin of Weihts for Findin Succinct Multivariate Polynomials Yusuke Tanahashi and Ryohei Nakano

More information

Automatic Calibration Procedure for a Robotic Manipulator Force Observer

Automatic Calibration Procedure for a Robotic Manipulator Force Observer Automatic Calibration Procedure for a Robotic Manipulator Force Observer Gámez García, Javier; Robertsson, Anders; Gómez Ortea, Juan; Johansson, Rolf Published in: Robotics and Automation, 25. ICRA 25.

More information

Genetic Algorithm Approach to Nonlinear Blind Source Separation

Genetic Algorithm Approach to Nonlinear Blind Source Separation Genetic Alorithm Approach to Nonlinear Blind Source Separation F. Roas, C.G. Puntonet, I.Roas, J. Ortea, A. Prieto Dept. of Computer Architecture and Technoloy, University of Granada. fernando@atc.ur.es,

More information

Computer-Aided Design. Teaching learning-based optimization: A novel method for constrained mechanical design optimization problems

Computer-Aided Design. Teaching learning-based optimization: A novel method for constrained mechanical design optimization problems Computer-Aided Design 43 (011) 303 315 Contents lists available at ScienceDirect Computer-Aided Design journal homepage: www.elsevier.com/locate/cad Teaching learning-based optimization: A novel method

More information

Solution sheet 9. λ < g u = 0, λ = g α 0 : u = αλ. C(u, λ) = gλ gλ = 0

Solution sheet 9. λ < g u = 0, λ = g α 0 : u = αλ. C(u, λ) = gλ gλ = 0 Advanced Finite Elements MA5337 - WS17/18 Solution sheet 9 On this final exercise sheet about variational inequalities we deal with nonlinear complementarity functions as a way to rewrite a variational

More information

Stochastic learning feedback hybrid automata for dynamic power management in embedded systems

Stochastic learning feedback hybrid automata for dynamic power management in embedded systems Electrical and Computer Enineerin Faculty Publications Electrical & Computer Enineerin 2005 Stochastic learnin feedback hybrid automata for dynamic power manaement in embedded systems T. Erbes Eurecom

More information

Investigation of thermal effects on analyses of truss structures via metaheuristic approaches

Investigation of thermal effects on analyses of truss structures via metaheuristic approaches Investigation of thermal effects on analyses of truss structures via metaheuristic approaches YUSUF CENGĐZ TOKLU Department of Civil Engineering, Faculty of Engineering, Bilecik Şeyh Edebali University,

More information

Advanced Methods Development for Equilibrium Cycle Calculations of the RBWR. Andrew Hall 11/7/2013

Advanced Methods Development for Equilibrium Cycle Calculations of the RBWR. Andrew Hall 11/7/2013 Advanced Methods Development for Equilibrium Cycle Calculations of the RBWR Andrew Hall 11/7/2013 Outline RBWR Motivation and Desin Why use Serpent Cross Sections? Modelin the RBWR Axial Discontinuity

More information

SOLVING STRUCTURAL ENGINEERING DESIGN OPTIMIZATION PROBLEMS USING AN ARTIFICIAL BEE COLONY ALGORITHM. Harish Garg. (Communicated by Cheng-Chew Lim)

SOLVING STRUCTURAL ENGINEERING DESIGN OPTIMIZATION PROBLEMS USING AN ARTIFICIAL BEE COLONY ALGORITHM. Harish Garg. (Communicated by Cheng-Chew Lim) JOURNAL OF INDUSTRIAL AND doi:10.3934/jimo.2014.10.777 MANAGEMENT OPTIMIZATION Volume 10, Number 3, July 2014 pp. 777 794 SOLVING STRUCTURAL ENGINEERING DESIGN OPTIMIZATION PROBLEMS USING AN ARTIFICIAL

More information

Analysis of visibility level in road lighting using image processing techniques

Analysis of visibility level in road lighting using image processing techniques Scientific Research and Essays Vol. 5 (18), pp. 2779-2785, 18 September, 2010 Available online at http://www.academicjournals.or/sre ISSN 1992-2248 2010 Academic Journals Full enth Research Paper Analysis

More information

A Mathematical Model for the Fire-extinguishing Rocket Flight in a Turbulent Atmosphere

A Mathematical Model for the Fire-extinguishing Rocket Flight in a Turbulent Atmosphere A Mathematical Model for the Fire-extinuishin Rocket Fliht in a Turbulent Atmosphere CRISTINA MIHAILESCU Electromecanica Ploiesti SA Soseaua Ploiesti-Tiroviste, Km 8 ROMANIA crismihailescu@yahoo.com http://www.elmec.ro

More information

Research Article A Novel Differential Evolution Invasive Weed Optimization Algorithm for Solving Nonlinear Equations Systems

Research Article A Novel Differential Evolution Invasive Weed Optimization Algorithm for Solving Nonlinear Equations Systems Journal of Applied Mathematics Volume 2013, Article ID 757391, 18 pages http://dx.doi.org/10.1155/2013/757391 Research Article A Novel Differential Evolution Invasive Weed Optimization for Solving Nonlinear

More information

Round-off Error Free Fixed-Point Design of Polynomial FIR Predictors

Round-off Error Free Fixed-Point Design of Polynomial FIR Predictors Round-off Error Free Fixed-Point Desin of Polynomial FIR Predictors Jarno. A. Tanskanen and Vassil S. Dimitrov Institute of Intellient Power Electronics Department of Electrical and Communications Enineerin

More information

Transactions of the VŠB Technical University of Ostrava, Mechanical Series No. 2, 2009, vol. LV, article No. 1683

Transactions of the VŠB Technical University of Ostrava, Mechanical Series No. 2, 2009, vol. LV, article No. 1683 Transactions of the VŠB Technical University of Ostrava, Mechanical Series No. 2, 2009, vol. LV, article No. 1683 Leszek CEDRO *, Dariusz JANECKI ** IDENTIFICATION OF A MANIPULATOR MODEL USING THE INPUT

More information

Effect of Frequency and Moisture Variation on Dielectric Properties of Pearl Millet in Powder Form

Effect of Frequency and Moisture Variation on Dielectric Properties of Pearl Millet in Powder Form J. Environ. Nanotechnol. Volume (013) 01-05 pp. ISSN (Print) : 79-0748 ISSN (Online) : 319-5541 Effect of Frequency and Moisture Variation on Dielectric Properties of Pearl Millet in Powder Form Nidhi

More information

Optimization in Predictive Control Algorithm

Optimization in Predictive Control Algorithm Latest rends in Circits, Systems, Sinal Processin and Atomatic Control Optimization in Predictive Control Alorithm JAN ANOŠ, MAREK KUBALČÍK omas Bata University in Zlín, Faclty of Applied Informatics Nám..

More information

Keywords: Solid-Fluid Equilibrium, Solid-Fluid-Fluid Equilibrium, Continuation Method, binary n-alkane systems.

Keywords: Solid-Fluid Equilibrium, Solid-Fluid-Fluid Equilibrium, Continuation Method, binary n-alkane systems. APPLICATION OF CONTINUATION METHOD TO THE CALCULATION OF OLID -FLUID -FLUID AND RELATED OLID -FLUID EQUILIBRIA OF BINARY AYMMETRIC MIXTURE IN WIDE RANGE OF CONDITION.B. Rodriuez-Reartes (1), M. Cismondi

More information

A Multigrid-like Technique for Power Grid Analysis

A Multigrid-like Technique for Power Grid Analysis A Multirid-like Technique for Power Grid Analysis Joseph N. Kozhaya, Sani R. Nassif, and Farid N. Najm 1 Abstract Modern sub-micron VLSI desins include hue power rids that are required to distribute lare

More information

Stochastic programming decision for inland container liner route stowage planning with uncertain container weight

Stochastic programming decision for inland container liner route stowage planning with uncertain container weight Stochastic prorammin decision for inland container liner route stowae plannin with uncertain container weiht Jun Li a, Yu Zhan a*, Sanyou Ji a, Jie Ma b a School of Loistics Enineerin, Wuhan University

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

Correlated Component Regression: A Fast Parsimonious Approach for Predicting Outcome Variables from a Large Number of Predictors

Correlated Component Regression: A Fast Parsimonious Approach for Predicting Outcome Variables from a Large Number of Predictors Correlated Component Reression: A Fast Parsimonious Approach for Predictin Outcome Variables from a Lare Number of Predictors Jay Maidson, Ph.D. Statistical Innovations COMPTSTAT 2010, Paris, France 1

More information

4.3. Solving Friction Problems. Static Friction Problems. Tutorial 1 Static Friction Acting on Several Objects. Sample Problem 1.

4.3. Solving Friction Problems. Static Friction Problems. Tutorial 1 Static Friction Acting on Several Objects. Sample Problem 1. Solvin Friction Problems Sometimes friction is desirable and we want to increase the coefficient of friction to help keep objects at rest. For example, a runnin shoe is typically desined to have a lare

More information

Evaluation of the SONAR Meter in Wet Gas Flow for an Offshore Field Development

Evaluation of the SONAR Meter in Wet Gas Flow for an Offshore Field Development Evaluation of the SONAR Meter in Wet Gas Flow for an Offshore Field Development Anela Floyd, BP Siddesh Sridhar and Gabriel Dranea, Expro Meters 1 INTRODUCTION The ABC project is a hih pressure as condensate

More information

Comparison between ABC and CS Algorithms with respect to Capacitor Allocations in Radial Distribution Networks to Minimize of Power Loss

Comparison between ABC and CS Algorithms with respect to Capacitor Allocations in Radial Distribution Networks to Minimize of Power Loss Comparison between ABC and CS Algorithms with respect to Capacitor Allocations in Radial Distribution Networks to Minimize of Power Loss E Kalyana Chakravarthy 1, M Ramasekhara Reddy 2 1PG Student Dept.

More information

Algorithms and Complexity theory

Algorithms and Complexity theory Algorithms and Complexity theory Thibaut Barthelemy Some slides kindly provided by Fabien Tricoire University of Vienna WS 2014 Outline 1 Algorithms Overview How to write an algorithm 2 Complexity theory

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

Power system reconfiguration and loss minimization for a distribution systems using Catfish PSO algorithm

Power system reconfiguration and loss minimization for a distribution systems using Catfish PSO algorithm Front. Energy 2014, 8(4): 434 442 DOI 10.1007/s11708-014-0313-y RESEARCH ARTICLE K Sathish KUMAR, S NAVEEN Power system reconfiguration and loss minimization for a distribution systems using Catfish PSO

More information

A Constant Complexity Fair Scheduler with O(log N) Delay Guarantee

A Constant Complexity Fair Scheduler with O(log N) Delay Guarantee A Constant Complexity Fair Scheduler with O(lo N) Delay Guarantee Den Pan and Yuanyuan Yan 2 Deptment of Computer Science State University of New York at Stony Brook, Stony Brook, NY 79 denpan@cs.sunysb.edu

More information

6 Mole Concept. g mol. g mol. g mol ) + 1( g : mol ratios are the units of molar mass. It does not matter which unit is on the

6 Mole Concept. g mol. g mol. g mol ) + 1( g : mol ratios are the units of molar mass. It does not matter which unit is on the What is a e? 6 Mole Concept The nature of chemistry is to chane one ecule into one or more new ecules in order to create new substances such as paints, fertilizers, food additives, medicines, etc. When

More information

The self-tuning PID control in a slider crank mechanism system by applying particle swarm optimization approach

The self-tuning PID control in a slider crank mechanism system by applying particle swarm optimization approach Mechatronics 16 (26) 513 522 The self-tunin PD control in a slider crank mechanism system by applyin particle swarm optimization approach a,c Chih-Chen Kao a, Chin-Wen Chuan b, Ron-Fon Fun a, * a Department

More information

STOCHASTIC OPTIMIZATION OF MULTIPLEX CHARGES BASED ON INTERIOR BALLISTICS SIMULATIONS

STOCHASTIC OPTIMIZATION OF MULTIPLEX CHARGES BASED ON INTERIOR BALLISTICS SIMULATIONS STOCHASTIC OPTIMIZATION OF MULTIPLEX CHARGES BASED ON INTERIOR BALLISTICS SIMULATIONS A B Caldeira, T L B Cury, A L T Rezende, and A V Gomes Instituto Militar de Enenharia Seção de Enenharia Mecânica e

More information

Intuitionistic Fuzzy Estimation of the Ant Methodology

Intuitionistic Fuzzy Estimation of the Ant Methodology BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 9, No 2 Sofia 2009 Intuitionistic Fuzzy Estimation of the Ant Methodology S Fidanova, P Marinov Institute of Parallel Processing,

More information

Strategies for Sustainable Development Planning of Savanna System Using Optimal Control Model

Strategies for Sustainable Development Planning of Savanna System Using Optimal Control Model Strateies for Sustainable Development Plannin of Savanna System Usin Optimal Control Model Jiabao Guan Multimedia Environmental Simulation Laboratory School of Civil and Environmental Enineerin Georia

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

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

Teams to exploit spatial locality among agents

Teams to exploit spatial locality among agents Teams to exploit spatial locality amon aents James Parker and Maria Gini Department of Computer Science and Enineerin, University of Minnesota Email: [jparker,ini]@cs.umn.edu Abstract In many situations,

More information

Optimal Performance Enhancement of Capacitor in Radial Distribution System Using Fuzzy and HSA

Optimal Performance Enhancement of Capacitor in Radial Distribution System Using Fuzzy and HSA IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 9, Issue 2 Ver. I (Mar Apr. 2014), PP 26-32 Optimal Performance Enhancement of Capacitor in

More information

DETERMINATION OF OPTIMAL HYDRO GENERATING UNIT COMBINATION IN OPERATION

DETERMINATION OF OPTIMAL HYDRO GENERATING UNIT COMBINATION IN OPERATION International Journal on Inmation Technoloies & Security,, 07 5 DETERMINTION OF OTIML HYDRO GENERTING UNIT COMINTION IN OERTION Sofija Nikolova-oceva, nton Chaushevski, Dimitar Dimitrov Faculty of Electrical

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

Capacitor Placement for Economical Electrical Systems using Ant Colony Search Algorithm

Capacitor Placement for Economical Electrical Systems using Ant Colony Search Algorithm Capacitor Placement for Economical Electrical Systems using Ant Colony Search Algorithm Bharat Solanki Abstract The optimal capacitor placement problem involves determination of the location, number, type

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

Numerical Study of the High Speed Compressible Flow with Non-Equilibrium Condensation in a Supersonic Separator

Numerical Study of the High Speed Compressible Flow with Non-Equilibrium Condensation in a Supersonic Separator Journal of Clean Enery Technoloies, Vol. 3, No. 5, September 2015 Numerical Study of the Hih Speed Compressible Flow with Non-Equilibrium Condensation in a Supersonic Separator Liu Xinwei, Liu Zhonlian,

More information

DE [39] PSO [35] ABC [7] AO k/maxiter e-20

DE [39] PSO [35] ABC [7] AO k/maxiter e-20 3. Experimental results A comprehensive set of benchmark functions [18, 33, 34, 35, 36, 37, 38] has been used to test the performance of the proposed algorithm. The Appendix A (Table A1) presents the functions

More information