Midterm: In Perspective

Size: px
Start display at page:

Download "Midterm: In Perspective"

Transcription

1 Undertanding and Meauring Speedup Lat Time» Midterm Exam Today» Midterm Summary» Definition of Speedup» Meauring Speedup Reminder/Announcement» New Homework #3 will be out oon (tomorrow?)» Midterm Exam will be returned today (END of cla)» Graded Homework #2 will be returned next week Lecture #10, Slide 1 Midterm: In Perpective In general, the cla did very well. #2: Many didn t articulate the fundamental reaon that application are increaingly parallel large cale data, analyi complexity, large human activity Generally well on apect of parallel Java programming: thread, ynchronized, example #9: Mot didn t get the Pagerank quetion» Two imple way to calculate random walk, equation for each node iteration wa the hard way Lecture #10, Slide 2

2 Midterm Score Average and Median 154 Standard Deviation 26 High Score 198 Lecture #10, Slide 3 Why Meaure Performance? Tell you how you are doing Limit tell you whether thing can be improved appreciably Important: Undertand exactly what you are meauring and how you are meauring it. Lecture #10, Slide 4

3 Common Reource Performance Meaure MFLOPS million floating point operation per econd» GFLOPS, TFLOPS MBYTES million byte per econd» GByte, TByte MIPS Million intruction per econd Thee metric provide one meaure of reource performance. They do not however indicate how fat YOUR program will run. Lecture #10, Slide 5 Performance Improvement Relative Performance a la CSE 141 What i being compared?» Machine A v. Machine B» Program A v. Program B Sytem A i X time fater than Sytem B Lecture #10, Slide 6

4 Comparing Performance for Parallel Program App App Parallel Program v. Sequential Program Same Machine? Try to keep the proceor equal (1 of them v. N of them) Thee comparion are known a peedup. Lecture #10, Slide 7 Speedup Speedup S(n) (Execution time on Single CPU) (Execution on N parallel proceor) T T» Speedup meaure of application performance on a given application implementation and platform (ytem oftware and hardware) p Lecture #10, Slide 8

5 Preview: What i a Good Speedup? Hopefully, S(n) > 1 Linear peedup:» S(n) n» Parallel program conidered perfectly calable Superlinear peedup:» S(n) > n» Can thi happen? Lecture #10, Slide 9 Defining Speed-Up Speedup S(n) (Execution time on Single CPU) (Execution on n parallel proceor) Speedup depend on many attribute:» What problem ize?» Wort cae? Average cae? Bet cae?» What do we count a work? Parallel computation, communication, overhead?» What equential algorithm and what machine for the numerator? Can the algorithm ued for the numerator and the denominator be different? Lecture #10, Slide 10

6 Common Definition of Speedup Speedup S(n) (Execution time on Single CPU) (Execution on n parallel proceor) Let M be a parallel machine with p proceor Let T(X) be the time it take to olve a problem on M with X proceor Common definition of Speedup:» Serial machine i one proceor of parallel machine and erial algorithm i interleaved verion of parallel algorithm» Serial algorithm i fatet known erial algorithm for running on a erial proceor (W+A) T (1) S ( n) T ( n) T S( n) T ( n)» Serial algorithm i fatet known erial algorithm running on a one S ( n) proceor of the parallel machine (Gutafon) Lecture #10, Slide 11 T '(1) T ( n) Typical Speedup Graph X-axi i the number of proceor; Y-axi i the peedup Graph i for a particular program Ideal i a traight line, with unit lope (that i, 1) Lecture #10, Slide 12

7 Can peedup be uperlinear? Speedup CAN be uperlinear:» Let M be a parallel machine with n proceor» Let T(X) be the time it take to olve a problem on M with X proceor T» Speedup definition: S( n) T ( n)» Serial verion of the algorithm may involve more overhead than the parallel verion of the algorithm E.g. AB+C on a SIMD machine with A,B,C matrice v. loop overhead on a erial machine» Hardware characteritic may favor parallel algorithm E.g. if all data can be decompoed in cache or main memorie of parallel proceor v. needing econdary torage on erial proceor to retain all data Lecture #10, Slide 13 Bound on Speedup (Amdahl) What i the maximum peedup poible for a parallel program?» Let f erial fraction that cannot be parallelized Amdahl law bound the peedup in term of erial portion and parallelizable portion of algorithm. T ft + (1 f ) T S ( n ) ft (1 f ) T T p ft + n T n (1 f ) T + nf + 1 f n 1 lim n > f 1 ( n 1) f n + 1 Lecture #10, Slide 14

8 Example of Amdahl Law Suppoe that a calculation ha a 4% erial portion, what i the limit of peedup on 64 proceor? What i the maximum peedup? Lecture #10, Slide 15 Speedup Variant: Parallel Efficiency Efficiency: E(n) S(n)/n * 100% Efficiency meaure the fraction of ideal peedup that i being achieved» A program with linear peedup i 100% efficient. Uing efficiency:» A program attain 89% parallel efficiency on 64 proceor, what i the peedup? Lecture #10, Slide 16

9 Pitfall: Cheating Speedup Not uing the bet equential algorithm or running time make you look good» Uing the parallel verion (lot of overhead built-in)» Uing an algorithm which doen t make optimal ue of the cache Lecture #10, Slide 17 Beyond Amdahl Law Gutafon challenged Amdahl' aumption that erial fraction (f) remain contant for all problem ize (and for larger machine -> larger problem)» Example: if erial part i grow a N and the parallel part grow a N 2, then a problem ize grow, the erial fraction (f) decreae» N 100, N 2 10,000, f 100/10,100 1%» N 1000, N 2 1,000,000, f 0.1%» N 10,000, N 2 100,000,000, f 0.01% According to Amdahl what peedup would be poible? Lecture #10, Slide 18

10 Gutafon Speed Limit Gutafon defined two more relevant notion of peedup» Scaled peedup» Fixed-time peedup» And renamed Amdahl verion a fixed-ize peedup Lecture #10, Slide 19 Gutafon Law Fix execution time on a ingle proceor» + p erial part + parallel part 1 (normalized erial time)» ( ame a f previouly)» Aume problem fit in memory of erial computer Fixed-ize peedup (Amdahl Law) S fixed _ ize + p p + n n Fix execution time on a parallel computer» + p erial part + parallel part 1 (normalized parallel time)» + np erial time on a ingle proceor» Aume problem fit in memory of parallel computer Scaled Speedup (Gutafon Law) S caled n + + np p + ( 1 n) Lecture #10, Slide 20

11 Scaled Speedup Scaling: problem ize can increae with number of proceor» Memory, Compute Power Increae, o doe problem ambition! (at ome point problem may not be meaningful)» Gutafon law give meaure of how much Scaled Speedup fixe the parallel execution time» Amdahl fixed the problem ize fixe erial execution time» Too conervative for large-cale ytem Intereting conequence: no bound to peedup a n infinity, peedup ha no real bound Lecture #10, Slide 21 Uing Gutafon Law Given a caled peedup of 80 on 128 proceor, what i the erial fraction from Amdahl law? What i the erial fraction from Gutafon Law? S caled n + + np p + ( 1 n) Lecture #10, Slide 22

12 Fixed Time Speedup Gutafon alo!» Ue caled peedup when the memory requirement cale linearly with the number of proceor Idea: Ue fixed-time peedup when the work cale linearly with the number of proceor, rather than the memory» A different kind of caleup allow problem ize to increae (and perhap alo erial fraction to decreae) Lecture #10, Slide 23 Fixed Time Speedup Let T p '(1, X ) complexity of the bet erial algorithm for a ize X problem on one proceor of the parallel machine. T p ( m, X ) complexity of the parallel algorithm run on m proceor for problem ize X N 0 the ize of the larget problem that conveniently fit into primary memory of one proceor N m maximum value of N atifying Tp ( m, N) Tp '(1, N0) may be non-monotonic due to architectural feature mn 0 ize of the problem that conveniently fit into primary memory of a parallel machine with m proceor S caled Tp'(1, mn0 ) _ and_ S T ( m, mn ) P 0 fixed_ time Tp'(1, N T ( m, N P m m ) Tp'(1, Nm) ) T '(1, N ) P 0 Lecture #10, Slide 24

13 Example: MinuteSort Kayak Neterver Kayak Minute Sort (all the record you can ort in a Minute!)» Fixed Time Scaling» 340Million, 32GB, 2004» ~120M, 12GB, 2000 See Gray Sort Benchmark Page Lecture #10, Slide 25 Fixed Work Benchmark Work (and data) cale up with # of proceor Meaure time to complete an iteration --- it goe up with # of Node! Similar to Fixed Time Model Lecture #10, Slide 26

14 Summary Midterm Redux Speedup» Amdahl Law and Gutafon Reviion» Speedup v. Abolute Efficiency Next Time» Benchmark» Some Application and Machine Example Lecture #10, Slide 27

Comm 502: Communication Theory. Lecture 5. Intersymbol Interference FDM TDM

Comm 502: Communication Theory. Lecture 5. Intersymbol Interference FDM TDM Lecture 5 Interymbol Interference FDM TDM 1 Time Limited Waveform Time-Limited Signal = Frequency Unlimited Spectrum Square Pule i a Time-Limited Signal Fourier Tranform 0 T S -3/T S -2/T S -1/T S 0 1/T

More information

Frequency Calibration of A/D Converter in Software GPS Receivers

Frequency Calibration of A/D Converter in Software GPS Receivers Frequency Calibration of A/D Converter in Software GPS Receiver L. L. Liou, D. M. Lin, J. B. Tui J. Schamu Senor Directorate Air Force Reearch Laboratory Abtract--- Thi paper preent a oftware-baed method

More information

Hashiwokakero. T. Morsink. August 31, 2009

Hashiwokakero. T. Morsink. August 31, 2009 Hahiwokakero T. Morink Augut 31, 2009 Content 1 Introduction 3 2 What i Hahiwokakero? 3 2.1 The rule............................. 3 2.2 Eay olving tatement..................... 4 3 Building an Own Solver

More information

The Central Limit Theorem

The Central Limit Theorem Objective Ue the central limit theorem to olve problem involving ample mean for large ample. The Central Limit Theorem In addition to knowing how individual data value vary about the mean for a population,

More information

Produced in cooperation with. Revision: May 26, Overview

Produced in cooperation with. Revision: May 26, Overview Lab Aignment 6: Tranfer Function Analyi Reviion: May 6, 007 Produced in cooperation with www.digilentinc.com Overview In thi lab, we will employ tranfer function to determine the frequency repone and tranient

More information

AN EVALUATION OF DIGILTAL ANTI-ALIASING FILTER FOR SPACE TELEMETRY SYSTEMS

AN EVALUATION OF DIGILTAL ANTI-ALIASING FILTER FOR SPACE TELEMETRY SYSTEMS AN EVALUATION OF DIGILTAL ANTI-ALIASING FILTER FOR SPACE TELEMETRY SYSTEMS Alion de Oliveira Morae (1), Joé Antonio Azevedo Duarte (1), Sergio Fugivara (1) (1) Comando-Geral de Tecnologia Aeroepacial,

More information

Internet Routing Protocols Lecture 02 Intra-domain Routing

Internet Routing Protocols Lecture 02 Intra-domain Routing Internet Routing Protocol Lecture Intra-domain Routing dvanced Sytem Topic Lent Term, 8 Timothy G. Griffin Computer Lab Cambridge UK Shortet Path Generalize ditance to weighted etting igraph G = (V,E)

More information

Time-Domain Coupling to a Device on Printed Circuit Board Inside a Cavity. Chatrpol Lertsirimit, David R. Jackson and Donald R.

Time-Domain Coupling to a Device on Printed Circuit Board Inside a Cavity. Chatrpol Lertsirimit, David R. Jackson and Donald R. Time-Domain Coupling to a Device on Printed Circuit Board Inide a Cavity Chatrpol Lertirimit, David R. Jackon and Donald R. Wilton Applied Electromagnetic Laboratory Department of Electrical Engineering,

More information

HIGH VOLTAGE DC-DC CONVERTER USING A SERIES STACKED TOPOLOGY

HIGH VOLTAGE DC-DC CONVERTER USING A SERIES STACKED TOPOLOGY HIGH VOLTAGE DC-DC CONVERTER USING A SERIES STACKED TOPOLOGY Author: P.D. van Rhyn, Co Author: Prof. H. du T. Mouton Power Electronic Group (PEG) Univerity of the Stellenboch Tel / Fax: 21 88-322 e-mail:

More information

Analysis. Control of a dierential-wheeled robot. Part I. 1 Dierential Wheeled Robots. Ond ej Stan k

Analysis. Control of a dierential-wheeled robot. Part I. 1 Dierential Wheeled Robots. Ond ej Stan k Control of a dierential-wheeled robot Ond ej Stan k 2013-07-17 www.otan.cz SRH Hochchule Heidelberg, Mater IT, Advanced Control Engineering project Abtract Thi project for the Advanced Control Engineering

More information

Subcarrier exclusion techniques

Subcarrier exclusion techniques Subcarrier excluion technique for coded OFDM ytem Kai-Uwe Schmidt, Jochen Ertel, Michael Benedix, and Adolf Finger Communication Laboratory, Dreden Univerity of Technology, 62 Dreden, Germany email: {chmidtk,

More information

Lab 7 Rev. 2 Open Lab Due COB Friday April 27, 2018

Lab 7 Rev. 2 Open Lab Due COB Friday April 27, 2018 EE314 Sytem Spring Semeter 2018 College of Engineering Prof. C.R. Tolle South Dakota School of Mine & Technology Lab 7 Rev. 2 Open Lab Due COB Friday April 27, 2018 In a prior lab, we et up the baic hardware

More information

An FM signal in the region of 4.2 to 4.6

An FM signal in the region of 4.2 to 4.6 A LOW COST, HIGH ACCURACY RADAR ALTIMETER Thi article decribe the development of a frequency modulated (FM) radar altimeter for meauring the height of flying object. The entire tructure comprie two part:

More information

Mobile Communications TCS 455

Mobile Communications TCS 455 Mobile Communication TCS 455 Dr. Prapun Sukompong prapun@iit.tu.ac.th Lecture 23 1 Office Hour: BKD 3601-7 Tueday 14:00-16:00 Thurday 9:30-11:30 Announcement Read Chapter 9: 9.1 9.5 Section 1.2 from [Bahai,

More information

Resonant amplifier L A B O R A T O R Y O F L I N E A R C I R C U I T S. Marek Wójcikowski English version prepared by Wiesław Kordalski

Resonant amplifier L A B O R A T O R Y O F L I N E A R C I R C U I T S. Marek Wójcikowski English version prepared by Wiesław Kordalski A B O R A T O R Y O F I N E A R I R U I T S Reonant amplifier 3 Marek Wójcikowki Englih verion prepared by Wieław Kordalki. Introduction Thi lab allow you to explore the baic characteritic of the reonant

More information

COST OF TRANSMISSION TRANSACTIONS: Comparison and Discussion of Used Methods

COST OF TRANSMISSION TRANSACTIONS: Comparison and Discussion of Used Methods INTERNATIONAL CONFERENCE ON RENEWABLE ENERGY AND POWER QUALITY (ICREPQ 03) COST OF TRANSMISSION TRANSACTIONS: Comparion and Dicuion of Ued Method Judite Ferreira 1, Zita Vale 2, A. Almeida Vale 3 and Ricardo

More information

Active vibration isolation for a 6 degree of freedom scale model of a high precision machine

Active vibration isolation for a 6 degree of freedom scale model of a high precision machine Active vibration iolation for a 6 degree of freedom cale model of a high preciion machine W.B.A. Boomma Supervior Report nr : Prof. Dr. Ir. M. Steinbuch : DCT 8. Eindhoven Univerity of Technology Department

More information

Comparative Study of PLL, DDS and DDS-based PLL Synthesis Techniques for Communication System

Comparative Study of PLL, DDS and DDS-based PLL Synthesis Techniques for Communication System International Journal of Electronic Engineering, 2(1), 2010, pp. 35-40 Comparative Study of PLL, DDS and DDS-baed PLL Synthei Technique for Communication Sytem Govind Singh Patel 1 & Sanjay Sharma 2 1

More information

Sampling Theory MODULE XIII LECTURE - 41 NON SAMPLING ERRORS

Sampling Theory MODULE XIII LECTURE - 41 NON SAMPLING ERRORS Sampling Theory MODULE XIII LECTURE - 41 NON SAMPLING ERRORS DR. SHALABH DEPARTMENT OF MATHEMATICS AND STATISTICS INDIAN INSTITUTE OF TECHNOLOG KANPUR 1 It i a general aumption in ampling theory that the

More information

Interactive Machine Learning

Interactive Machine Learning Interactive Machine Learning Jerry Alan Fail, Dan R. Olen, Jr. Computer Science Department Brigham Young Univerity Provo, Utah 84602 {failj, olen}@c.byu.edu ABSTRACT Perceptual uer interface (PUI) are

More information

Gemini. The errors from the servo system are considered as the superposition of three things:

Gemini. The errors from the servo system are considered as the superposition of three things: Gemini Mount Control Sytem Report Prediction Of Servo Error Uing Simulink Model Gemini 9 July 1996 MCSJDW (Iue 3) - Decribe the proce of etimating the performance of the main axi ervo uing the non-linear

More information

Position Control of a Large Antenna System

Position Control of a Large Antenna System Poition Control of a Large Antenna Sytem uldip S. Rattan Department of Electrical Engineering Wright State Univerity Dayton, OH 45435 krattan@c.wright.edu ABSTRACT Thi report decribe the deign of a poition

More information

Control of Electromechanical Systems using Sliding Mode Techniques

Control of Electromechanical Systems using Sliding Mode Techniques Proceeding of the 44th IEEE Conference on Deciion and Control, and the European Control Conference 25 Seville, Spain, December 2-5, 25 MoC7. Control of Electromechanical Sytem uing Sliding Mode Technique

More information

Digital Control of Boost PFC AC-DC Converters with Predictive Control

Digital Control of Boost PFC AC-DC Converters with Predictive Control Proceeding of the th International Middle Eat Power Sytem Conference (MEPCON ), Cairo Univerity, Egypt, December 9-,, Paper ID 7. Digital Control of Boot PFC AC-DC Converter with Predictive Control H.Z.Azazi

More information

REAL-TIME IMPLEMENTATION OF A NEURO-AVR FOR SYNCHRONOUS GENERATOR. M. M. Salem** A. M. Zaki** O. P. Malik*

REAL-TIME IMPLEMENTATION OF A NEURO-AVR FOR SYNCHRONOUS GENERATOR. M. M. Salem** A. M. Zaki** O. P. Malik* Copyright 2002 IFAC 5th Triennial World Congre, Barcelona, Spain REAL-TIME IMPLEMENTATION OF A NEURO- FOR SYNCHRONOUS GENERATOR M. M. Salem** A. M. Zaki** O. P. Malik* *The Univerity of Calgary, Canada

More information

The RCS of a resistive rectangular patch antenna in a substrate-superstrate geometry

The RCS of a resistive rectangular patch antenna in a substrate-superstrate geometry International Journal of Wirele Communication and Mobile Computing 0; (4): 9-95 Publihed online October 0, 0 (http://www.ciencepublihinggroup.com/j/wcmc) doi: 0.648/j.wcmc.0004. The RCS of a reitive rectangular

More information

MODAL ANALYSIS OF A BEAM WITH CLOSELY SPACED MODE SHAPES

MODAL ANALYSIS OF A BEAM WITH CLOSELY SPACED MODE SHAPES ME 164 Senior Captone Deign The Cooper Union Spring 2011 MODAL ANALYSIS O A BEAM WITH CLOSELY SPACED MODE SHAPES Eglind Myftiu The Cooper Union New York City, NY, USA ABSTRACT Thi paper invetigate the

More information

Optimized BER Performance of Asymmetric Turbo Codes over AWGN Channel

Optimized BER Performance of Asymmetric Turbo Codes over AWGN Channel International Journal of Computer Application (0975 8887) Optimized Performance of Aymmetric Turbo Code over AWGN Channel M.Srinivaa Rao Pvpit, JNTU Kainada Andhra Pradeh, India. G.Vijaya Kumar Pvpit,

More information

Identification of Image Noise Sources in Digital Scanner Evaluation

Identification of Image Noise Sources in Digital Scanner Evaluation Identification of Image Noie Source in Digital Scanner Evaluation Peter D. Burn and Don William Eatman Kodak Company, ocheter, NY USA 4650-95 ABSTACT For digital image acquiition ytem, analyi of image

More information

Integral Control AGC of Interconnected Power Systems Using Area Control Errors Based On Tie Line Power Biasing

Integral Control AGC of Interconnected Power Systems Using Area Control Errors Based On Tie Line Power Biasing ISSN (Online) 232 24 ISSN (Print) 232 5526 Vol. 2, Iue 4, April 24 Integral Control AGC of Interconnected Power Sytem Uing Area Control Error Baed On Tie Line Power Biaing Charudatta B. Bangal Profeor,

More information

Sloppy Addition and Multiplication

Sloppy Addition and Multiplication Sloppy Addition and Multiplication IMM-Technical Report-2011-14 Alberto Nannarelli Dept. Informatic and Mathematical Modelling Technical Univerity of Denmark Kongen Lyngby, Denmark Email: an@imm.dtu.dk

More information

Parallel DCMs APPLICATION NOTE AN:030. Introduction. Sample Circuit

Parallel DCMs APPLICATION NOTE AN:030. Introduction. Sample Circuit APPLICATION NOTE AN:030 Parallel DCM Ugo Ghila Application Engineering Content Page Introduction 1 Sample Circuit 1 Output Voltage Regulation 2 Load Sharing 4 Startup 5 Special Application: Optimizing

More information

A New Technique to TEC Regional Modeling using a Neural Network.

A New Technique to TEC Regional Modeling using a Neural Network. A New Technique to TEC Regional Modeling uing a Neural Network. Rodrigo F. Leandro Geodetic Reearch Laboratory, Department of Geodey and Geomatic Engineering, Univerity of New Brunwick, Fredericton, Canada

More information

Techniques for Implementing a Model Simulated on a Physical Drive Vector Control

Techniques for Implementing a Model Simulated on a Physical Drive Vector Control 3 rd International Sympoium on Electrical Engineering and Energy er September 24-25, 2009, Suceava Technique for Implementing a Model Simulated on a Phyical Drive Vector Control Ciprian AFANASOV "Stefan

More information

Chapter Introduction

Chapter Introduction Chapter-6 Performance Analyi of Cuk Converter uing Optimal Controller 6.1 Introduction In thi chapter two control trategie Proportional Integral controller and Linear Quadratic Regulator for a non-iolated

More information

IE 361 Module 6. Gauge R&R Studies Part 2: Two-Way ANOVA and Corresponding Estimates for R&R Studies

IE 361 Module 6. Gauge R&R Studies Part 2: Two-Way ANOVA and Corresponding Estimates for R&R Studies IE 361 Module 6 Gauge R&R Studie Part 2: Two-Way ANOVA and Correponding Etimate for R&R Studie Reading: Section 2.2 Statitical Quality Aurance for Engineer (Section 2.4 of Revied SQAME) Prof. Steve Vardeman

More information

The Performance Analysis of MIMO OFDM System with Different M-QAM Modulation and Convolution Channel Coding

The Performance Analysis of MIMO OFDM System with Different M-QAM Modulation and Convolution Channel Coding The Performance Analyi of MIMO OFDM Sytem with Different M-QAM Modulation and Convolution Channel Coding H. S. Shwetha M.tech, Digital Communication Engineering Siddaganga Intitute of Technology Tumakuru,

More information

A Simple DSP Laboratory Project for Teaching Real-Time Signal Sampling Rate Conversions

A Simple DSP Laboratory Project for Teaching Real-Time Signal Sampling Rate Conversions A Simple DSP Laboratory Project for Teaching Real-Time Signal Sampling Rate Converion by Li Tan, Ph.D. lizhetan@pnc.edu Department of ECET Purdue Univerity North Central Wetville, Indiana Jean Jiang, Ph.D.

More information

HEURISTIC APPROACHES TO SOLVE THE U-SHAPED LINE BALANCING PROBLEM AUGMENTED BY GENETIC ALGORITHMS. Ulises Martinez William S. Duff

HEURISTIC APPROACHES TO SOLVE THE U-SHAPED LINE BALANCING PROBLEM AUGMENTED BY GENETIC ALGORITHMS. Ulises Martinez William S. Duff Proceeding of the 200 Sytem and Information Engineering Deign Sympoium Matthew H. Jone, Stephen D. Pate, and Barbara E. Tawney, ed. HEURISTIC APPROACHES TO SOLVE THE U-SHAPED LINE BALANCING PROBLEM AUGMENTED

More information

Mechatronics Laboratory Assignment 5 Motor Control and Straight-Line Robot Driving

Mechatronics Laboratory Assignment 5 Motor Control and Straight-Line Robot Driving Mechatronic Laboratory Aignment 5 Motor Control and Straight-Line Robot Driving Recommended Due Date: By your lab time the week of March 5 th Poible Point: If checked off before your lab time the week

More information

DSP-Based Control of Boost PFC AC-DC Converters Using Predictive Control

DSP-Based Control of Boost PFC AC-DC Converters Using Predictive Control DSP-Baed Control of Boot PFC AC-DC Converter Uing Predictive Control H.Z.Azazi*, E. E. E-Kholy**, S.A.Mahmoud* and S.S.Shokralla* * Electrical Engineering Department, Faculty of Engineering, Menoufiya

More information

(a) frequency (b) mode (c) histogram (d) standard deviation (e) All the above measure

(a) frequency (b) mode (c) histogram (d) standard deviation (e) All the above measure MT143 Introductory Statitic I Exercie on Exam 1 Topic Exam 1 will ocu on chapter 2 rom the textbook. Exam will be cloed book but you can have one page o note. There i no guarantee that thee exercie will

More information

INDIAN OCEAN HYDROACOUSTIC WAVE PROPAGATION CHARACTERISTICS

INDIAN OCEAN HYDROACOUSTIC WAVE PROPAGATION CHARACTERISTICS ABSTRACT INDIAN OCEAN HYDROACOUSTIC WAVE PROPAGATION CHARACTERISTICS Pierre-Franck Pierchia, Pierre-Mathieu Dordain CEA/DIF Département Anlaye, Surveillance, Environnement, France Sponor Commiariat à l

More information

SIMULINK for Process Control

SIMULINK for Process Control SIMULINK for Proce Control Simulink for Control MATLAB, which tand for MATrix LABoratory, i a technical computing environment for high-performance numeric computation and viualization. SIMULINK i a part

More information

A COMPARISON OF METHODS FOR EVALUATING THE TEST ZONE PERFORMANCE OF ANECHOIC CHAMBERS DESIGNED FOR TESTING WIRELESS DEVICES

A COMPARISON OF METHODS FOR EVALUATING THE TEST ZONE PERFORMANCE OF ANECHOIC CHAMBERS DESIGNED FOR TESTING WIRELESS DEVICES A COMPARISON OF METHODS FOR EVALUATING THE TEST ZONE PERFORMANCE OF ANECHOIC CHAMBERS DESIGNED FOR TESTING WIRELESS DEVICES Jame D. Huff John C. Mantovani Carl W. Sirle The Howland Company, Inc. 4540 Atwater

More information

Lecture 11. Noise from optical amplifiers. Optical SNR (OSNR), noise figure, (electrical) SNR Amplifier and receiver noise

Lecture 11. Noise from optical amplifiers. Optical SNR (OSNR), noise figure, (electrical) SNR Amplifier and receiver noise Lecture 11 Noie from optical amplifier EDFA noie Raman noie Optical SNR (OSNR), noie figure, (electrical) SNR Amplifier and receiver noie ASE and hot/thermal noie Preamplification for SNR improvement Fiber

More information

Different Parameters Variation Analysis of a PV Cell

Different Parameters Variation Analysis of a PV Cell Different Parameter Variation Analyi of a PV Cell Md Tofael Ahmed *a,terea Gonçalve b,andre Albino b, Maud Rana Rahel b, Angela Veiga b, Mouhaydine Tlemcani b *a,b Department of Phyic, b Department of

More information

NOISE BARRIERS CERC 1. INTRODUCTION

NOISE BARRIERS CERC 1. INTRODUCTION Augut 217 P33/1B/17 NOISE BARRIERS CERC In thi document ADMS refer to ADMS-Road 4.1, ADMS-Urban 4.1 and ADMS-Airport 4.1. Where information refer to a ubet of the lited model, the model name i given in

More information

Phase-Locked Loops (PLL)

Phase-Locked Loops (PLL) Phae-Locked Loop (PLL) Recommended Text: Gray, P.R. & Meyer. R.G., Analyi and Deign of Analog Integrated Circuit (3 rd Edition), Wiley (992) pp. 68-698 Introduction The phae-locked loop concept wa firt

More information

Raising Cavity Q for Microwave-Pulse Compression by Reducing Aperture Skin-Effect Losses

Raising Cavity Q for Microwave-Pulse Compression by Reducing Aperture Skin-Effect Losses Circuit and Electromagnetic Sytem Deign Note Note 6 8 June 9 Raiing Cavity Q for Microwave-Pule Compreion by Reducing Aperture Skin-Effect Loe Carl E. Baum Univerity of New Meico Department of Electrical

More information

MIMO Systems: Multiple Antenna Techniques

MIMO Systems: Multiple Antenna Techniques ADVANCED MIMO SYSTEMS MIMO Sytem: Multiple Antenna Technique Yiqing ZOU, Zhengang PAN, Kai-Kit WONG Dr, Senior Member of IEEE, Aociate Editor, IEEE TWirele, IEEE CL, and JoC (AP), Senior Lecturer, Department

More information

Method to Improve Range and Velocity Error Using De-interleaving and Frequency Interpolation for Automotive FMCW Radars

Method to Improve Range and Velocity Error Using De-interleaving and Frequency Interpolation for Automotive FMCW Radars International Journal o Signal Proceing, Image Proceing and Pattern Recognition Vol. 2, No. 2, June 2009 Method to Improve Range and Velocity Error Uing De-interleaving and Frequency Interpolation or Automotive

More information

CIRCULAR SYNTHETIC APERTURE SONAR WITHOUT A BEACON

CIRCULAR SYNTHETIC APERTURE SONAR WITHOUT A BEACON CIRCULAR SYNTHETIC APERTURE SONAR WITHOUT A BEACON Hayden J Callow a, Roy E Hanen a, Stig A Synne a, Tortein O Sæbø a a Norwegian Defence Reearch Etablihment, P O Box 25, NO-2027 Kjeller, Norway Contact

More information

EM341 Installation and use instructions

EM341 Installation and use instructions EM341 Intallation and ue intruction 65 A direct connection three-phae energy analyzer with Modbu and digital interface General warning HAZARD: Live part. Heart attack, burn and other injurie. Diconnect

More information

Cuing mechanisms in auditory signal detection

Cuing mechanisms in auditory signal detection Cuing mechanim in auditory ignal detection RONALD HÜBNER and ERVIN R. HAFTER Univerity of California, Berkeley, California Detection of auditory ignal under frequency uncertainty can be improved by preenting

More information

Topology in Circuit Analysis

Topology in Circuit Analysis Topology in Circuit Analyi Many dierent circuit actually operate the ame Can reduce a circuit to a "graph" Graph only how the branche, not the device Two Circuit are aid to have the ame topology When the

More information

SCK LAB MANUAL SAMPLE

SCK LAB MANUAL SAMPLE SCK LAB MANUAL SAMPLE VERSION 1.2 THIS SAMPLE INCLUDES: TABLE OF CONTENTS TWO SELECTED LABS FULL VERSION IS PROVIDED FREE WITH KITS Phone: +92 51 8356095, Fax: +92 51 8311056 Email: info@renzym.com, URL:www.renzym.com

More information

To appear in 30th ACM/IEEE Design Automation Conference 1993.

To appear in 30th ACM/IEEE Design Automation Conference 1993. Reolving Signal Correlation for Etimating Maximum Current in CMOS Combinational Circuit Harih Kriplani y,farid Najm y, Ping Y ang yy and Ibrahim Hajj y y Univerity of Illinoi at Urbana-Champaign yy Texa

More information

FM Range Calculation

FM Range Calculation FM Range Calculation Thi heet i to etimate of the range that can be epected from an FM or ASK modulated ytem. Chri Haji-Michael www.unhadow.co.uk It ue a modified-verion of the Fri tranmiion equation.

More information

Revisiting Cross-channel Information Transfer for Chromatic Aberration Correction

Revisiting Cross-channel Information Transfer for Chromatic Aberration Correction Reviiting Cro-channel Information Tranfer for Chromatic Aberration Correction Tiancheng Sun, Yifan Peng 3, Wolfgang Heidrich,3 King Abdullah Univerity of Science and Technology, Thuwal, Saudi Arabia IIIS,

More information

DIGITAL COMMUNICATION

DIGITAL COMMUNICATION DEPARTMENT OF ELECTRICAL &ELECTRONICS ENGINEERING DIGITAL COMMUNICATION Spring 2010 Yrd. Doç. Dr. Burak Kelleci OUTLINE Line Code Differential Encoding Regeneration, Decoding and Filtering Delta Modulation

More information

Synchronous Power Controller Merits for Dynamic Stability Improvement in Long Line by Renewables

Synchronous Power Controller Merits for Dynamic Stability Improvement in Long Line by Renewables Synchronou Power ontroller Merit for Dynamic Stability Improvement in Long Line by Renewable Motafa Abdollahi, Joe Ignacio andela, Joan Rocabert, Raul Santiago Munoz Aguilar, and Juan Ramon Hermoo Technical

More information

A SIMPLE HARMONIC COMPENSATION METHOD FOR NONLINEAR LOADS USING HYSTERESIS CONTROL TECHNIQUE

A SIMPLE HARMONIC COMPENSATION METHOD FOR NONLINEAR LOADS USING HYSTERESIS CONTROL TECHNIQUE A IMPLE HARMONIC COMPENATION METHOD FOR NONLINEAR LOAD UING HYTEREI CONTROL TECHNIQUE Kemal KETANE kemalketane@gazi.edu.tr İre İKENDER irei@gazi.edu.tr Gazi Univerity Engineering and Architecture Faculty

More information

Active Harmonic Elimination in Multilevel Converters Using FPGA Control

Active Harmonic Elimination in Multilevel Converters Using FPGA Control Active Harmonic Elimination in Multilevel Converter Uing FPGA Control Zhong Du, Leon M. Tolbert, John N. Chiaon Electrical and Computer Engineering The Univerity of Tenneee Knoxville, TN 7996- E-mail:

More information

V is sensitive only to the difference between the input currents,

V is sensitive only to the difference between the input currents, PHYSICS 56 Experiment : IC OP-Amp and Negative Feedback In thi experiment you will meaure the propertie of an IC op-amp, compare the open-loop and cloed-loop gain, oberve deterioration of performance when

More information

Research on Control Technology of Permanent Magnet Synchronous Motor Based on Iterative Algorithm Liu Yangyang 1c, Yang Guang 2b, Zou Qi 1c,

Research on Control Technology of Permanent Magnet Synchronous Motor Based on Iterative Algorithm Liu Yangyang 1c, Yang Guang 2b, Zou Qi 1c, 3rd International Conference on Mechanical Engineering and Intelligent Sytem (ICMEIS 2015) Reearch on Control Technology of Permanent Magnet Synchronou Motor Baed on Iterative Algorithm Liu Yangyang 1c,

More information

RESEARCH ON NEAR FIELD PASSIVE LOCALIZATION BASED ON PHASE MEASUREMENT TECHNOLOGY BY TWO TIMES FREQUENCY DIFFERENCE

RESEARCH ON NEAR FIELD PASSIVE LOCALIZATION BASED ON PHASE MEASUREMENT TECHNOLOGY BY TWO TIMES FREQUENCY DIFFERENCE RESEARCH ON NEAR FIED PASSIVE OCAIZATION BASED ON PHASE MEASUREMENT TECHNOOGY BY TWO TIMES FREQUENCY DIFFERENCE Xuezhi Yan, Shuxun Wang, Zhongheng Ma and Yukuan Ma College of Communication Engineering

More information

MIMO Enabled Efficient Mapping of Data in WiMAX Networks

MIMO Enabled Efficient Mapping of Data in WiMAX Networks MIMO Enabled Efficient Mapping of Data in WiMAX Network Penumarthi Phani Krihna, R. Saravana Manickam, and C. Siva Ram Murthy Department of Computer Science and Engineering Indian Intitute of Technology

More information

ECE451/551 Matlab and Simulink Controller Design Project

ECE451/551 Matlab and Simulink Controller Design Project ECE451/551 Matlab and Simulink Controller Deign Project Aim: Ue Matlab and Simulink to build and imulate variou control configuration a dicued in the Modern Control ection (chapter 18-23) in the intructor

More information

Lecture 6-1. Data Path Circuits

Lecture 6-1. Data Path Circuits Lecture 6 Data Path Circuit Kontantino Maelo Department of Electrical & Electronic Engineering Imperial College London URL: http://ca.ee.ic.ac.uk/~kota E-mail: k.maelo@ic.ac.uk Data Path Circuit Introduction

More information

Previous lecture. Lecture 5 Control of DVD reader. TheDVD-reader tracking problem. Can you see the laser spot?

Previous lecture. Lecture 5 Control of DVD reader. TheDVD-reader tracking problem. Can you see the laser spot? Lecture 5 Control of DVD reader Previou lecture Focu control Radial control (Track following) Lecture 4: Specification in frequency domain Loop haping deign Problem formulation Modeling Specification Focu

More information

APPLICATION OF PHASOR MEASUREMENT UNIT IN SMART GRID

APPLICATION OF PHASOR MEASUREMENT UNIT IN SMART GRID APPLICATION OF PHASOR MEASUREMENT UNIT IN SMART GRID 1 Chandarani Sutar, 2 Dr. K. S. Verma 1 RRSIMT Amethi (U.P.), 2 KNIT Sultapur (U.P.) Email: 1 Chandarani_t@yahoo.com, 2 kv211@rediffmail.com, Abtract-A

More information

Study of Electronic Direct Digital Control (DDC) Panel using Mechanical Vibration Exciter

Study of Electronic Direct Digital Control (DDC) Panel using Mechanical Vibration Exciter Study of Electronic Direct Digital Control (DDC) Panel uing Mechanical Vibration Exciter Kiran G. Shinde 1, Ahih R. Pawar 1, Hemant P. Kadam 1 1Department of Mechanical Engineering, D. Y. Patil College

More information

A Real-Time Wireless Channel Emulator For MIMO Systems

A Real-Time Wireless Channel Emulator For MIMO Systems A eal-time Wirele Channel Emulator For MIMO Sytem Hamid Elami, Ahmed M. Eltawil {helami,aeltawil}@uci.edu Abtract: The improvement in channel capacity hailed by MIMO ytem i directly related to intricate

More information

MM6 PID Controllers. Readings: Section 4.2 (the classical three-term controllers, p except subsection 4.2.5); Extra reading materials

MM6 PID Controllers. Readings: Section 4.2 (the classical three-term controllers, p except subsection 4.2.5); Extra reading materials MM6 PID Controller Reading: Section 4.2 the claical three-term controller, p.179-196 except ubection 4.2.5; Extra reading material 9/9/2011 Claical Control 1 What have we talked in MM5? Stability analyi

More information

ISSN: ISO 9001:2008 Certified International Journal of Engineering and Innovative Technology (IJEIT)

ISSN: ISO 9001:2008 Certified International Journal of Engineering and Innovative Technology (IJEIT) ISSN: 777 ISO 9: Certified Volume, Iue, April Deign of Coine Modulated Filter Bank uing Computationally Efficient Multiplierle FIR Filter Jyotna Ogale, Alok Jain Abtract Thi reearch work preent a computationally

More information

Joint Wireless Positioning and Emitter Identification in DVB-T Single Frequency Networks

Joint Wireless Positioning and Emitter Identification in DVB-T Single Frequency Networks Joint Wirele Poitioning and Emitter Identification in Single Frequency Network Liang Chen, Lie-Liang Yang, Jun Yan and Ruizhi Chen Abtract Digital televiion (DTV) ignal ha been recognized a a promiing

More information

CHAPTER 2 WOUND ROTOR INDUCTION MOTOR WITH PID CONTROLLER

CHAPTER 2 WOUND ROTOR INDUCTION MOTOR WITH PID CONTROLLER 16 CHAPTER 2 WOUND ROTOR INDUCTION MOTOR WITH PID CONTROLLER 2.1 INTRODUCTION Indutrial application have created a greater demand for the accurate dynamic control of motor. The control of DC machine are

More information

STRUCTURAL SEMI-ACTIVE CONTROL DEVICE

STRUCTURAL SEMI-ACTIVE CONTROL DEVICE STRUCTURAL SEMI-ACTIVE CONTROL DEVICE Ming-Hiang SHIH SUMMARY Method for vibration reduction of tructure under dynamic excitation uch a wind and earthquake were generally claified into active control and

More information

New Resonance Type Fault Current Limiter

New Resonance Type Fault Current Limiter New Reonance Type Fault Current imiter Mehrdad Tarafdar Hagh 1, Member, IEEE, Seyed Behzad Naderi 2 and Mehdi Jafari 2, Student Member, IEEE 1 Mechatronic Center of Excellence, Univerity of Tabriz, Tabriz,

More information

Improvement in Image Reconstruction of Biological Object by EXACT SIRT cell Scanning Technique from Two Opposite sides of the Target

Improvement in Image Reconstruction of Biological Object by EXACT SIRT cell Scanning Technique from Two Opposite sides of the Target Vol. 3, Iue. 3, ay.-june. 2013 pp-1597-1601 ISSN: 2249-6645 Improvement in Image Recontruction of Biological Object by EXACT SIRT cell Scanning Technique from Two Oppoite ide of the Target Kabita Purkait

More information

Modulation Extension Control for Multilevel Converters Using Triplen Harmonic Injection with Low Switching Frequency

Modulation Extension Control for Multilevel Converters Using Triplen Harmonic Injection with Low Switching Frequency odulation Extenion Control for ultilevel Converter Uing Triplen Harmonic Injection with ow Switching Frequency Zhong Du, eon. Tolbert, John N. Chiaon Electrical and Computer Engineering The Univerity of

More information

Protection scheme for transmission lines based on correlation coefficients

Protection scheme for transmission lines based on correlation coefficients International Journal of Energy and Power Engineering 4; 3(): 93- Publihed online May, 4 (http://www.ciencepublihinggroup.com/j/ijepe) doi:.648/j.ijepe.43.8 Protection cheme for tranmiion line baed on

More information

UNIT 3 CIRCLES AND VOLUME Lesson 4: Finding Arc Lengths and Areas of Sectors Instruction

UNIT 3 CIRCLES AND VOLUME Lesson 4: Finding Arc Lengths and Areas of Sectors Instruction Prerequiite Skill Thi leon require the ue of the following kill: finding the circumference of a circle undertanding cale factor in imilar hape uing ratio and proportion Introduction All circle are imilar;

More information

ENHANCEMENT OF FINGER VEIN IMAGE USING MULTIFILTERING ALGORITHM

ENHANCEMENT OF FINGER VEIN IMAGE USING MULTIFILTERING ALGORITHM ENHANCEMENT OF FINGER VEIN IMAGE USING MULTIFILTERING ALGORITHM Kayode A. Akintoye 1, 2, Mohd Shafry Mohd Rahim 1 and Abdul Hanan Abdullah 1 1 Department of Computer Science, Faculty of Computing, Univeriti

More information

Loss Reduction of AS/AC Networks with Holographic Optical Switches

Loss Reduction of AS/AC Networks with Holographic Optical Switches 7th WEA International Conference on Electric Power ytem, High Voltage, Electric Machine, Venice, Italy, ovember -3, 007 36 Lo Reduction of A/AC etwork with Holograhic Otical witche Jiun-hiou Deng, Chien-Yi

More information

2013 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media,

2013 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media, EEE. Peronal ue of thi material i permitted. Permiion from EEE mut be obtained for all other ue, in any current or future media, including reprinting/republihing thi material for advertiing or promotional

More information

Network Coding for Multi-Resolution Multicast

Network Coding for Multi-Resolution Multicast Network Coding for Multi-Reolution Multicat MinJi Kim, Daniel Lucani, Xiaomeng Shi, Fang Zhao, Muriel Médard Maachuett Intitute of Technology, Cambridge, MA 02139, USA Email: {minjikim, dlucani, xhi, zhaof,

More information

GPS signal Rician fading model for precise navigation in urban environment

GPS signal Rician fading model for precise navigation in urban environment Indian Journal of Radio & Space Phyic Vol 42, June 203, pp 92-96 GPS ignal Rician fading model for precie navigation in urban environment G Sai Bhuhana Rao, G Sateeh Kumar $,* & M N V S S Kumar Department

More information

Design of Centralized PID Controllers for TITO Processes*

Design of Centralized PID Controllers for TITO Processes* 6th International Sympoium on Advanced Control of Indutrial Procee (AdCONIP) May 8-3, 07. Taipei, Taiwan Deign of Centralized PID Controller for TITO Procee* Byeong Eon Park, Su Whan Sung, In-Beum Lee

More information

Power Conversion Efficiency of Airborne Parametric Array

Power Conversion Efficiency of Airborne Parametric Array Power Converion Efficiency of Airborne Parametric Array JIANFENG CHEN Laboratorie for Information Technology, Heng Mui Keng Terrace, Singapore 963 http://www.lit.a-tar.edu.g Abtract: - In thi paper the

More information

Feedback Control Design of Off-line Flyback Converter

Feedback Control Design of Off-line Flyback Converter Application Note Edwin Wang AN7 Jun 24 Feedback Control Deign of Off-line Flyback Converter Abtract Controlling the feedback of off-line flyback converter ha often perplexed power engineer becaue it involve

More information

Performance analysis in cognitive radio system under perfect spectrum sensing Chen Song, Gu Shuainan, Zhang Yankui

Performance analysis in cognitive radio system under perfect spectrum sensing Chen Song, Gu Shuainan, Zhang Yankui International Conference on Automation, Mechanical Control and Comutational Engineering (AMCCE 205) Performance analyi in cognitive radio ytem under erfect ectrum ening Chen Song, Gu Shuainan, Zhang Yankui

More information

Observational Uncertainty in Plan Recognition Among Interacting. Robots. Marcus J. Huber. Edmund H. Durfee

Observational Uncertainty in Plan Recognition Among Interacting. Robots. Marcus J. Huber. Edmund H. Durfee Obervational Uncertainty in Plan Recognition Among Interacting Robot Marcu J. Huber Edmund H. Durfee Ditributed Intelligent Agent Group (DIAG) Articial Intelligence Laboratory The Univerity of Michigan

More information

Francisco M. Gonzalez-Longatt Juan Manuel Roldan Jose Luis Rueda. Line 5: City, Country

Francisco M. Gonzalez-Longatt Juan Manuel Roldan Jose Luis Rueda. Line 5: City, Country Impact of DC Control Strategie on Dynamic Behaviour of Multi-Terminal Voltage-Source Converter-Baed HVDC after Sudden Diconnection of a Converter Station Francico M. Gonzalez-Longatt Juan Manuel Roldan

More information

Voltage Analysis of Distribution Systems with DFIG Wind Turbines

Voltage Analysis of Distribution Systems with DFIG Wind Turbines 1 Voltage Analyi of Ditribution Sytem with DFIG Wind Turbine Baohua Dong, Sohrab Agarpoor, and Wei Qiao Department of Electrical Engineering Univerity of Nebraka Lincoln Lincoln, Nebraka 68588-0511, USA

More information

A VHDL-AMS Simulation Methodology for Transient Supply Current Extraction

A VHDL-AMS Simulation Methodology for Transient Supply Current Extraction A VHDL-AMS Simulation Methodology for Tranient Supply Current Extraction Richard Perdriau */**, Damien Lambert */***, Anne-Marie Trulleman **, Mohamed Ramdani * and Jean-Luc Levant *** * Ecole Supérieure

More information

Kalman Filtering Based Object Tracking in Surveillance Video System

Kalman Filtering Based Object Tracking in Surveillance Video System (669 -- 917) Proceeding of the 3rd (2011) CUSE International Conference Kalman Filtering Baed Object racking in Surveillance Video Sytem W.L. Khong, W.Y. Kow, H.. an, H.P. Yoong, K..K. eo Modelling, Simulation

More information

A Two-Stage Optimization PID Algorithm

A Two-Stage Optimization PID Algorithm PID' Brecia (Italy), March 8-3, ThB. A Two-Stage Optimization PID Algorithm Gíli Herjólfon Anna Soffía Haukdóttir Sven Þ. Sigurðon Department of Electrical and Computer Engineering,Univerity of Iceland

More information

Summary of Well Known Interface Standards

Summary of Well Known Interface Standards Summary of Well Known Interface Standard FORWARD Deigning an interface between ytem i not a imple or traight-forward tak that mut be taken into account include data rate data format cable length mode of

More information