Deliverables. Genetic Algorithms- Basics. Characteristics of GAs. Switch Board Example. Genetic Operators. Schemata

Size: px
Start display at page:

Download "Deliverables. Genetic Algorithms- Basics. Characteristics of GAs. Switch Board Example. Genetic Operators. Schemata"

Transcription

1 Genetic Algorithms

2 Deliverables Genetic Algorithms- Basics Characteristics of GAs Switch Board Example Genetic Operators Schemata 6/12/2012 1:31 PM gdeepak.com 2

3 Genetic Algorithms-Basics Search Algorithms based on mechanics of natural selection and natural genetics. Biological Systems are robust and unparallel in their features of selfrepair, self-guidance and reproduction. These features don t exist in artificial intelligent systems. 6/12/2012 1:31 PM gdeepak.com 3

4 Broad Classification of search Methods Calculus based Random Enumerative 6/12/2012 1:31 PM gdeepak.com 4

5 Calculus based-indirect and Direct Indirect method Finds out local extrema by solving non-linear set of equations resulting from setting the gradient of the objective function equal to zero. Direct Method seeks local optima by hopping on the function and moving in a direction related to the local gradient. Which simply looks like hill climbing. Both Methods seek the optima in neighborhood of the current point. Real life applications are full with discontinuities and multimodal noisy search spaces. It is very easy to miss actual optima in many cases even after many improvements by researchers in calculus based methods. 6/12/2012 1:31 PM gdeepak.com 5

6 Enumerative Method In this method the search space is looked at one by one. It is very simple and attractive but the efficiency degrades very fast as the search space increases leading to exponential time complexities. It can not be called a robust scheme due to inherent limitations. 6/12/2012 1:31 PM gdeepak.com 6

7 Random search Not same as randomized technique or algorithms, both should not be confused. Random search in large search spaces becomes comparable to enumerative search. It also can not be called as robust scheme. 6/12/2012 1:31 PM gdeepak.com 7

8 Characteristics of GAs These work with coding of the parameter set, not the parameter themselves These search for a population of points, not a single point. These use payoff( objective function) information not derivatives or other knowledge These use probabilistic rules not deterministic rules 6/12/2012 1:31 PM gdeepak.com 8

9 Switch board example A device with five input switches. For every setting of the switch there is a output signal. Input is a string s consisting of particular setting of the switches. One of the possible coding of the string can be where first four switches are on and fifth is off. In some problems it is not as obvious to generate the coding. In other methods we move from one point to another looking for peak. This point-to-point method is the weakness which may give false peaks in multimodal space. In contrast here we start from multiple points and climb many peaks in parallel by improving each of those points. In this we choose random start with initial population of 4 strings which can be generated using coin flips /12/2012 1:31 PM gdeepak.com 9

10 Switch board example GAs are blind. There reliability on the auxiliary information about the problem is limited unlike gradient technique which needs derivatives and greedy technique requires most of the tabular parameters. However refusal to use the auxiliary information can place an upper bound on the performance of the algorithm GAs use probabilistic transition rules to guide their search. These use random choice as a tool to guide a search toward regions of the search space with likely improvement. 6/12/2012 1:31 PM gdeepak.com 10

11 Genetic Operators Reproduction Mutation Crossover 6/12/2012 1:32 PM gdeepak.com 11

12 Reproduction Individual strings are copied according to their fitness function which can be a measure of profit, utility or goodness of the objective goal. No String Fitness % of Total Total /12/2012 1:32 PM gdeepak.com 12

13 Roulette Wheel Slots as per fitness 4 31% 1 14% 3 6% 2 49% 6/12/2012 1:32 PM gdeepak.com 13

14 Work of Roulette Wheel Spin this wheel four times to generate a new population from the given population. The chances of a particular string being reproduced are proportional to the relative fitness value. 6/12/2012 1:32 PM gdeepak.com 14

15 Crossover Members of new population mate randomly. Each pair of strings undergoes crossing at a particular position k chosen at random from 1 to L-1 where L is string length. A1= A2= if k=4 the result of crossing is A1 = A2 = /12/2012 1:32 PM gdeepak.com 15

16 Mutation Mutating a certain position(s) A1= Mutating this string at k=3 will give A1 = /12/2012 1:32 PM gdeepak.com 16

17 Power of Genetic Operators These simple operators are very powerful in terms of what can be achieved. A) GAs reproduce high quality children according to their performance B) Crossing with other high performance population given high performance children C) Mutation is insurance policy against premature loss of important children 6/12/2012 1:32 PM gdeepak.com 17

18 Example String number Initial Populat ion x value f(x) = x 2 f i f Sum Average Max f i f Actual count of wheel 6/12/2012 1:32 PM gdeepak.com 18

19 Example Mating Pool Mate Crossov er Site New Populat ion x value f x = x Sum 1754 Average 439 Max 729 6/12/2012 1:32 PM gdeepak.com 19

20 See the hidden benefits Maximum fitness, average fitness as well as total fitness of the population has increased. Looking deeply we see that best string of first generation receives two copies because of its high performance, when it combines with next highest and crossed over at location 2 it produces which is very good improvement. 6/12/2012 1:32 PM gdeepak.com 20

21 Guided Search After proper analysis in each problem we will see that a certain mix of the strings is likely to give the higher performance. In this example strings having 1 at Most significant positions seems to be among the best. What we look at is similarities among strings in population and then relationships between these similarities and high fitness. This type of approach is called similarity template or schemata. 6/12/2012 1:32 PM gdeepak.com 21

22 Schema Schema can be implemented by adding one more symbol to our language {0,1,*} So schema {* *} means { 01110, 01111, 11110,11111} Introducing * gives us powerful tools to reduce the number of possibilities in our new population and leads to many other performance improvements. 6/12/2012 1:32 PM gdeepak.com 22

23 Schemata Terminology Total number of schemata for a sting of length 5 is 3 5 Define the length δ(h) of schema H as the distance between the first and last specific string position. δ( 10 1 ) = 4 δ( 10 ) = 1 Define order o(h) of a schema H as no of specific string positions o( 10 1 ) = 3 o( 10 ) = 2 6/12/2012 1:32 PM gdeepak.com 23

24 Crossover effect in Schemata If cut is outside schema s specific letters then schema is transferred to its children. Otherwise schema can be destroyed. xi = H1 = *1* ***0 H2 = *** 10** 6/12/2012 1:32 PM gdeepak.com 24

25 Few conclusions Very useful conclusion can be drawn from these that highly fit, Short defining length schemata (called building blocks) are propagated generation to generation by giving exponentially increasing samples to the observed best. There is also an implicit parallelism because multiple strings can be processed in parallel and no special overhead is attached. 6/12/2012 1:32 PM gdeepak.com 25

26 More operators being used Inversion Segregation Translocation 6/12/2012 1:32 PM gdeepak.com 26

27 Questions, Comments and Suggestions 6/12/2012 1:32 PM gdeepak.com 27

28 Question 1 Six strings have the following fitness function values 5, 10, 15, 25, 50, 100. Under Roulette wheel selection, calculate the expected number of copies of each string in the mating pool if a constant population size n=6, is maintained. 6/12/2012 1:32 PM gdeepak.com 28

29 Questions 2 Consider a binary string of length 11, and consider a schema 1*********1. Under crossover with uniform crossover site selection, calculate the lower limit on the probability of this schema surviving crossover. A) 1 B) 0.5 C) 0 D) 0.2 6/12/2012 1:32 PM gdeepak.com 29

30 Question 3 The same solution to a problem may be arrived at in a different number of generations. A)True B)False 6/12/2012 1:32 PM gdeepak.com 30

Rule-based Integration of Multiple Neural Networks Evolved Based on Cellular Automata

Rule-based Integration of Multiple Neural Networks Evolved Based on Cellular Automata 1 Robotics Rule-based Integration of Multiple Neural Networks Evolved Based on Cellular Automata 2 Motivation Construction of mobile robot controller Evolving neural networks using genetic algorithm (Floreano,

More information

Series-Parallel Circuits

Series-Parallel Circuits Chapter 6 Series-Parallel Circuits Topics Covered in Chapter 6 6-1: Finding R T for Series-Parallel Resistances 6-2: Resistance Strings in Parallel 6-3: Resistance Banks in Series 6-4: Resistance Banks

More information

DECOMPOSING AND SOLVING CAPACITATED VEHICLE ROUTING PROBLEM (CVRP) USING TWO-STEP GENETIC ALGORITHM (TSGA)

DECOMPOSING AND SOLVING CAPACITATED VEHICLE ROUTING PROBLEM (CVRP) USING TWO-STEP GENETIC ALGORITHM (TSGA) DECOMPOSING AND SOLVING CAPACITATED VEHICLE ROUTING PROBLEM (CVRP) USING TWO-STEP GENETIC ALGORITHM (TSGA) 1 MUHAMMAD LUTHFI SHAHAB, 2 DARYONO BUDI UTOMO, 3 MOHAMMAD ISA IRAWAN 1,2 Department of Mathematics,

More information

BACHELOR THESIS Optimization of a circulating multi-car elevator system

BACHELOR THESIS Optimization of a circulating multi-car elevator system BACHELOR THESIS Kristýna Pantůčková Optimization of a circulating multi-car elevator system Department of Theoretical Computer Science and Mathematical Logic Supervisor of the bachelor thesis: Study programme:

More information

Machine Design Optimization Based on Finite Element Analysis using

Machine Design Optimization Based on Finite Element Analysis using Machine Design Optimization Based on Finite Element Analysis using High-Throughput Computing Wenying Jiang T.M. Jahns T.A. Lipo WEMPEC Y. Suzuki W. Taylor. JSOL Corp. UW-Madison, CS Dept. 07/10/2014 2014

More information

Degradation-aware Valuation and Sizing of Behind-the-Meter Battery Energy Storage Systems for Commercial Customers

Degradation-aware Valuation and Sizing of Behind-the-Meter Battery Energy Storage Systems for Commercial Customers Degradation-aware Valuation and Sizing of Behind-the-Meter Battery Energy Storage Systems for Commercial Customers Zhenhai Zhang, Jie Shi, Yuanqi Gao, and Nanpeng Yu Department of Electrical and Computer

More information

Civil Engineering and Environmental, Gadjah Mada University TRIP ASSIGNMENT. Introduction to Transportation Planning

Civil Engineering and Environmental, Gadjah Mada University TRIP ASSIGNMENT. Introduction to Transportation Planning Civil Engineering and Environmental, Gadjah Mada University TRIP ASSIGNMENT Introduction to Transportation Planning Dr.Eng. Muhammad Zudhy Irawan, S.T., M.T. INTRODUCTION Travelers try to find the best

More information

Optimal generation scheduling strategy for profit maximization of genco in deregulated power system

Optimal generation scheduling strategy for profit maximization of genco in deregulated power system IOSR Journal of Electrical and Electronics Engineering (IOSRJEEE) ISSN: 2278-1676 Volume 2, Issue 3 (Sep-Oct. 2012), PP 13-20 Optimal generation scheduling strategy for profit maximization of genco in

More information

Enhanced Genetic Algorithm for Optimal Electric Power Flow using TCSC and TCPS

Enhanced Genetic Algorithm for Optimal Electric Power Flow using TCSC and TCPS Proceedings of the World Congress on Engineering 21 Vol II WCE 21, June 3 - July 2, 21, London, U.K. Enhanced Genetic Algorithm for Optimal Electric Power Flow using TCSC and TCPS K. Kalaiselvi, V. Suresh

More information

ADVENT. Aim : To Develop advanced numerical tools and apply them to optimisation problems in engineering. L. F. Gonzalez. University of Sydney

ADVENT. Aim : To Develop advanced numerical tools and apply them to optimisation problems in engineering. L. F. Gonzalez. University of Sydney ADVENT ADVanced EvolutioN Team University of Sydney L. F. Gonzalez E. J. Whitney K. Srinivas Aim : To Develop advanced numerical tools and apply them to optimisation problems in engineering. 1 2 Outline

More information

Routing and Planning for the Last Mile Mobility System

Routing and Planning for the Last Mile Mobility System Routing and Planning for the Last Mile Mobility System Nguyen Viet Anh 30 October 2012 Nguyen Viet Anh () Routing and Planningfor the Last Mile Mobility System 30 October 2012 1 / 33 Outline 1 Introduction

More information

Stress Analysis, Design Formulation and Optimization of Crankpin of Single Cylinder Four Stroke Petrol Engine

Stress Analysis, Design Formulation and Optimization of Crankpin of Single Cylinder Four Stroke Petrol Engine Stress Analysis, Design Formulation and Optimization of Crankpin of Single Cylinder Four Stroke Petrol Engine Divyesh B. Morabiya #1, Amit B. Solanki #2, Rahul L.Patel #3, B.N.Parejiya *4 1 Asst. Professor,

More information

Traffic Control Optimization for Multi-Modal Operations in a Large-Scale Urban Network

Traffic Control Optimization for Multi-Modal Operations in a Large-Scale Urban Network Traffic Control Optimization for Multi-Modal Operations in a Large-Scale Urban Network Cameron Kergaye, PhD, PMP, PE UDOT Director of Research 13th Annual NJDOT Research Showcase October 27 th, 2011 Improve

More information

Analysis of minimum train headway on a moving block system by genetic algorithm Hideo Nakamura. Nihon University, Narashinodai , Funabashi city,

Analysis of minimum train headway on a moving block system by genetic algorithm Hideo Nakamura. Nihon University, Narashinodai , Funabashi city, Analysis of minimum train headway on a moving block system by genetic algorithm Hideo Nakamura Nihon University, Narashinodai 7-24-1, Funabashi city, Email: nakamura@ecs.cst.nihon-u.ac.jp Abstract A minimum

More information

MeteorCalc SL. MeteorCalc SL is a CAD plugin for designing street lighting networks.

MeteorCalc SL. MeteorCalc SL is a CAD plugin for designing street lighting networks. MeteorCalc SL MeteorCalc SL is a CAD plugin for designing street lighting networks. The MeteorCalc SL software implements a full cycle of design works in the electrical networks of street lighting from

More information

Annals of the University of North Carolina Wilmington Master of Science in Computer Science and Information Systems

Annals of the University of North Carolina Wilmington Master of Science in Computer Science and Information Systems Annals of the University of North Carolina Wilmington Master of Science in Computer Science and Information Systems i Abstract Abduction is the process of proceeding from data describing a set of observations

More information

Parameter optimisation design for a six-dof heavy duty vehicle seat suspension

Parameter optimisation design for a six-dof heavy duty vehicle seat suspension 11 th World Congress on Structural and Multidisciplinary Optimisation 07 th -12 th, June 2015, Sydney Australia Parameter optimisation design for a six-dof heavy duty vehicle seat suspension Donghong Ning,

More information

Houghton Mifflin MATHEMATICS. Level 1 correlated to Chicago Academic Standards and Framework Grade 1

Houghton Mifflin MATHEMATICS. Level 1 correlated to Chicago Academic Standards and Framework Grade 1 State Goal 6: Demonstrate and apply a knowledge and sense of numbers, including basic arithmetic operations, number patterns, ratios and proportions. CAS A. Relate counting, grouping, and place-value concepts

More information

Responsive Bus Bridging Service Planning Under Urban Rail Transit Line Emergency

Responsive Bus Bridging Service Planning Under Urban Rail Transit Line Emergency 2016 3 rd International Conference on Vehicle, Mechanical and Electrical Engineering (ICVMEE 2016) ISBN: 978-1-60595-370-0 Responsive Bus Bridging Service Planning Under Urban Rail Transit Line Emergency

More information

Multi-Objective Optimization of Operation Scheduling for Micro-Grid Systems

Multi-Objective Optimization of Operation Scheduling for Micro-Grid Systems Multi-Objective Optimization of Operation Scheduling for Micro-Grid Systems Xin Li and Kalyanmoy Deb Computational Optimization and Innovation (COIN) Laboratory Department of Electrical and Computer Engineering

More information

OPTIMAL DESIGN OF HYBRID ELECTRIC-HUMAN POWERED LIGHTWEIGHT TRANSPORTATION

OPTIMAL DESIGN OF HYBRID ELECTRIC-HUMAN POWERED LIGHTWEIGHT TRANSPORTATION OPTIMAL DESIGN OF HYBRID ELECTRIC-HUMAN POWERED LIGHTWEIGHT TRANSPORTATION FINAL REPORT July 2001 KLK320 & KLK321 N01-12 Prepared for OFFICE OF UNIVERSITY RESEARCH AND EDUCATION U.S. DEPARTMENT OF TRANSPORTATION

More information

Busy Ant Maths and the Scottish Curriculum for Excellence Foundation Level - Primary 1

Busy Ant Maths and the Scottish Curriculum for Excellence Foundation Level - Primary 1 Busy Ant Maths and the Scottish Curriculum for Excellence Foundation Level - Primary 1 Number, money and measure Estimation and rounding Number and number processes Fractions, decimal fractions and percentages

More information

MULTITHREADED CONTINUOUSLY VARIABLE TRANSMISSION SYNTHESIS FOR NEXT-GENERATION HELICOPTERS

MULTITHREADED CONTINUOUSLY VARIABLE TRANSMISSION SYNTHESIS FOR NEXT-GENERATION HELICOPTERS MULTITHREADED CONTINUOUSLY VARIABLE TRANSMISSION SYNTHESIS FOR NEXT-GENERATION HELICOPTERS Kalinin D.V. CIAM, Russia Keywords: high-speed helicopter, transmission, CVT Abstract The results of analysis

More information

Busy Ant Maths and the Scottish Curriculum for Excellence Year 6: Primary 7

Busy Ant Maths and the Scottish Curriculum for Excellence Year 6: Primary 7 Busy Ant Maths and the Scottish Curriculum for Excellence Year 6: Primary 7 Number, money and measure Estimation and rounding Number and number processes Including addition, subtraction, multiplication

More information

1. Introduction. Vahid Navadad 1+

1. Introduction. Vahid Navadad 1+ 2012 International Conference on Traffic and Transportation Engineering (ICTTE 2012) IPCSIT vol. 26 (2012) (2012) IACSIT Press, Singapore A Model of Bus Assignment with Reducing Waiting Time of the Passengers

More information

Data envelopment analysis with missing values: an approach using neural network

Data envelopment analysis with missing values: an approach using neural network IJCSNS International Journal of Computer Science and Network Security, VOL.17 No.2, February 2017 29 Data envelopment analysis with missing values: an approach using neural network B. Dalvand, F. Hosseinzadeh

More information

Some Experimental Designs Using Helicopters, Designed by You. Next Friday, 7 April, you will conduct two of your four experiments.

Some Experimental Designs Using Helicopters, Designed by You. Next Friday, 7 April, you will conduct two of your four experiments. Some Experimental Designs Using Helicopters, Designed by You The following experimental designs were submitted by students in this class. I have selectively chosen designs not because they were good or

More information

Application Note CTAN #146

Application Note CTAN #146 Application Note CTAN #146 The application note is pertinent to Unidrive in Servo Mode. Unidrive Servo Motor Thermal Protection Pertinent Servo Motor Data : 1. Torque Constant (Kt): The relationship between

More information

Power Distribution Scheduling for Electric Vehicles in Wireless Power Transfer Systems

Power Distribution Scheduling for Electric Vehicles in Wireless Power Transfer Systems Power Distribution Scheduling for Electric Vehicles in Wireless Power Transfer Systems Chenxi Qiu*, Ankur Sarker and Haiying Shen * College of Information Science and Technology, Pennsylvania State University

More information

Predicting Solutions to the Optimal Power Flow Problem

Predicting Solutions to the Optimal Power Flow Problem Thomas Navidi Suvrat Bhooshan Aditya Garg Abstract Predicting Solutions to the Optimal Power Flow Problem This paper discusses an implementation of gradient boosting regression to predict the output of

More information

REDUCING THE OCCURRENCES AND IMPACT OF FREIGHT TRAIN DERAILMENTS

REDUCING THE OCCURRENCES AND IMPACT OF FREIGHT TRAIN DERAILMENTS REDUCING THE OCCURRENCES AND IMPACT OF FREIGHT TRAIN DERAILMENTS D-Rail Final Workshop 12 th November - Stockholm Monitoring and supervision concepts and techniques for derailments investigation Antonella

More information

A Dynamic Supply-Demand Model of Fleet Assignment with Reducing Waiting Time of the Passengers Approach (LRT and Bus System of Tabriz City)

A Dynamic Supply-Demand Model of Fleet Assignment with Reducing Waiting Time of the Passengers Approach (LRT and Bus System of Tabriz City) A Dynamic Supply-Demand Model of Assignment with Reducing Waiting Time of the Passengers Approach (LRT and Bus System of Tabriz City) Vahid Navadad Abstract The goal of this research is offering an optimum

More information

A Chemical Batch Reactor Schedule Optimizer

A Chemical Batch Reactor Schedule Optimizer A Chemical Batch Reactor Schedule Optimizer By Steve Morrison, Ph.D. 1997 Info@MethodicalMiracles.com 214-769-9081 Many chemical plants have a very similar configuration to pulp batch digesters; two examples

More information

Diesel Engine Design using Multi-Objective Genetic Algorithm

Diesel Engine Design using Multi-Objective Genetic Algorithm Diesel Engine Design using Multi-Objective Genetic Algorithm Tomoyuki Hiroyasu,Doshisha University February 26, 2004 1 Introduction In this study, a system to perform a parameter search of heavy-duty diesel

More information

Carpooling Service Using Genetic Algorithm

Carpooling Service Using Genetic Algorithm Carpooling Service Using Genetic Algorithm Swapnali Khade 1, Rutuja Kolhe 2, Amruta Wakchaure 3, Shila Warule 4 1 2 3 4 Department Of Computer Engineering, SRES College Of Engineerig Kopargaon. Abstract

More information

Optimal Vehicle to Grid Regulation Service Scheduling

Optimal Vehicle to Grid Regulation Service Scheduling Optimal to Grid Regulation Service Scheduling Christian Osorio Introduction With the growing popularity and market share of electric vehicles comes several opportunities for electric power utilities, vehicle

More information

Maximium Velocity that a Vehicle can Attain without Skidding and Toppling While Taking a turn

Maximium Velocity that a Vehicle can Attain without Skidding and Toppling While Taking a turn Maximium Velocity that a Vehicle can Attain without Skidding and Toppling While Taking a turn Tapas Debnath 1, Siddhartha Kar 2, Dr. Vidyut Dey 3 and Kishan Choudhuri 4 1, 2 M.Tech Scholar, Production

More information

GRADE 7 TEKS ALIGNMENT CHART

GRADE 7 TEKS ALIGNMENT CHART GRADE 7 TEKS ALIGNMENT CHART TEKS 7.2 extend previous knowledge of sets and subsets using a visual representation to describe relationships between sets of rational numbers. 7.3.A add, subtract, multiply,

More information

MTH 127 OVERALL STUDENT LEARNING OUTCOMES (SLOs) RESULTS (including data from all tests & the final exam)

MTH 127 OVERALL STUDENT LEARNING OUTCOMES (SLOs) RESULTS (including data from all tests & the final exam) MTH 127 OVERALL STUDENT LEARNING OUTCOMES (SLOs) RESULTS (including data from all tests & the final exam) how to Evaluate polynomial functions. T1: 17 = 47% T1: 15 = 42% T1: 4 = 11% A- xxi Evaluate piecewise

More information

A A Case Study on Improving Capacity Delivery of Battery Packs via Reconfiguration

A A Case Study on Improving Capacity Delivery of Battery Packs via Reconfiguration A A Case Study on Improving Capacity Delivery of Battery Packs via Reconfiguration LIANG HE, University of Michigan at Ann Arbor EUGENE KIM, University of Michigan at Ann Arbor KANG G. SHIN, University

More information

Project Summary Fuzzy Logic Control of Electric Motors and Motor Drives: Feasibility Study

Project Summary Fuzzy Logic Control of Electric Motors and Motor Drives: Feasibility Study EPA United States Air and Energy Engineering Environmental Protection Research Laboratory Agency Research Triangle Park, NC 277 Research and Development EPA/600/SR-95/75 April 996 Project Summary Fuzzy

More information

Chapter 7: DC Motors and Transmissions. 7.1: Basic Definitions and Concepts

Chapter 7: DC Motors and Transmissions. 7.1: Basic Definitions and Concepts Chapter 7: DC Motors and Transmissions Electric motors are one of the most common types of actuators found in robotics. Using them effectively will allow your robot to take action based on the direction

More information

Protection of Power Electronic Multi Converter Systems in AC and DC Applications

Protection of Power Electronic Multi Converter Systems in AC and DC Applications Protection of Power Electronic Multi Converter Systems in AC and DC Applications Prof. Norbert Grass Technische Hochschule Nürnberg, Institute for Power Electronic Systems, Nuremberg, Germany, Norbert.Grass@th-nuernberg.de

More information

Burn Characteristics of Visco Fuse

Burn Characteristics of Visco Fuse Originally appeared in Pyrotechnics Guild International Bulletin, No. 75 (1991). Burn Characteristics of Visco Fuse by K.L. and B.J. Kosanke From time to time there is speculation regarding the performance

More information

Autonomous inverted helicopter flight via reinforcement learning

Autonomous inverted helicopter flight via reinforcement learning Autonomous inverted helicopter flight via reinforcement learning Andrew Y. Ng, Adam Coates, Mark Diel, Varun Ganapathi, Jamie Schulte, Ben Tse, Eric Berger, and Eric Liang By Varun Grover Outline! Helicopter

More information

Online Appendix for Subways, Strikes, and Slowdowns: The Impacts of Public Transit on Traffic Congestion

Online Appendix for Subways, Strikes, and Slowdowns: The Impacts of Public Transit on Traffic Congestion Online Appendix for Subways, Strikes, and Slowdowns: The Impacts of Public Transit on Traffic Congestion ByMICHAELL.ANDERSON AI. Mathematical Appendix Distance to nearest bus line: Suppose that bus lines

More information

WNTE: A regulatory tool for the EU? GRPE Meeting of the Off-Cycle Emissions Working Group. Geneva, June 2006

WNTE: A regulatory tool for the EU? GRPE Meeting of the Off-Cycle Emissions Working Group. Geneva, June 2006 OCE Informal Document No. 48 Fourteenth Plenary Meeting of the Working Group On Off-Cycle Emissions 6 June 2006 Palais des Nations, Geneva, Switzerland WNTE: A regulatory tool for the EU? GRPE Meeting

More information

ME scope Application Note 24 Choosing Reference DOFs for a Modal Test

ME scope Application Note 24 Choosing Reference DOFs for a Modal Test ME scope Application Note 24 Choosing Reference DOFs for a Modal Test The steps in this Application Note can be duplicated using any ME'scope Package that includes the VES-3600 Advanced Signal Processing

More information

INTRODUCTION. I.1 - Historical review.

INTRODUCTION. I.1 - Historical review. INTRODUCTION. I.1 - Historical review. The history of electrical motors goes back as far as 1820, when Hans Christian Oersted discovered the magnetic effect of an electric current. One year later, Michael

More information

Lecture 2. Review of Linear Regression I Statistics Statistical Methods II. Presented January 9, 2018

Lecture 2. Review of Linear Regression I Statistics Statistical Methods II. Presented January 9, 2018 Review of Linear Regression I Statistics 211 - Statistical Methods II Presented January 9, 2018 Estimation of The OLS under normality the OLS Dan Gillen Department of Statistics University of California,

More information

CHAPTER 19 DC Circuits Units

CHAPTER 19 DC Circuits Units CHAPTER 19 DC Circuits Units EMF and Terminal Voltage Resistors in Series and in Parallel Kirchhoff s Rules EMFs in Series and in Parallel; Charging a Battery Circuits Containing Capacitors in Series and

More information

Neuro-Fuzzy Controller of a Sensorless PM Motor Drive for Washing Machines

Neuro-Fuzzy Controller of a Sensorless PM Motor Drive for Washing Machines 4 th Intr. Conf. On Systems, Signals & Devices 19-22 March 2007 Hammamat, Tunisia Neuro-Fuzzy Controller of a Sensorless PM Motor Drive for Washing Machines Paper No.: SSD07-SAC-1117 Dr. Kasim M. Al-Aubidy,

More information

Written Exam Public Transport + Answers

Written Exam Public Transport + Answers Faculty of Engineering Technology Written Exam Public Transport + Written Exam Public Transport (195421200-1A) Teacher van Zuilekom Course code 195421200 Date and time 7-11-2011, 8:45-12:15 Location OH116

More information

ENERGY STAR Program Requirements for Single Voltage External Ac-Dc and Ac-Ac Power Supplies. Eligibility Criteria.

ENERGY STAR Program Requirements for Single Voltage External Ac-Dc and Ac-Ac Power Supplies. Eligibility Criteria. ENERGY STAR Program Requirements for Single Voltage External Ac-Dc and Ac-Ac Power Supplies Eligibility Criteria Table of Contents Section 1: Definitions 2 Section 2: Qualifying Products 3 Section 3: Energy-Efficiency

More information

Additional file 3 Contour plots & tables

Additional file 3 Contour plots & tables Additional file 3 Contour plots & tables Table of contents Legend...1 Contour plots for I max...2 Contour plots for t Imax... Data tables for I tot... Data tables for I max...13 Data tables for t Imax...

More information

*Author for Correspondence

*Author for Correspondence OPTIMAL PLACEMENT OF VARIOUS TYPES OF DISTRIBUTED GENERATION (DG) SOURCES IN RADIAL DISTRIBUTION NETWORKS USING IMPERIALIST COMPETITIVE ALGORITHM (ICA) Hadi Abbasi,2 and * Mahmood Ghanbari 2 Department

More information

EXHAUST MANIFOLD DESIGN FOR A CAR ENGINE BASED ON ENGINE CYCLE SIMULATION

EXHAUST MANIFOLD DESIGN FOR A CAR ENGINE BASED ON ENGINE CYCLE SIMULATION Parallel Computational Fluid Dynamics International Conference Parallel CFD 2002 Kyoto, Japan, 20-22 May 2002 EXHAUST MANIFOLD DESIGN FOR A CAR ENGINE BASED ON ENGINE CYCLE SIMULATION Masahiro Kanazaki*,

More information

Microgrids Optimal Power Flow through centralized and distributed algorithms

Microgrids Optimal Power Flow through centralized and distributed algorithms DEIM Dipartimento di Energia, Ingegneria della Informazione e Modelli Matematici Flow through centralized and, N.Q. Nguyen, M. L. Di Silvestre, R. Badalamenti and G. Zizzo Clean energy in vietnam after

More information

Summary of: ENHANCING AIRCRAFT CONCEPTUAL DESIGN USING MULTIDISCIPLINARY OPTIMIZATION

Summary of: ENHANCING AIRCRAFT CONCEPTUAL DESIGN USING MULTIDISCIPLINARY OPTIMIZATION Summary of: ENHANCING AIRCRAFT CONCEPTUAL DESIGN USING MULTIDISCIPLINARY OPTIMIZATION By Daniel P. Raymer Doctoral Thesis Report 2002-2, May 2002 ISBN 91-7283-259-2 Department of Aeronautics Royal Institute

More information

Linking the Georgia Milestones Assessments to NWEA MAP Growth Tests *

Linking the Georgia Milestones Assessments to NWEA MAP Growth Tests * Linking the Georgia Milestones Assessments to NWEA MAP Growth Tests * *As of June 2017 Measures of Academic Progress (MAP ) is known as MAP Growth. February 2016 Introduction Northwest Evaluation Association

More information

Linking the Virginia SOL Assessments to NWEA MAP Growth Tests *

Linking the Virginia SOL Assessments to NWEA MAP Growth Tests * Linking the Virginia SOL Assessments to NWEA MAP Growth Tests * *As of June 2017 Measures of Academic Progress (MAP ) is known as MAP Growth. March 2016 Introduction Northwest Evaluation Association (NWEA

More information

POWER DISTRIBUTION SYSTEM ANALYSIS OF URBAN ELECTRIFIED RAILWAYS

POWER DISTRIBUTION SYSTEM ANALYSIS OF URBAN ELECTRIFIED RAILWAYS POWER DISTRIBUTION SYSTEM ANALYSIS OF URBAN ELECTRIFIED RAILWAYS Farhad Shahnia Saeed Tizghadam Seyed Hossein Hosseini farhadshahnia@yahoo.com s_tizghadam@yahoo.com hosseini@tabrizu.ac.ir Electrical and

More information

Optimal sizing and Placement of Capacitors for Loss Minimization In 33-Bus Radial Distribution System Using Genetic Algorithm in MATLAB Environment

Optimal sizing and Placement of Capacitors for Loss Minimization In 33-Bus Radial Distribution System Using Genetic Algorithm in MATLAB Environment Optimal sizing and Placement of Capacitors for Loss Minimization In 33-Bus Radial Distribution System Using Genetic Algorithm in MATLAB Environment Mr. Manish Gupta, Dr. Balwinder Singh Surjan Abstract

More information

Queuing Models to Analyze Electric Vehicle Usage Patterns

Queuing Models to Analyze Electric Vehicle Usage Patterns Queuing Models to Analyze Electric Vehicle Usage Patterns Ken Lau Data Scientist Alberta Gaming and Liquor Commission About Me Completed Master s in Statistics at University of British Columbia (2015)

More information

Linking the North Carolina EOG Assessments to NWEA MAP Growth Tests *

Linking the North Carolina EOG Assessments to NWEA MAP Growth Tests * Linking the North Carolina EOG Assessments to NWEA MAP Growth Tests * *As of June 2017 Measures of Academic Progress (MAP ) is known as MAP Growth. March 2016 Introduction Northwest Evaluation Association

More information

Announcements. CS 188: Artificial Intelligence Fall So Far: Foundational Methods. Now: Advanced Applications.

Announcements. CS 188: Artificial Intelligence Fall So Far: Foundational Methods. Now: Advanced Applications. CS 188: Artificial Intelligence Fall 2010 Advanced Applications: Robotics / Vision / Language Announcements Project 5: Classification up now! Due date now after contest Also: drop-the-lowest Contest: In

More information

CS 188: Artificial Intelligence Fall Announcements

CS 188: Artificial Intelligence Fall Announcements CS 188: Artificial Intelligence Fall 2010 Advanced Applications: Robotics / Vision / Language Dan Klein UC Berkeley Many slides from Pieter Abbeel, John DeNero 1 Announcements Project 5: Classification

More information

Extracting Tire Model Parameters From Test Data

Extracting Tire Model Parameters From Test Data WP# 2001-4 Extracting Tire Model Parameters From Test Data Wesley D. Grimes, P.E. Eric Hunter Collision Engineering Associates, Inc ABSTRACT Computer models used to study crashes require data describing

More information

Developing PMs for Hydraulic System

Developing PMs for Hydraulic System Developing PMs for Hydraulic System Focus on failure prevention rather than troubleshooting. Here are some best practices you can use to upgrade your preventive maintenance procedures for hydraulic systems.

More information

LOCAL VERSUS CENTRALIZED CHARGING STRATEGIES FOR ELECTRIC VEHICLES IN LOW VOLTAGE DISTRIBUTION SYSTEMS

LOCAL VERSUS CENTRALIZED CHARGING STRATEGIES FOR ELECTRIC VEHICLES IN LOW VOLTAGE DISTRIBUTION SYSTEMS LOCAL VERSUS CENTRALIZED CHARGING STRATEGIES FOR ELECTRIC VEHICLES IN LOW VOLTAGE DISTRIBUTION SYSTEMS Presented by: Amit Kumar Tamang, PhD Student Smart Grid Research Group-BBCR aktamang@uwaterloo.ca

More information

Linking the Kansas KAP Assessments to NWEA MAP Growth Tests *

Linking the Kansas KAP Assessments to NWEA MAP Growth Tests * Linking the Kansas KAP Assessments to NWEA MAP Growth Tests * *As of June 2017 Measures of Academic Progress (MAP ) is known as MAP Growth. February 2016 Introduction Northwest Evaluation Association (NWEA

More information

Locomotive Allocation for Toll NZ

Locomotive Allocation for Toll NZ Locomotive Allocation for Toll NZ Sanjay Patel Department of Engineering Science University of Auckland, New Zealand spat075@ec.auckland.ac.nz Abstract A Locomotive is defined as a self-propelled vehicle

More information

Finite Element Analysis and optimization of Automotive Composite Drive Shaft

Finite Element Analysis and optimization of Automotive Composite Drive Shaft Finite Element Analysis and optimization of Automotive Composite Drive Shaft S V Gopals Krishna* 1, B V Subrahmanyam 2, and R Srinivasulu 3 1&2 Asst. Professor, Sir C R Reddy College of Engineering, Eluru,

More information

Technical Article. How improved magnetic sensing technology can increase torque in BLDC motors. Roland Einspieler

Technical Article. How improved magnetic sensing technology can increase torque in BLDC motors. Roland Einspieler Technical How improved magnetic sensing technology can increase torque in BLDC motors Roland Einspieler How improved magnetic sensing technology can increase torque in BLDC motors Roland Einspieler Across

More information

A Novel GUI Modeled Fuzzy Logic Controller for a Solar Powered Energy Utilization Scheme

A Novel GUI Modeled Fuzzy Logic Controller for a Solar Powered Energy Utilization Scheme 1 A Novel GUI Modeled Fuzzy Logic Controller for a Solar Powered Energy Utilization Scheme I. H. Altas 1, * and A.M. Sharaf 2 ihaltas@altas.org and sharaf@unb.ca 1 : Dept. of Electrical and Electronics

More information

Charles Sullivan, Associate Professor, Thayer School of Engineering at Dartmouth

Charles Sullivan, Associate Professor, Thayer School of Engineering at Dartmouth FORMULA HYBRID SAFETY TUTORIAL FUSING Charles Sullivan, Associate Professor, Thayer School of Engineering at Dartmouth Purpose of Fusing Fuses interrupt current in a circuit when the current exceeds a

More information

Linking the Alaska AMP Assessments to NWEA MAP Tests

Linking the Alaska AMP Assessments to NWEA MAP Tests Linking the Alaska AMP Assessments to NWEA MAP Tests February 2016 Introduction Northwest Evaluation Association (NWEA ) is committed to providing partners with useful tools to help make inferences from

More information

PAPER ASSIGNMENT #1: ELECTRIC CIRCUITS Due at the beginning of class Saturday, February 9, 2008

PAPER ASSIGNMENT #1: ELECTRIC CIRCUITS Due at the beginning of class Saturday, February 9, 2008 PHYS 591 - Foundations of Science II By Richard Matthews PAPER ASSIGNMENT #1: ELECTRIC CIRCUITS Due at the beginning of class Saturday, February 9, 2008 Part I; Outline of the important elements of the

More information

Linking the New York State NYSTP Assessments to NWEA MAP Growth Tests *

Linking the New York State NYSTP Assessments to NWEA MAP Growth Tests * Linking the New York State NYSTP Assessments to NWEA MAP Growth Tests * *As of June 2017 Measures of Academic Progress (MAP ) is known as MAP Growth. March 2016 Introduction Northwest Evaluation Association

More information

Wheel-Rail Contact: GETTING THE RIGHT PROFILE

Wheel-Rail Contact: GETTING THE RIGHT PROFILE Wheel-Rail Contact: GETTING THE RIGHT PROFILE Simon Iwnicki, Julian Stow and Adam Bevan Rail Technology Unit Manchester Metropolitan University The Contact The contact patch between a wheel and a rail

More information

9.3 Tests About a Population Mean (Day 1)

9.3 Tests About a Population Mean (Day 1) Bellwork In a recent year, 73% of first year college students responding to a national survey identified being very well off financially as an important personal goal. A state university finds that 132

More information

Maximization of Net Profit by optimal placement and Sizing of DG in Distribution System

Maximization of Net Profit by optimal placement and Sizing of DG in Distribution System Maximization of Net Profit by optimal placement and Sizing of DG in Distribution System K. Mareesan 1, Dr. A. Shunmugalatha 2 1Lecturer(Sr.Grade)/EEE, VSVN Polytechnic College, Virudhunagar, Tamilnadu,

More information

Lecture 5, 7/19/2017. Review: Kirchhoff s Rules Capacitors in series and in parallel. Charging/Discharging capacitors. Magnetism

Lecture 5, 7/19/2017. Review: Kirchhoff s Rules Capacitors in series and in parallel. Charging/Discharging capacitors. Magnetism Lecture 5, 7/19/2017 Review: Kirchhoff s Rules Capacitors in series and in parallel. Charging/Discharging capacitors. Magnetism Find the current drawn by this circuit. Kirchhoff s Rules Kirchhoff s rules:

More information

DENVER INTERNATIONAL AIRPORT TAXICAB OPERATIONS HERALD HENSLEY DIRECTOR OF PARKING AND TRANSPORTATION

DENVER INTERNATIONAL AIRPORT TAXICAB OPERATIONS HERALD HENSLEY DIRECTOR OF PARKING AND TRANSPORTATION DENVER INTERNATIONAL AIRPORT TAXICAB OPERATIONS HERALD HENSLEY DIRECTOR OF PARKING AND TRANSPORTATION SEPTEMBER 2017 DEN TAXICAB OPERATIONS History of Taxicab Operations at DEN Driver and Customer Experience

More information

Application of the Strength Pareto Evolutionary Algorithm (SPEA2) Approach to Rail Repair Investments

Application of the Strength Pareto Evolutionary Algorithm (SPEA2) Approach to Rail Repair Investments CENTER FOR NATION RECONSTRUCTION AND CAPACITY DEVELOPMENT June 2016 United States Military Academy West Point, New York 10996 Application of the Strength Pareto Evolutionary Algorithm (SPEA2) Approach

More information

Arc Fault Circuit Interrupter

Arc Fault Circuit Interrupter Arc Fault Circuit Interrupter Pillar To Post Increasing Electrical Fire Safety An arc fault circuit interrupter, or AFCI, is a new type of circuit breaker designed to detect sparking in an electrical system,

More information

INTRODUCTION Principle

INTRODUCTION Principle DC Generators INTRODUCTION A generator is a machine that converts mechanical energy into electrical energy by using the principle of magnetic induction. Principle Whenever a conductor is moved within a

More information

Automatic Optimization of Wayfinding Design Supplementary Material

Automatic Optimization of Wayfinding Design Supplementary Material TRANSACTIONS ON VISUALIZATION AND COMPUTER GRAPHICS, VOL.??, NO.??,???? 1 Automatic Optimization of Wayfinding Design Supplementary Material 1 ADDITIONAL EXAMPLES We use our approach to generate wayfinding

More information

ELECTRIC CURRENT. Name(s)

ELECTRIC CURRENT. Name(s) Name(s) ELECTRIC CURRT The primary purpose of this activity is to decide upon a model for electric current. As is the case for all scientific models, your electricity model should be able to explain observed

More information

Detection of Faults on Off-Road Haul Truck Tires. M.G. Lipsett D.S. Nobes

Detection of Faults on Off-Road Haul Truck Tires. M.G. Lipsett D.S. Nobes University of Alberta Mechanical Engineering Department SMART Meeting 14 October 2011 Detection of Faults on Off-Road M.G. Lipsett D.S. Nobes R. Vaghar Anzabi A. Kotchon K. Obaia, A. Munro (Syncrude) Topics:

More information

Understanding the Performance of Parallel Temporary Protective Grounds

Understanding the Performance of Parallel Temporary Protective Grounds Understanding the Performance of Parallel Temporary Protective Grounds Thomas Lancaster, Shashi Patel, Josh Perkel, & Anil Poda NEETRAC Introduction NEETRAC Test Program Test Results Modeling De-Rating

More information

Li-Ion Charge Balancing and Cell Voltage Monitoring for Performance and Safety

Li-Ion Charge Balancing and Cell Voltage Monitoring for Performance and Safety Li-Ion Charge Balancing and Cell Voltage Monitoring for Performance and Safety 2010 Advanced Energy Conference Thomas Mazz Program Manager Aeroflex Inc. Outline / Objectives of this talk Basic advantages

More information

Multi Core Processing in VisionLab

Multi Core Processing in VisionLab Multi Core Processing in Multi Core CPU Processing in 25 August 2014 Copyright 2001 2014 by Van de Loosdrecht Machine Vision BV All rights reserved jaap@vdlmv.nl Overview Introduction Demonstration Automatic

More information

MOGA TUNED PI-FUZZY LOGIC CONTROL FOR 3 PHASE INDUCTION MOTOR WITH ENERGY EFFICIENCY FOR ELECTRIC VEHICLE APPLICATION

MOGA TUNED PI-FUZZY LOGIC CONTROL FOR 3 PHASE INDUCTION MOTOR WITH ENERGY EFFICIENCY FOR ELECTRIC VEHICLE APPLICATION MOGA TUNED PI-FUZZY LOGIC CONTROL FOR 3 PHASE INDUCTION MOTOR WITH ENERGY EFFICIENCY FOR ELECTRIC VEHICLE APPLICATION B. S. K. K. Ibrahim 1, 2, M. K. Hat 1, N. Aziah M. A. 2 and M. K. Hassan 3 1 Department

More information

RESPONSE TO THE DEPARTMENT FOR TRANSPORT AND DRIVER AND VEHICLE STANDARDS AGENCY S CONSULTATION PAPER

RESPONSE TO THE DEPARTMENT FOR TRANSPORT AND DRIVER AND VEHICLE STANDARDS AGENCY S CONSULTATION PAPER RESPONSE TO THE DEPARTMENT FOR TRANSPORT AND DRIVER AND VEHICLE STANDARDS AGENCY S CONSULTATION PAPER MODERNISING COMPULSORY BASIC TRAINING COURSES FOR MOTORCYCLISTS 17 APRIL 2015 Introduction The Royal

More information

Chapter 28. Direct Current Circuits

Chapter 28. Direct Current Circuits Chapter 28 Direct Current Circuits Direct Current When the current in a circuit has a constant magnitude and direction, the current is called direct current Because the potential difference between the

More information

Getting Started with Correlated Component Regression (CCR) in XLSTAT-CCR

Getting Started with Correlated Component Regression (CCR) in XLSTAT-CCR Tutorial 1 Getting Started with Correlated Component Regression (CCR) in XLSTAT-CCR Dataset for running Correlated Component Regression This tutorial 1 is based on data provided by Michel Tenenhaus and

More information

Interlocks 200 Series

Interlocks 200 Series rd 12070 43 St. NE, St. Michael, MN 55376 763-497-7000 www.tcamerican.com sales@tcamerican.com Installation Instructions Interlocks 200 Series 2I-515; 2I-930 2I-513; 2I-850 Crane Interlock and Operating

More information

Guide for Primary Injection Testing WL Circuit Breakers. Document No. : 11-C

Guide for Primary Injection Testing WL Circuit Breakers. Document No. : 11-C s Guide for Primary Injection Testing WL Circuit Breakers Document No. : 11-C-9036-00 Before Beginning... Qualified Person Siemens type WL circuit breakers should only be only be operated, inspected, and

More information

A Practical Solution to the String Stability Problem in Autonomous Vehicle Following

A Practical Solution to the String Stability Problem in Autonomous Vehicle Following A Practical Solution to the String Stability Problem in Autonomous Vehicle Following Guang Lu and Masayoshi Tomizuka Department of Mechanical Engineering, University of California at Berkeley, Berkeley,

More information