Power Electronic Circuits Design: A Particle Swarm Optimization Approach *

Size: px
Start display at page:

Download "Power Electronic Circuits Design: A Particle Swarm Optimization Approach *"

Transcription

1 Power Electronic Circuits Design: A Particle Swarm Optimization Approach * Jun Zhang, Yuan Shi, and Zhi-hui Zhan ** Department of Computer Science, Sun Yat-sen University, China, junzhang@ieee.org Abstract. The development of power electronics results in a growing need for automatic design and optimization for power electronic circuits (PECs). This paper presents a particle swarm optimization (PSO) approach for the PECs design. The optimization problem is divided into two processes using a decoupled technique and PSO is employed to optimize the values of the circuit components in the power conversion stage (PCS) and the feedback network (FN), respectively. A simple mutation operator is also incorporated into PSO to enhance the population diversity. The algorithm is applied to the optimization of a buck regulator for meeting requirements under large-signal changes and at steady state. Compared with genetic algorithm (GA), PSO can yield more optimized values of circuit components with lower computational effort. Keywords: Particle swarm optimization (PSO), power electronic circuits (PECs), circuit optimization. 1 Introduction Power electronics is the technology to efficiently control the electric energy by supplying voltages or currents in a form that is suited for user loads. Power electronic circuits (PECs) have been widely used in various applications, such as mobile devices, computers, televisions and uninterruptible power supply. With the advances in semiconductor technology and electronic packaging as well as the increasing demand in industry, automatic design and optimization of PECs becomes a growing need [1]. The methods for automated synthesis and optimization of circuits are either deterministic or stochastic. Deterministic approaches, like the gradient method and the hillclimbing technique [1] [2], might easily be trapped into local optima, as high nonlinearity always involved in PECs optimization. Also, the performance of some deterministic methods is significantly dependent on the initial starting point of the search. On the other hand, stochastic methods tend to be more suitable for PECs optimization since they explore the search space more extensively. Recently, a class of stochastic methods, called evolutionary algorithms (EAs) has attracted many researchers attentions due to its high * This work was supported by NSF of China Project No and the Scientific Research Foundation for the Returned Overseas Chinese Scholars, State Education Ministry, P.R. China. ** Corresponding author. X. Li et al. (Eds.): SEAL 2008, LNCS 5361, pp , Springer-Verlag Berlin Heidelberg 2008

2 606 J. Zhang, Y. Shi, and Z.-h. Zhan global search capability. EAs are population-based search techniques inspired by natural mechanisms or phenomenon. During the last several decades, many EAs, such as genetic algorithms (GAs) [3] and particle swarm optimization (PSO) [4] have been proposed and applied to plenty of real-world optimization problems. GAs perform search by simulating the natural evolutionary process. They adopt three evolutionary operations, namely selection, crossover and mutation. A variety of GAs-based design schemes have been used in analog circuits, like transconductance amplifier [5], voltage reference circuit [6], loaded wire antenna [7], etc. Recently, GAs have been successfully applied in the optimization of PECs [8]. Although the optimized results demonstrated the effectiveness of the GAs-based methods, more effective and efficient approaches are still required for the optimization of PECs. Different from GAs, PSO solves optimization problems by emulating the flocking behavior of birds. It employs a swarm of particles, which represent feasible solutions, to search in a cooperative manner. Each particle has its position and velocity, which are iteratively updated by tracing the personal best position found so far and the global best position found so far. PSO has also been used in analog circuit synthesis, such as RF circuit design [9], microwave filter design [10] and on-chip spiral inductor synthesis [11]. Compared with GA, PSO is easier to implement because of its simple concept. Moreover, PSO converges faster, which can considerably reduce the computational time. In this paper, a PSO approach for the optimization of PECs is presented. A PEC is decoupled into two parts and particles are employed to find optimal values for the components of each part, aiming to satisfy the specified static and dynamic requirements. To improve the population diversity, a mutation operator is incorporated into the PSO. The algorithm is illustrated with the design of a buck regulator. The optimized results are compared with those obtained by the GA approach [8], showing that PSO is a promising approach for design and optimization of PECs. The rest of this paper is organized as follows. Section 2 describes the decoupled structure of PECs. Section 3 gives a brief introduction of PSO. Section 4 shows the details of the algorithm for PECs optimization. The design of a buck regulator is illustrated in Section 5 and the conclusion is represented in Section 6. 2 Decoupled Structure of PECs Fig. 1 shows the basic block diagram of a PEC, in which the circuit is decoupled into two parts, namely the power conversion stage (PCS) and the feedback network (FN). PCS consists of I P resistors, J P inductors and K P capacitors, which transfers the power from the input source to the output load. FN consists of I F resistors, J F inductors and K F capacitors, which keeps the output voltage v o to a reference voltage v ref. The goal of the optimization is to find proper values for these circuit components, aiming to satisfy the static and dynamic responses. Although performing a wholecircuit optimization is feasible, it is computationally intensive since the number of variables is considerably large. In [8], a decoupled technique based on the circuit structure was proposed, which divided the optimization into two processes. One process optimized the component values in PCS and another process tackled FN. This decoupled technique is effective to reduce the computational effort and is adopted in this paper.

3 Power Electronic Circuits Design: A Particle Swarm Optimization Approach 607 Fig. 1. Block diagram of power electronics circuits 3 Particle Swarm Optimization PSO is an iterative approach that uses a swarm of M particles. Each particle has its own position and velocity that are vectors with N dimensions. The position of a particle represents a feasible solution in multidimensional search space, and its quality is evaluated by the fitness function. In addition, every particle memories two positions: the personal best position found by the particle so far (denoted as pbest) and the global best position found by the whole population so far (denoted as gbest). Thus, in PSO, the ith (i = 1, 2,, M) particle is represented by three vectors: The current position: xi = ( xi 1, xi2,..., xin) The current velocity: vi = ( vi 1, vi2,..., vin) The personal best position: pbesti = ( pbesti 1, pbesti2,..., pbestin) In every iteration, the velocity and position of each particle are updated following the equation below: v ( t + 1) = wv () t + c r ( pbest () t x ()) t + c r ( gbest () t x ()) t (1) ij ij 11 ij ij 2 2 ij ij where t is the iteration index, i is the particle index, and j is the dimension index. r 1 and r 2 are two random values generated with uniform probability from [0,1]. Parameter w>0 is called the inertia weight, which determines the impact of the previous velocity: a large inertia weight favors exploration while a small value favors exploitation. Parameters c 1 and c 2 control the influence of the personal best position and the global best position, respectively. Typically, the velocity is further restricted by a maximum velocity V max. Mathematically, the restriction rule is expressed by: v ( t+ 1), V < v ( t+ 1) < V vij ( t+ 1) = Vmax, j, vij ( t+ 1) > Vmax, j Vmax, j, vij( t + 1) < Vmax, j ij max, j ij max, j (2)

4 608 J. Zhang, Y. Shi, and Z.-h. Zhan where V max, j stands for the jth dimension of V max. Assume the search range of the jth variable is [l j, u j ], V max, j can be set by: Vmax, j = α ( uj lj) (3) where α is a positive parameter. After the velocity of the ith particle is updated, the particle moves to a new position according to the following equation: xij ( t+ 1) = xij ( t) + vij ( t+ 1) (4) Particles positions and velocities are updated repeatedly according to (1), (2) and (4) until meeting the terminal condition. Usually, the optimization process is terminated when the number of iterations reaches the maximum number MAX_ITER. PSO has been applied to a wide range of optimization problems due to its simple concept, easy implementation and fast convergence. However, PSO is sometimes found to be converged on local optima, the factor of which is the lack of the population diversity [12]. Therefore, incorporating an additional mutation operator can help prevent premature convergence, and thus enhance the algorithm s global search characteristics [13]. 4 PSO for PECs Optimization Based on the decoupled technique, PSO is employed, respectively, for the optimization of PCS and FN. The position of each particle is coded as a vector containing the component values. 4.1 Fitness Function The fitness function is used to evaluate the quality of a particle s position. Here, we adopt the fitness function in [8] which is based on a time-domain simulation of PECs. For PCS, the fitness function is defined considering the following objectives with each one expressed by an objective function (OF x ). 1) steady-state error of the output voltage OF 1 2) operation constraints of the circuit components OF 2 3) steady-state ripple voltage on the output OF 3 4) intrinsic factors concerning with the components OF 4 Hence, the fitness function for PCS is defined as: RL,max Vin,max P xpcs OF1 RL vin xpcs OF2 RL vin xpcs RL= RL,min, δrl vin= Vin,min, δvin (5) Φ ( ) = [ (,, ) + (,, ) + OF ( R, v, x ) + OF ( R, v, x )] 3 L in PCS 4 L in PCS where x PCS represents the position vector for PCS. For FN, the fitness function is defined based on the following considerations: 1) steady state error of output OF 5 2) maximum overshoot and undershoot, damping ratio, and the settling time OF 6 3) steady-state ripple voltage on output OF 7

5 Power Electronic Circuits Design: A Particle Swarm Optimization Approach 609 4) dynamic behaviors during the large-signal change OF 8 Thus, the fitness function for FN is defined as: RL,max Vin,max F xfn OF5 RL vin xfn OF6 RL vin xfn RL= RL,min, δrl vin= Vin,min, δvin (6) Φ ( ) = [ (,, ) + (,, ) where x FN represents the position vector for FN. + OF ( R, v, x ) + OF ( R, v, x )] 7 L in FN 8 L in FN 4.2 Steps of Optimization The optimization processes for PCS and FN are similar except for the definition of the fitness function. The steps of optimization are illustrated as follows and the flowchart of the algorithm is provided in Fig. 2. Fig. 2. Flowchart of PSO for PECs optimization Step 1) Initialize a number of M particles. For the jth circuit component, randomly generate a feasible value within the user-defined search range of [l j, u j ]. The jth velocity is assigned by a random value in the range of [ V max, j, V max, j ]. Step 2) Calculate the fitness value for each particle. Use the fitness function (5) for PCS and (6) for FN, respectively. Step 3) Update the personal best position (pbest) for each particle according to its fitness value. Update the global best position (gbest) for the whole population. Step 4) Update the position and velocity of every particle. Step 5) Apply the mutation operator to enhance the population diversity. The operator is performed as follows. For every dimension of each particle, a random value

6 610 J. Zhang, Y. Shi, and Z.-h. Zhan r [0,1] is generated and is compared with the predetermined mutation probability P m. If r is smaller than P m, the corresponding component value is randomly reinitialized. Step 6) If the number of iterations exceeds a maximum value MAX_ITER, the optimization process will be ended, otherwise go to Step 2). 5 Design Example In this section, the above algorithm is illustrated with the design of a buck regulator with overcurrent protection [14] as shown in Fig. 3. The required specifications are listed in Table 1. For the optimization of PCS, L and C are the designed components and R L, r C, r E are assumed to be known. For FN, all component values are required to be optimized. Fig. 3. Schematic of a buck regulator with over current protection Table 1. Required specifications Attribute Input voltage range Output load range Nominal output voltage Switching frequency Maximum setting time Value 40V±20V 5Ω~10Ω 5V±1% 20kHz 20ms The parameter setting for PSO is given in Table 2, in which w is decreased linearly from 1.2 to 0.6 though the optimization process. As suggested in [15], this strategy well balances the exploration and exploitation of the search.

7 Power Electronic Circuits Design: A Particle Swarm Optimization Approach 611 Table 2. Parameter setting for PSO Parameter Value POPSIZE 30 MAX_ITER 500 w c c α 0.5 P m 0.02 The fitness value versus the number of iterations in the optimization of FN is shown in Fig. 4. Compared with the related figure given in [8] which was optimized by a GA (the optimizing curve of GA is not presented here, refer to Fig. 7(b) in [8]), PSO converges much faster and achieves significantly higher fitness value. Apparently, using PSO for PECs optimization can considerably lower the computational effort. Fig. 4. Fitness values versus the number of iterations in the optimization of FN Table 3. Optimized results after 500 iterations Part Parameter Value L 200μH PCS C 100μF R C3 470Ω C 2 0.2μF C μF FN R 2 3MΩ C μF R kΩ 60Ω R 1

8 612 J. Zhang, Y. Shi, and Z.-h. Zhan (a) v o and v con (b) i L Fig. 5. Simulated startup transient responses when v in is 20V and R L is 5Ω (a) v o and v con (b) i L Fig. 6. Simulated transient responses when v in is changed from 20V to 40V and R L is 5Ω

9 Power Electronic Circuits Design: A Particle Swarm Optimization Approach 613 (a) v o and v con (b) i L Fig. 7. Simulated transient responses when R L is changed from 5Ω to 10Ω and v in is 40V Table 3 gives the optimized values of PCS and FN obtained by the proposed PSO. Fig. 5 shows the simulated startup transients, when the input voltage is 20V and the output load is 5Ω. The setting time of the circuit optimized by PSO is less than 7ms, which is shorter than that in [8]. Fig. 6 illustrates the simulated transient responses when the input voltage is changed from 20V to 40V. Fig. 7 shows the theoretical transients when the output load is changed from 5Ω to 10Ω. From the figures, it can be seen that, the circuit optimized by PSO has much smaller disturbances and shorter response time than the ones in [8], confirming the advantage of the PSO approach. 6 Conclusions This paper applies a PSO approach for the design and optimization of PECs. No complicated mathematical analysis of the whole circuit is required in the presented method. A design example on a buck regulator with overcurrent protection demonstrates the three advantages of the PSO approach: easy implementation, fast convergence and high global search capability, which can significantly improve the efficiency and effectiveness of PECs optimization and give highly-optimized values of circuit components.

10 614 J. Zhang, Y. Shi, and Z.-h. Zhan References 1. Verghese, G.C., Bruzos, C.A., Mahabir, K.N.: Averaged and sampled-data model for current-mode control: A reexamination. In: Proceedings PESC 1989, pp (1989) 2. Massara, R.E.: Optimization Methods in Electronic Circuit Design. Longman, New York (2000) 3. Holland, J.H.: Adaptation in natural and artificial systems. University of Michigan Press, Ann Arbor (1975) 4. Kennedy, J., Eberhart, R.C.: Particle swarm optimization. In: Proceedings IEEE Int. Conf. Neural Networks, vol. 4, pp (1995) 5. Dhanwada, N.N., Nunez-Aldana, A., Vemuri, R.: A genetic approach to simultaneous parameter space exploration and constraint transformation in analog synthesis. In: Proceedings IEEE Int. Sym. Circuits Systs., pp (1999) 6. Nam, D., Seo, Y., Park, L., Park, C., Kim, B.: Parameter optimization of a voltage reference circuit using EP. In: Proceedings IEEE Int. Conf. Evolutionary Computation, pp (1998) 7. Lee, K.C.: Genetic algorithms based analyses of nonlinearly loaded antenna arrays including mutual coupling effects. IEEE Trans. on Antennas and Propagation 5, (2003) 8. Zhang, J., Chung, H., Lo, W., Hui, S., Wu, A.: Implementation of a decoupled optimization technique for design of switching regulators using genetic algorithms. IEEE Trans. Power Electron 16, (2001) 9. Jinho, P., Kiyong, C., David, J.A.: Parasitic-Aware RF Circuit Design and Optimization. IEEE Trans. on Circuits and Systems-I 51, (2004) 10. Wen, W., Yilong, L., Jeffrey, S.F., Yong, Z.: Particle Swarm Optimization and Finite- Element Based Approach for Microwave Filter Design. IEEE Trans. on Magnetics 41, (2005) 11. Sushanta, K., Mandal, S.S., Amit, P.: ANN- and PSO-Based Synthesis of On-Chip Spiral Inductors for RF ICs. IEEE Trans. on Computer-aided Design of Integrated Circuits and Systems 27, (2008) 12. Ratnaweera, A., Halgamuge, S.K., Watson, H.C.: Self-organizing hierarchical particle swarm optimizer with time-varying acceleration coefficients. IEEE Trans. on Evolutionary Computation 8(3), (2004) 13. Paul, S.A.: An Investigation into Mutation Operators for Particle Swarm Optimization. In: Proceedings IEEE Congress on Evolutionary Computation, pp (2006) 14. Bedrosian, D., Vlach, J.: Time-domain analysis of networks with internally controlled switches. IEEE Trans. Circuits Systs. I. 39, (1992) 15. Shi, Y.H., Eberhart, R.C.: Parameter selection in particle swarm optimization. In: Proceedings of the 7th Ann. Conf. on Evolutionary Programming, San Diego, CA, pp (1998)

Chapter 4 Decoupled Optimization of Power Electronics Circuits Using Genetic Algorithms

Chapter 4 Decoupled Optimization of Power Electronics Circuits Using Genetic Algorithms Chapter 4 Decoupled Optimization of Power Electronics Circuits Using Genetic Algorithms J. Zhang, Henry S. H. Chung, W. L. Lo, S. Y. R. Hui, and A. Wu Department of Electronic Engineering City University

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

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

Self-Adaptive Ant Colony System for the Traveling Salesman Problem

Self-Adaptive Ant Colony System for the Traveling Salesman Problem Proceedings of the 29 IEEE International Conference on Systems, Man, and Cybernetics San Antonio, TX, USA - October 29 Self-Adaptive Ant Colony System for the Traveling Salesman Problem Wei-jie Yu, Xiao-min

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

Beta Damping Quantum Behaved Particle Swarm Optimization

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

More information

Binary Particle Swarm Optimization with Crossover Operation for Discrete Optimization

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

More information

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

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

More information

The output voltage is given by,

The output voltage is given by, 71 The output voltage is given by, = (3.1) The inductor and capacitor values of the Boost converter are derived by having the same assumption as that of the Buck converter. Now the critical value of the

More information

ACTA UNIVERSITATIS APULENSIS No 11/2006

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

More information

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

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

More information

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

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

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

More information

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

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

More information

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

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

More information

Sliding-Mode Control of the DC-DC Ćuk Converter in Discontinuous Conduction Mode

Sliding-Mode Control of the DC-DC Ćuk Converter in Discontinuous Conduction Mode Sliding-Mode Control of the DC-DC Ćuk Converter in Discontinuous Conduction Mode Vadood Hajbani, Mahdi Salimi 2 Department of Electrical Engineering, Ahar Branch, Islamic Azad University, Ahar, Iran. Email:

More information

DESIGN AND OPTIMIZATION OF EQUAL SPLIT BROADBAND MICROSTRIP WILKINSON POWER DI- VIDER USING ENHANCED PARTICLE SWARM OPTI- MIZATION ALGORITHM

DESIGN AND OPTIMIZATION OF EQUAL SPLIT BROADBAND MICROSTRIP WILKINSON POWER DI- VIDER USING ENHANCED PARTICLE SWARM OPTI- MIZATION ALGORITHM Progress In Electromagnetics Research, Vol. 118, 321 334, 2011 DESIGN AND OPTIMIZATION OF EQUAL SPLIT BROADBAND MICROSTRIP WILKINSON POWER DI- VIDER USING ENHANCED PARTICLE SWARM OPTI- MIZATION ALGORITHM

More information

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

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

More information

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

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

More information

Modeling, Analysis and Control of an Isolated Boost Converter for System Level Studies

Modeling, Analysis and Control of an Isolated Boost Converter for System Level Studies 1 Modeling, Analysis and Control of an Isolated Boost Converter for System Level Studies Bijan Zahedi, Student Member, IEEE, and Lars E. Norum, Senior Member, IEEE Abstract-- This paper performs a modeling

More information

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

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

More information

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

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

More information

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

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

More information

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

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

More information

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

A Particle Swarm Optimization (PSO) Primer

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

More information

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

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

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

More information

Available online at AASRI Procedia 1 (2012 ) AASRI Conference on Computational Intelligence and Bioinformatics

Available online at  AASRI Procedia 1 (2012 ) AASRI Conference on Computational Intelligence and Bioinformatics Available online at www.sciencedirect.com AASRI Procedia ( ) 377 383 AASRI Procedia www.elsevier.com/locate/procedia AASRI Conference on Computational Intelligence and Bioinformatics Chaotic Time Series

More information

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

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

More information

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

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

More information

Optimizing Semiconductor Devices by Self-organizing Particle Swarm

Optimizing Semiconductor Devices by Self-organizing Particle Swarm Optimizing Semiconductor Devices by Self-organizing Particle Swarm Xiao-Feng Xie Institute of Microelectronics Tsinghua University Beijing 100084 P. R. China Email:xiexf@ieee.org Wen-Jun Zhang Institute

More information

Distributed Particle Swarm Optimization

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

More information

An Improved Quantum Evolutionary Algorithm with 2-Crossovers

An Improved Quantum Evolutionary Algorithm with 2-Crossovers An Improved Quantum Evolutionary Algorithm with 2-Crossovers Zhihui Xing 1, Haibin Duan 1,2, and Chunfang Xu 1 1 School of Automation Science and Electrical Engineering, Beihang University, Beijing, 100191,

More information

PSO Based Predictive Nonlinear Automatic Generation Control

PSO Based Predictive Nonlinear Automatic Generation Control PSO Based Predictive Nonlinear Automatic Generation Control MUHAMMAD S. YOUSUF HUSSAIN N. AL-DUWAISH Department of Electrical Engineering ZAKARIYA M. AL-HAMOUZ King Fahd University of Petroleum & Minerals,

More information

Estimation of Circuit Component Values in Buck Converter using Efficiency Curve

Estimation of Circuit Component Values in Buck Converter using Efficiency Curve ISPACS2017 Paper 2017 ID 21 Nov. 9 NQ-L5 Paper ID 21, Estimation of Circuit Component Values in Buck Converter using Efficiency Curve S. Sakurai, N. Tsukiji, Y. Kobori, H. Kobayashi Gunma University 1/36

More information

EMC Considerations for DC Power Design

EMC Considerations for DC Power Design EMC Considerations for DC Power Design Tzong-Lin Wu, Ph.D. Department of Electrical Engineering National Sun Yat-sen University Power Bus Noise below 5MHz 1 Power Bus Noise below 5MHz (Solution) Add Bulk

More information

AN019. A Better Approach of Dealing with Ripple Noise of LDO. Introduction. The influence of inductor effect over LDO

AN019. A Better Approach of Dealing with Ripple Noise of LDO. Introduction. The influence of inductor effect over LDO Better pproach of Dealing with ipple Noise of Introduction It has been a trend that cellular phones, audio systems, cordless phones and portable appliances have a requirement for low noise power supplies.

More information

A Particle Swarm Optimization for Reactive Power Optimization

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

More information

Fuzzy adaptive catfish particle swarm optimization

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

More information

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

Research on fault prediction method of power electronic circuits based on least squares support vector machine

Research on fault prediction method of power electronic circuits based on least squares support vector machine 15 8 2011 8 ELECTRI C MACHINES AND CONTROL Vol. 15 No. 8 Aug. 2011 LS-SVM 1 2 1 1 1 1. 210016 2. 232001 least squares support vector machine LS-SVM Buck LS-SVM LS-SVM 2% TP 206 A 1007-449X 2011 08-0064-

More information

±1.0% (1.0 V to 1.45 V output product : ±15 mv)

±1.0% (1.0 V to 1.45 V output product : ±15 mv) S-1135 Series www.sii-ic.com HIGH RIPPLE-REJECTION LOW DROPOUT MIDDLE OUTPUT CURRENT CMOS VOLTAGE REGULATOR Seiko Instruments Inc., 28-21 Rev.2._ S-1135 Series, developed using the CMOS technology, is

More information

A New Improvement of Conventional PI/PD Controllers for Load Frequency Control With Scaled Fuzzy Controller

A New Improvement of Conventional PI/PD Controllers for Load Frequency Control With Scaled Fuzzy Controller International Journal of Engineering and Applied Sciences (IJEAS) ISSN: 2394-3661, Volume-2, Issue-4, April 2015 A New Improvement of Conventional PI/PD Controllers for Load Frequency Control With Scaled

More information

Modeling and Stability Analysis of a DC Microgrid Employing Distributed Control Algorithm

Modeling and Stability Analysis of a DC Microgrid Employing Distributed Control Algorithm Modeling and Stability Analysis of a DC Microgrid Employing Distributed Control Algorithm Niloofar Ghanbari, M. Mobarrez 2, and S. Bhattacharya Department of Electrical and Computer Engineering North Carolina

More information

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

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

More information

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

An efficient method for tracking a magnetic target using scalar magnetometer array

An efficient method for tracking a magnetic target using scalar magnetometer array DOI 10.1186/s40064-016-2170-0 RESEARCH Open Access An efficient method for tracking a magnetic target using scalar magnetometer array Liming Fan 1,2, Chong Kang 1,2*, Xiaojun Zhang 2, Quan Zheng 2 and

More information

Application of Swarm Intelligent Algorithm Optimization Neural Network in Network Security Hui Xia1

Application of Swarm Intelligent Algorithm Optimization Neural Network in Network Security Hui Xia1 4th International Conference on Machinery, Materials and Information Technology Applications (ICMMITA 06) Application of Swarm Intelligent Algorithm Optimization Neural Network in Network Security Hui

More information

DESIGN OF MULTILAYER MICROWAVE BROADBAND ABSORBERS USING CENTRAL FORCE OPTIMIZATION

DESIGN OF MULTILAYER MICROWAVE BROADBAND ABSORBERS USING CENTRAL FORCE OPTIMIZATION Progress In Electromagnetics Research B, Vol. 26, 101 113, 2010 DESIGN OF MULTILAYER MICROWAVE BROADBAND ABSORBERS USING CENTRAL FORCE OPTIMIZATION M. J. Asi and N. I. Dib Department of Electrical Engineering

More information

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

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

More information

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

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

More information

Research Article Optimum Barrier Height for SiC Schottky Barrier Diode

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

More information

PSO with Adaptive Mutation and Inertia Weight and Its Application in Parameter Estimation of Dynamic Systems

PSO with Adaptive Mutation and Inertia Weight and Its Application in Parameter Estimation of Dynamic Systems Vol. 37, No. 5 ACTA AUTOMATICA SINICA May, 2011 PSO with Adaptive Mutation and Inertia Weight and Its Application in Parameter Estimation of Dynamic Systems ALFI Alireza 1 Abstract An important problem

More information

The particle swarm optimization algorithm: convergence analysis and parameter selection

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

More information

ECE1750, Spring Week 11 Power Electronics

ECE1750, Spring Week 11 Power Electronics ECE1750, Spring 2017 Week 11 Power Electronics Control 1 Power Electronic Circuits Control In most power electronic applications we need to control some variable, such as the put voltage of a dc-dc converter,

More information

Electromagnetics in COMSOL Multiphysics is extended by add-on Modules

Electromagnetics in COMSOL Multiphysics is extended by add-on Modules AC/DC Module Electromagnetics in COMSOL Multiphysics is extended by add-on Modules 1) Start Here 2) Add Modules based upon your needs 3) Additional Modules extend the physics you can address 4) Interface

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

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

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

More information

Performance Evaluation of IIR Filter Design Using Multi-Swarm PSO

Performance Evaluation of IIR Filter Design Using Multi-Swarm PSO Proceedings of APSIPA Annual Summit and Conference 2 6-9 December 2 Performance Evaluation of IIR Filter Design Using Multi-Swarm PSO Haruna Aimi and Kenji Suyama Tokyo Denki University, Tokyo, Japan Abstract

More information

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

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

More information

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

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

More information

Mathematical Modeling and Dynamic Simulation of a Class of Drive Systems with Permanent Magnet Synchronous Motors

Mathematical Modeling and Dynamic Simulation of a Class of Drive Systems with Permanent Magnet Synchronous Motors Applied and Computational Mechanics 3 (2009) 331 338 Mathematical Modeling and Dynamic Simulation of a Class of Drive Systems with Permanent Magnet Synchronous Motors M. Mikhov a, a Faculty of Automatics,

More information

Limiting the Velocity in the Particle Swarm Optimization Algorithm

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

More information

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

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

More information

Robust Controller Design for Speed Control of an Indirect Field Oriented Induction Machine Drive

Robust Controller Design for Speed Control of an Indirect Field Oriented Induction Machine Drive Leonardo Electronic Journal of Practices and Technologies ISSN 1583-1078 Issue 6, January-June 2005 p. 1-16 Robust Controller Design for Speed Control of an Indirect Field Oriented Induction Machine Drive

More information

Maria Carmela Di Piazza. Gianpaolo Vitale. Photovoltaic Sources. Modeling and Emulation. ^ Springer

Maria Carmela Di Piazza. Gianpaolo Vitale. Photovoltaic Sources. Modeling and Emulation. ^ Springer Maria Carmela Di Piazza Gianpaolo Vitale Photovoltaic Sources Modeling and Emulation ^ Springer Part I 1 From the Nuclear Fusion to the Radiated Energy on the Earth... 3 1.1 Inside the Universe 3 1.2 The

More information

Discrete evaluation and the particle swarm algorithm

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

More information

Evolutionary Functional Link Interval Type-2 Fuzzy Neural System for Exchange Rate Prediction

Evolutionary Functional Link Interval Type-2 Fuzzy Neural System for Exchange Rate Prediction Evolutionary Functional Link Interval Type-2 Fuzzy Neural System for Exchange Rate Prediction 3. Introduction Currency exchange rate is an important element in international finance. It is one of the chaotic,

More information

Discrete Evaluation and the Particle Swarm Algorithm.

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

More information

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

Homework Assignment 08

Homework Assignment 08 Homework Assignment 08 Question 1 (Short Takes) Two points each unless otherwise indicated. 1. Give one phrase/sentence that describes the primary advantage of an active load. Answer: Large effective resistance

More information

Performance Comparison of PSO Based State Feedback Gain (K) Controller with LQR-PI and Integral Controller for Automatic Frequency Regulation

Performance Comparison of PSO Based State Feedback Gain (K) Controller with LQR-PI and Integral Controller for Automatic Frequency Regulation Performance Comparison of PSO Based Feedback Gain Controller with LQR-PI and Controller for Automatic Frequency Regulation NARESH KUMARI 1, A. N. JHA 2, NITIN MALIK 3 1,3 School of Engineering and Technology,

More information

Verification of a hypothesis about unification and simplification for position updating formulas in particle swarm optimization.

Verification of a hypothesis about unification and simplification for position updating formulas in particle swarm optimization. nd Workshop on Advanced Research and Technology in Industry Applications (WARTIA ) Verification of a hypothesis about unification and simplification for position updating formulas in particle swarm optimization

More information

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

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

More information

Measurement of Industrial Alcohol Concentration Capacitance Method and AIA-GA Nonlinear Correction

Measurement of Industrial Alcohol Concentration Capacitance Method and AIA-GA Nonlinear Correction Journal of Dalian University of Technology, 43(6), p.p.825-830. 12. Su Zuojing, Zhang Xianku (2012) The numerical simulation and analysis of parametric rolling for vessel YU KUN. Journal of Harbin Engineering

More information

LECTURE 8 Fundamental Models of Pulse-Width Modulated DC-DC Converters: f(d)

LECTURE 8 Fundamental Models of Pulse-Width Modulated DC-DC Converters: f(d) 1 ECTURE 8 Fundamental Models of Pulse-Width Modulated DC-DC Converters: f(d) I. Quasi-Static Approximation A. inear Models/ Small Signals/ Quasistatic I V C dt Amp-Sec/Farad V I dt Volt-Sec/Henry 1. Switched

More information

Journal of Engineering Science and Technology Review 7 (1) (2014)

Journal of Engineering Science and Technology Review 7 (1) (2014) Jestr Journal of Engineering Science and Technology Review 7 () (204) 32 36 JOURNAL OF Engineering Science and Technology Review www.jestr.org Particle Swarm Optimization-based BP Neural Network for UHV

More information

S-13R1 Series REVERSE CURRENT PROTECTION CMOS VOLTAGE REGULATOR. Features. Applications. Packages. ABLIC Inc., Rev.1.

S-13R1 Series REVERSE CURRENT PROTECTION CMOS VOLTAGE REGULATOR. Features. Applications. Packages.  ABLIC Inc., Rev.1. www.ablicinc.com REVERSE CURRENT PROTECTION CMOS VOLTAGE REGULATOR ABLIC Inc., 212-214 Rev.1.2_2 The, developed by using the CMOS technology, is a positive voltage regulator IC of 15 ma output current,

More information

Fuzzy Cognitive Maps Learning through Swarm Intelligence

Fuzzy Cognitive Maps Learning through Swarm Intelligence Fuzzy Cognitive Maps Learning through Swarm Intelligence E.I. Papageorgiou,3, K.E. Parsopoulos 2,3, P.P. Groumpos,3, and M.N. Vrahatis 2,3 Department of Electrical and Computer Engineering, University

More information

A Method of HVAC Process Object Identification Based on PSO

A Method of HVAC Process Object Identification Based on PSO 2017 3 45 313 doi 10.3969 j.issn.1673-7237.2017.03.004 a a b a. b. 201804 PID PID 2 TU831 A 1673-7237 2017 03-0019-05 A Method of HVAC Process Object Identification Based on PSO HOU Dan - lin a PAN Yi

More information

Integer weight training by differential evolution algorithms

Integer weight training by differential evolution algorithms Integer weight training by differential evolution algorithms V.P. Plagianakos, D.G. Sotiropoulos, and M.N. Vrahatis University of Patras, Department of Mathematics, GR-265 00, Patras, Greece. e-mail: vpp

More information

Improving Transient Stability of a Multi-Machine Power Network Using FACTS Devices and Nonlinear Controller Tuned by PSO

Improving Transient Stability of a Multi-Machine Power Network Using FACTS Devices and Nonlinear Controller Tuned by PSO Research Journal of Applied Sciences, Engineering and Technology 5(1): 280-285, 2013 ISSN: 2040-7459; e-issn: 2040-7467 Maxwell Scientific Organization, 2013 Submitted: June 04, 2012 Accepted: June 21,

More information

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

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

More information

Gaussian Harmony Search Algorithm: A Novel Method for Loney s Solenoid Problem

Gaussian Harmony Search Algorithm: A Novel Method for Loney s Solenoid Problem IEEE TRANSACTIONS ON MAGNETICS, VOL. 50, NO., MARCH 2014 7026405 Gaussian Harmony Search Algorithm: A Novel Method for Loney s Solenoid Problem Haibin Duan and Junnan Li State Key Laboratory of Virtual

More information

Construction of a reconfigurable dynamic logic cell

Construction of a reconfigurable dynamic logic cell PRAMANA c Indian Academy of Sciences Vol. 64, No. 3 journal of March 2005 physics pp. 433 441 Construction of a reconfigurable dynamic logic cell K MURALI 1, SUDESHNA SINHA 2 and WILLIAM L DITTO 3 1 Department

More information

RP mA, Ultra-Low Noise, Ultra-Fast CMOS LDO Regulator. General Description. Features. Applications. Ordering Information. Marking Information

RP mA, Ultra-Low Noise, Ultra-Fast CMOS LDO Regulator. General Description. Features. Applications. Ordering Information. Marking Information RP122 3mA, Ultra-Low Noise, Ultra-Fast CMOS LDO Regulator General Description The RP122 is designed for portable RF and wireless applications with demanding performance and space requirements. The RP122

More information

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

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

More information

Engineering Structures

Engineering Structures Engineering Structures 31 (2009) 715 728 Contents lists available at ScienceDirect Engineering Structures journal homepage: www.elsevier.com/locate/engstruct Particle swarm optimization of tuned mass dampers

More information

Feedback design for the Buck Converter

Feedback design for the Buck Converter Feedback design for the Buck Converter Portland State University Department of Electrical and Computer Engineering Portland, Oregon, USA December 30, 2009 Abstract In this paper we explore two compensation

More information

S-882Z Series ULTRA-LOW VOLTAGE OPERATION CHARGE PUMP IC FOR STEP-UP DC-DC CONVERTER STARTUP. Rev.1.2_00. Features. Applications.

S-882Z Series ULTRA-LOW VOLTAGE OPERATION CHARGE PUMP IC FOR STEP-UP DC-DC CONVERTER STARTUP. Rev.1.2_00. Features. Applications. ULTRA-LOW VOLTAGE OPERATION CHARGE PUMP IC FOR STEP-UP DC-DC CONVERTER STARTUP The is a charge pump IC for step-up DC-DC converter startup, which differs from conventional charge pump ICs, in that it uses

More information

Basic RL and RC Circuits R-L TRANSIENTS: STORAGE CYCLE. Engineering Collage Electrical Engineering Dep. Dr. Ibrahim Aljubouri

Basic RL and RC Circuits R-L TRANSIENTS: STORAGE CYCLE. Engineering Collage Electrical Engineering Dep. Dr. Ibrahim Aljubouri st Class Basic RL and RC Circuits The RL circuit with D.C (steady state) The inductor is short time at Calculate the inductor current for circuits shown below. I L E R A I L E R R 3 R R 3 I L I L R 3 R

More information

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

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

More information

ENHANCEMENT OF NANO-RC SWITCHING DELAY DUE TO THE RESISTANCE BLOW-UP IN InGaAs

ENHANCEMENT OF NANO-RC SWITCHING DELAY DUE TO THE RESISTANCE BLOW-UP IN InGaAs NANO: Brief Reports and Reviews Vol. 2, No. 4 (27) 233 237 c World Scientific Publishing Company ENHANCEMENT OF NANO-RC SWITCHING DELAY DUE TO THE RESISTANCE BLOW-UP IN InGaAs MICHAEL L. P. TAN, ISMAIL

More information

Adaptive Fuzzy Coordinated PSO Based Modeling of Controller with SVC and PSS for Transient Stability Enhancement in Multimachine Power System

Adaptive Fuzzy Coordinated PSO Based Modeling of Controller with SVC and PSS for Transient Stability Enhancement in Multimachine Power System Adaptive Fuzzy Coordinated PSO Based Modeling of Controller with SVC and PSS for Transient Stability Enhancement in Multimachine Power System Dr. J. Sangeetha 1, Dr. P. Manirajkumar 2 Associate Professor,

More information

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

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

More information

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

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

More information

AN ENERGY BASED MINIMUM-TIME OPTIMAL CONTROL OF DC-DC CONVERTERS

AN ENERGY BASED MINIMUM-TIME OPTIMAL CONTROL OF DC-DC CONVERTERS Michigan Technological University Digital Commons @ Michigan Tech Dissertations, Master's Theses and Master's Reports - Open Dissertations, Master's Theses and Master's Reports 2015 AN ENERGY BASED MINIMUM-TIME

More information

70 mv typ. (2.8 V output product, I OUT = 100 ma)

70 mv typ. (2.8 V output product, I OUT = 100 ma) S-1335 Series www.ablicinc.com HIGH RIPPLE-REJECTION SOFT-START FUNCTION CMOS VOLTAGE REGULATOR ABLIC Inc., 212-214 Rev.1.3_2 The S-1335 Series, developed by using the CMOS technology, is a positive voltage

More information

Particle Swarm Optimization. Abhishek Roy Friday Group Meeting Date:

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

More information