Dynamic Optimization. Assignment 1. Sasanka Nagavalli January 29, 2013 Robotics Institute Carnegie Mellon University

Size: px
Start display at page:

Download "Dynamic Optimization. Assignment 1. Sasanka Nagavalli January 29, 2013 Robotics Institute Carnegie Mellon University"

Transcription

1 Dynamc Optmzaton Assgnment 1 Sasanka Nagavall snagaval@andrew.cmu.edu January 29, 213 Robotcs Insttute Carnege Mellon Unversty

2 Table of Contents 1. Problem and Approach Optmzaton wthout Analytcal Dervatves Optmzaton wth Analytcal Dervatves References... 12

3 1. Problem and Approach Consder a stuaton where a humanod robot s requred to move one of ts jonts (e.g. ts hand) to a specfc locaton wthout fallng over or movng ts feet. If the model of the robot s known (.e. the knematc chan contanng the connectvty, ntal poses, and lmts of jonts and lnks s gven), ths problem can be formulated as the followng constraned nonlnear optmzaton problem. arg mn x f x subject to c eq x c x x f : c : c eq : n n n n p q The soluton to the problem above s the value of the vector varable x that mnmzes the objectve functon. In ths assgnment, the focus wll be on formulatng the problem by specfyng the approprate objectve functon f c x and the equalty constrant functon fmncon solver [1]. ceq 2. Optmzaton wthout Analytcal Dervatves x, the nequalty constrant functon x. The problem wll then be solved for x usng Matlab s Please see the provded drc.m scrpt for a tree structure defnng the knematc chan of the humanod robot. Snce the goal s to place the specfed jont at the specfed locaton, the objectve functon may be set to the Eucldean dstance between the jont s poston and the goal poston. The Eucldean dstance s a good choce for an objectve functon because t has a well-defned mnmum value (.e. ) and the goal s clearly acheved whenever the functon s mnmzed though addtonal effort may be requred to also satsfy the constrants. Whle the goal poston P goal s fxed, the jont poston P s a functon of the robot s jont angles,,, jont and t can be determned by applyng forward knematcs to the robot s knematc chan. The vector of jont angles that mnmzes the value of the objectve functon s the soluton to the problem. f,,, P,,, P jont Snce the robot must not move ts feet, the equalty constrant may be smlarly defned n terms of the Eucldean dstance between each foot jont s poston and ts ntal poston. Ths equalty constrant s satsfed when both of these dstances are. goal 1

4 c,,, P P,,, lfoot _ jont lfoot _ ntal,,, rfoot _ jont rfoot _ ntal P P The fnal condton that the robot must not fall over can be specfed n terms of the nequalty constrant usng the robot s center of mass. The robot has a base of support that can be estmated by the poston and sze of ts feet. The base of support defnes a two dmensonal regon on the ground beneath the robot such that f the robot s projected center of mass les wthn the regon, the robot wll not fall over. If the robot s projected center of mass les outsde the regon, the robot wll fall over. By crudely estmatng ths regon wth a rectangle of gven dmensons ( C lmt ) centered on the orgn, the nequalty constrant may be specfed by the followng functon. Crobot, x 1, 2,, 28 Clmt, x Crobot, y 1, 2,, 28 Clmt, y c1, 2,, 28 Crobot, x 1, 2,, 28 Clmt, x Crobot, y 1, 2,, 28 Clmt, y Please see sasanka_objectve.m for a Matlab functon that mplements the objectve functon f,,, defned above Please see sasanka_constrants.m for a Matlab functon that mplements both the nequalty constrant c,,, and equalty constrant c,,, functons defned above eq Please see q1.m for a Matlab scrpt that uses fmncon to solve ths nonlnear optmzaton problem. Note that the scrpt also specfes upper and lower bounds on the jont angles as parameters to fmncon to lmt the angles to wthn the jont lmts. These jont lmts could also easly have been specfed as addtonal nonlnear constrants, but n mplementaton, t appears to be more effcent to specfy them separately to fmncon. The fgures below show the ntal pose and a varety of dfferent poses obtaned as solutons to the nonlnear optmzaton problem when the specfed jont s the rght hand and goal poston s as ndcated on the fgure. 2

5 Fgure 1 - Intal Robot Pose Fgure 2 - Robot Reaches for (,,) wth Rght Hand 3

6 Fgure 3 - Robot Reaches for (1,,.5) wth Rght Hand Fgure 4 - Robot Reaches for (1,1,) wth Rght Hand 4

7 Fgure 5 - Robot Reaches for (-.5,-.5,1) Fgure 6 - Robot Reaches for (,,1.5) wth Rght Hand 5

8 Please see Appendx A1 to Appendx A5 for the output correspondng to the above fgures. Of the postons tested, the only poston that the robot could not reach wth ts rght hand was (1,1,) whch s a pont on the ground one meter n front and one meter to the left of the robot. In ths stuaton, the solver found a local mnmum for the optmzaton functon that satsfed the constrants, but ths mnmum s far from the desred value of. 3. Optmzaton wth Analytcal Dervatves The optmzaton method descrbed above can be extended to nclude the computaton of exact gradents through the use of analytcal dervatves. Theoretcally, ths should result n faster convergence on the soluton to the optmzaton problem because there s no error n the computed gradent of the objectve functon or the constrant functons. These exact gradents can be provded to fmncon as extra output arguments n the objectve and constrant functons and by settng the GradObj and GradConstr optons to on [1]. The gradents of the objectve functon and constrant functons may be obtaned through applcaton of the chan rule. f,,, P,,, P c eq jont T 1, 2,, 28,,, P f Pjont Pgoal Pjont,,, P,,,,,, jont goal c eq,,, P P,,, goal lfoot _ jont lfoot _ ntal,,, P P rfoot _ jont rfoot _ ntal T Plfoot _ jont 1, 2,, 28 Plfoot _ ntal Plfoot _ jont Plfoot _ jont 1, 2,, 28 P lfoot _ ntal 1, 2,, 28 Prfoot _ jont Prfoot _ ntal Prfoot _ jont Prfoot _ jont rfoot _ ntal T,,,,,, P 1, 2,, 28 6

9 c,,, c,,, C,,, C,,, C,,, C,,, Crobot, x 1, 2,, 28 C robot, y 1, 2,, 28 C robot, x 1, 2,, 28 Crobot, y 1, 2,, 28 C robot, x lmt, x C robot, y lmt, y C robot, x lmt, x C robot, y lmt, y It s clear that n order to compute the dervatves of the objectve and constrant functons, one must frst compute the dervatves of the poston of every jont and the dervatves of the centerof-mass of the robot. In a robot wth 28 jonts and lnks, ths appears to be an enormous amount of computaton. However, the computaton may be sgnfcantly smplfed by consderng the followng. Gven a knematc chan wth n jonts and lnks, jont offsets d1, d2,, d n, lnk center-of-mass offsets 1, 2,, n compute the jont postons P, lnk orentatons followng recursve update rule. t t t and a vector of jont angles 1, 2,, n, t s possble to K, and lnk center-of-masses Q va the P P K d parent ( ) parent ( ) K K R parent () Q P K t The recursve update rule gven above captures the forward knematcs of the knematc chan and only requres that the root jont s poston P and the root lnk s orentaton K be specfed. By the takng the dervatves of the equatons above, a smlar update rule may be specfed to propagate the dervatves of the jont postons, lnk orentatons and lnk center-of-masses. Assume that the jonts and lnks are numbered such that parent (). 7

10 P P K j j j K j K j parent ( ) parent ( ) K parent () j j parent () Q P K t j j j R j d j j R j Please see drc_forward_knematcs2.m for a modfed verson of the forward knematcs functon that also computes the gradents usng the update rules above. The dervatve of the robot s center-of-mass s also easly computed once the dervatves of every lnk s center-of-mass have been computed. mq C m C j Q m Please see sasanka_objectve2.m for a Matlab functon that mplements the objectve functon f f 1, 2,, 28 and ts gradent.,,, Please see sasanka_constrants2.m for a Matlab functon that mplements both the nequalty constrant c1, 2,, 28 and equalty constrant ceq 1, 2,, 28 functons and ther gradents c c eq and. A sngle modfcaton was made to the equatons above n,,,,,, mplementaton and that was to modfy the equalty constrants to avod dvson, whch was causng a dvson-by-zero error when the jont angles dd not cause any movement n the feet of the robot. m j 8

11 Fgure 7 - Intal Robot Pose Fgure 8 - Robot Reaches for (,,) wth Rght Hand - Analytcal Gradent 9

12 Fgure 9 - Robot Reaches for (1,,.5) wth Rght Hand - Analytcal Gradent Fgure 1 - Robot Reaches for (1,1,) wth Rght Hand - Analytcal Gradent 1

13 Fgure 11 - Robot Reaches for (-.5,.5,1) wth Rght Hand - Analytcal Gradent Fgure 12 - Robot Reaches for (,,1.5) wth Rght Hand - Analytcal Gradent 11

14 Please see Appendx B1 to Appendx B5 for the output correspondng to the above fgures. The results appear to place the robot n more convoluted poses than those obtaned wthout the analytcal gradents. In most cases, the fnal poston of the jont was closer to the goal poston than wthout analytcal gradents. 4. References [1] MathWorks, "Fnd mnmum of constraned nonlnear multvarable functon - MATLAB," 212. [Onlne]. Avalable: [Accessed 26 January 213]. 12

15 Appendx A1 Robot Reaches for (,,) wth Rght Hand Local mnmum possble. Constrants satsfed. fmncon stopped because the sze of the current step s less than the default value of the step sze tolerance and constrants are satsfed to wthn the default value of the constrant tolerance. <stoppng crtera detals> Jont angles, lower lmts, upper lmts (radans): Fnal postons of statonary jonts and goal jont (xyz, meters): Jont 29: 1.e-8 * Center of mass of robot (xyz, meters): Dsplacement of statonary jonts (meters): e-8 Dstance from goal poston (meters): 7.231e-9 13

16 Appendx A2 Robot Reaches for (1,,.5) wth Rght Hand Local mnmum possble. Constrants satsfed. fmncon stopped because the sze of the current step s less than the default value of the step sze tolerance and constrants are satsfed to wthn the default value of the constrant tolerance. <stoppng crtera detals> Jont angles, lower lmts, upper lmts (radans): Fnal postons of statonary jonts and goal jont (xyz, meters): Jont 29: Center of mass of robot (xyz, meters): Dsplacement of statonary jonts (meters): e-8 Dstance from goal poston (meters): 3.257e-7 14

17 Appendx A3 Robot Reaches for (1,1,) wth Rght Hand Local mnmum possble. Constrants satsfed. fmncon stopped because the sze of the current step s less than the default value of the step sze tolerance and constrants are satsfed to wthn the default value of the constrant tolerance. <stoppng crtera detals> Jont angles, lower lmts, upper lmts (radans): Fnal postons of statonary jonts and goal jont (xyz, meters): Jont 29: Center of mass of robot (xyz, meters): Dsplacement of statonary jonts (meters): e-8 Dstance from goal poston (meters):

18 Appendx A4 Robot Reaches for (-.5,-.5,1) wth Rght Hand Local mnmum possble. Constrants satsfed. fmncon stopped because the sze of the current step s less than the default value of the step sze tolerance and constrants are satsfed to wthn the default value of the constrant tolerance. <stoppng crtera detals> Jont angles, lower lmts, upper lmts (radans): Fnal postons of statonary jonts and goal jont (xyz, meters): Jont 29: Center of mass of robot (xyz, meters): Dsplacement of statonary jonts (meters): e-8 Dstance from goal poston (meters): 3.126e-9 16

19 Appendx A5 Robot Reaches for (,,1.5) wth Rght Hand Local mnmum possble. Constrants satsfed. fmncon stopped because the sze of the current step s less than the default value of the step sze tolerance and constrants are satsfed to wthn the default value of the constrant tolerance. <stoppng crtera detals> Jont angles, lower lmts, upper lmts (radans): Fnal postons of statonary jonts and goal jont (xyz, meters): Jont 29: Center of mass of robot (xyz, meters): Dsplacement of statonary jonts (meters): 6.177e-9 Dstance from goal poston (meters): e-8 17

20 Appendx B1 Robot Reaches for (,,) wth Rght Hand Solver stopped prematurely. fmncon stopped because t exceeded the teraton lmt, optons.maxiter = 1 (the default value). Jont angles, lower lmts, upper lmts (radans): Fnal postons of statonary jonts and goal jont (xyz, meters): Jont 29: 1.e-5 * Center of mass of robot (xyz, meters): Dsplacement of statonary jonts (meters): 2.645e-4 Dstance from goal poston (meters): 1.467e-6 18

21 Appendx B2 Robot Reaches for (1,,.5) wth Rght Hand Local mnmum possble. Constrants satsfed. fmncon stopped because the sze of the current step s less than the default value of the step sze tolerance and constrants are satsfed to wthn the default value of the constrant tolerance. <stoppng crtera detals> Jont angles, lower lmts, upper lmts (radans): Fnal postons of statonary jonts and goal jont (xyz, meters): Jont 29: Center of mass of robot (xyz, meters): Dsplacement of statonary jonts (meters): e-4 Dstance from goal poston (meters): e-6 19

22 Appendx B3 Robot Reaches for (1,1,) wth Rght Hand Local mnmum possble. Constrants satsfed. fmncon stopped because the sze of the current step s less than the default value of the step sze tolerance and constrants are satsfed to wthn the default value of the constrant tolerance. <stoppng crtera detals> Jont angles, lower lmts, upper lmts (radans): Fnal postons of statonary jonts and goal jont (xyz, meters): Jont 29: Center of mass of robot (xyz, meters): Dsplacement of statonary jonts (meters): e-4 Dstance from goal poston (meters):.579 2

23 Appendx B4 Robot Reaches for (-.5,-.5,1) wth Rght Hand Local mnmum possble. Constrants satsfed. fmncon stopped because the sze of the current step s less than the default value of the step sze tolerance and constrants are satsfed to wthn the default value of the constrant tolerance. <stoppng crtera detals> Jont angles, lower lmts, upper lmts (radans): Fnal postons of statonary jonts and goal jont (xyz, meters): Jont 29: Center of mass of robot (xyz, meters): Dsplacement of statonary jonts (meters): 3.84e-5 Dstance from goal poston (meters): e-1 21

24 Appendx B5 Robot Reaches for (,,1.5) wth Rght Hand Local mnmum possble. Constrants satsfed. fmncon stopped because the sze of the current step s less than the default value of the step sze tolerance and constrants are satsfed to wthn the default value of the constrant tolerance. <stoppng crtera detals> Jont angles, lower lmts, upper lmts (radans): Fnal postons of statonary jonts and goal jont (xyz, meters): Jont 29: Center of mass of robot (xyz, meters): Dsplacement of statonary jonts (meters): 2.117e-5 Dstance from goal poston (meters): e-11 22

To: Professor Avitabile Date: February 4, 2003 From: Mechanical Student Subject: Experiment #1 Numerical Methods Using Excel

To: Professor Avitabile Date: February 4, 2003 From: Mechanical Student Subject: Experiment #1 Numerical Methods Using Excel To: Professor Avtable Date: February 4, 3 From: Mechancal Student Subject:.3 Experment # Numercal Methods Usng Excel Introducton Mcrosoft Excel s a spreadsheet program that can be used for data analyss,

More information

NETWORK 2001 Transportation Planning Under Multiple Objectives

NETWORK 2001 Transportation Planning Under Multiple Objectives NETWORK 200 Transportaton Plannng Under Multple Objectves Woodam Chung Graduate Research Assstant, Department of Forest Engneerng, Oregon State Unversty, Corvalls, OR9733, Tel: (54) 737-4952, Fax: (54)

More information

Calculation of the received voltage due to the radiation from multiple co-frequency sources

Calculation of the received voltage due to the radiation from multiple co-frequency sources Rec. ITU-R SM.1271-0 1 RECOMMENDATION ITU-R SM.1271-0 * EFFICIENT SPECTRUM UTILIZATION USING PROBABILISTIC METHODS Rec. ITU-R SM.1271 (1997) The ITU Radocommuncaton Assembly, consderng a) that communcatons

More information

A Comparison of Two Equivalent Real Formulations for Complex-Valued Linear Systems Part 2: Results

A Comparison of Two Equivalent Real Formulations for Complex-Valued Linear Systems Part 2: Results AMERICAN JOURNAL OF UNDERGRADUATE RESEARCH VOL. 1 NO. () A Comparson of Two Equvalent Real Formulatons for Complex-Valued Lnear Systems Part : Results Abnta Munankarmy and Mchael A. Heroux Department of

More information

Networks. Backpropagation. Backpropagation. Introduction to. Backpropagation Network training. Backpropagation Learning Details 1.04.

Networks. Backpropagation. Backpropagation. Introduction to. Backpropagation Network training. Backpropagation Learning Details 1.04. Networs Introducton to - In 1986 a method for learnng n mult-layer wor,, was nvented by Rumelhart Paper Why are what and where processed by separate cortcal vsual systems? - The algorthm s a sensble approach

More information

Fall 2018 #11 Games and Nimbers. A. Game. 0.5 seconds, 64 megabytes

Fall 2018 #11 Games and Nimbers. A. Game. 0.5 seconds, 64 megabytes 5-95 Fall 08 # Games and Nmbers A. Game 0.5 seconds, 64 megabytes There s a legend n the IT Cty college. A student that faled to answer all questons on the game theory exam s gven one more chance by hs

More information

Network Reconfiguration in Distribution Systems Using a Modified TS Algorithm

Network Reconfiguration in Distribution Systems Using a Modified TS Algorithm Network Reconfguraton n Dstrbuton Systems Usng a Modfed TS Algorthm ZHANG DONG,FU ZHENGCAI,ZHANG LIUCHUN,SONG ZHENGQIANG School of Electroncs, Informaton and Electrcal Engneerng Shangha Jaotong Unversty

More information

Priority based Dynamic Multiple Robot Path Planning

Priority based Dynamic Multiple Robot Path Planning 2nd Internatonal Conference on Autonomous obots and Agents Prorty based Dynamc Multple obot Path Plannng Abstract Taxong Zheng Department of Automaton Chongqng Unversty of Post and Telecommuncaton, Chna

More information

PRACTICAL, COMPUTATION EFFICIENT HIGH-ORDER NEURAL NETWORK FOR ROTATION AND SHIFT INVARIANT PATTERN RECOGNITION. Evgeny Artyomov and Orly Yadid-Pecht

PRACTICAL, COMPUTATION EFFICIENT HIGH-ORDER NEURAL NETWORK FOR ROTATION AND SHIFT INVARIANT PATTERN RECOGNITION. Evgeny Artyomov and Orly Yadid-Pecht 68 Internatonal Journal "Informaton Theores & Applcatons" Vol.11 PRACTICAL, COMPUTATION EFFICIENT HIGH-ORDER NEURAL NETWORK FOR ROTATION AND SHIFT INVARIANT PATTERN RECOGNITION Evgeny Artyomov and Orly

More information

A MODIFIED DIFFERENTIAL EVOLUTION ALGORITHM IN SPARSE LINEAR ANTENNA ARRAY SYNTHESIS

A MODIFIED DIFFERENTIAL EVOLUTION ALGORITHM IN SPARSE LINEAR ANTENNA ARRAY SYNTHESIS A MODIFIED DIFFERENTIAL EVOLUTION ALORITHM IN SPARSE LINEAR ANTENNA ARRAY SYNTHESIS Kaml Dmller Department of Electrcal-Electroncs Engneerng rne Amercan Unversty North Cyprus, Mersn TURKEY kdmller@gau.edu.tr

More information

Joint Adaptive Modulation and Power Allocation in Cognitive Radio Networks

Joint Adaptive Modulation and Power Allocation in Cognitive Radio Networks I. J. Communcatons, etwork and System Scences, 8, 3, 7-83 Publshed Onlne August 8 n ScRes (http://www.scrp.org/journal/jcns/). Jont Adaptve Modulaton and Power Allocaton n Cogntve Rado etworks Dong LI,

More information

ANNUAL OF NAVIGATION 11/2006

ANNUAL OF NAVIGATION 11/2006 ANNUAL OF NAVIGATION 11/2006 TOMASZ PRACZYK Naval Unversty of Gdyna A FEEDFORWARD LINEAR NEURAL NETWORK WITH HEBBA SELFORGANIZATION IN RADAR IMAGE COMPRESSION ABSTRACT The artcle presents the applcaton

More information

PRO- CRIMPER* III Hand Crimping

PRO- CRIMPER* III Hand Crimping PRO- CRIMPER* III Hand Crmpng Instructon Sheet Tool 58448-2 408-9357 Wth De 58448-3 10 Mar 11 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually powered hand

More information

Optimal Placement of PMU and RTU by Hybrid Genetic Algorithm and Simulated Annealing for Multiarea Power System State Estimation

Optimal Placement of PMU and RTU by Hybrid Genetic Algorithm and Simulated Annealing for Multiarea Power System State Estimation T. Kerdchuen and W. Ongsakul / GMSARN Internatonal Journal (09) - Optmal Placement of and by Hybrd Genetc Algorthm and Smulated Annealng for Multarea Power System State Estmaton Thawatch Kerdchuen and

More information

PRO- CRIMPER* III Hand

PRO- CRIMPER* III Hand PRO- CRIMPER* III Hand Instructon Sheet Crmpng Tool Assembly 58529-1 408-9999 wth De Assembly 58529-2 11 AUG 14 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

PRO- CRIMPER* III Hand

PRO- CRIMPER* III Hand PRO- CRIMPER* III Hand Instructon Sheet Crmpng Tool Assembly 90759-1 408-9962 wth De Assembly 90759-2 03 MAY 11 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

PRO-CRIMPER* III Hand Tool Assembly with Die Assembly

PRO-CRIMPER* III Hand Tool Assembly with Die Assembly PRO-CRIMPER* III Hand Tool Assembly 2063778-1 wth De Assembly 2063778-2 Instructon Sheet 408-10290 02 FEB 12 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

PRO-CRIMPER* III Hand Crimping Tool Assembly with Die AssemblY

PRO-CRIMPER* III Hand Crimping Tool Assembly with Die AssemblY PRO-CRIMPER* III Hand Crmpng Tool Assembly 90758-1 wth De AssemblY 90758-2 Instructon Sheet 408-9938 01 NOV 11 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

EE 508 Lecture 6. Degrees of Freedom The Approximation Problem

EE 508 Lecture 6. Degrees of Freedom The Approximation Problem EE 508 Lecture 6 Degrees of Freedom The Approxmaton Problem Revew from Last Tme Desgn Strategy Theorem: A crcut wth transfer functon T(s) can be obtaned from a crcut wth normalzed transfer functon T n

More information

PRO- CRIMPER III Hand Crimping Tool Assembly DESCRIPTION (Figures 1 and 2)

PRO- CRIMPER III Hand Crimping Tool Assembly DESCRIPTION (Figures 1 and 2) PRO- CRIMPER* III Hand Crmpng Instructon Sheet Tool Assembly 58495-1 408-9819 Wth De Assembly 58495-2 22 JUL 09 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

onlinecomponents.com

onlinecomponents.com PRO- CRIMPER* III Hand Crmpng Instructon Sheet Tool Assembly 58535-1 wth 408-4021 De Assembly 58535-2 29 JUL 09 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

PRO- CRIMPER* III Hand Crimping

PRO- CRIMPER* III Hand Crimping PRO- CRIMPER* III Hand Crmpng Instructon Sheet Tool Assembly 91338-1 408-8377 wth De Assembly 91338-2 22 JUL 09 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

PRO- CRIMPER* III Hand Crimping

PRO- CRIMPER* III Hand Crimping PRO- CRIMPER* III Hand Crmpng Instructon Sheet Tool Assembly 58641-1 wth 408-4379 De Assembly 58641-2 18 JUN 09 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

DIRECT collocation methods for solving a continuous

DIRECT collocation methods for solving a continuous IEEE TRANSACTIONS ON CONTROL SYSTEMS TECHNOLOGY, VOL. 6, NO. 4, JULY 018 1475 Adaptve Mesh Refnement Method for Optmal Control Usng Decay Rates of Legendre Polynomal Coeffcents Abstract An adaptve mesh

More information

Optimal Allocation of Static VAr Compensator for Active Power Loss Reduction by Different Decision Variables

Optimal Allocation of Static VAr Compensator for Active Power Loss Reduction by Different Decision Variables S. Aucharyamet and S. Srsumrannukul / GMSARN Internatonal Journal 4 (2010) 57-66 Optmal Allocaton of Statc VAr Compensator for Actve Power oss Reducton by Dfferent Decson Varables S. Aucharyamet and S.

More information

A Simple Satellite Exclusion Algorithm for Advanced RAIM

A Simple Satellite Exclusion Algorithm for Advanced RAIM A Smple Satellte Excluson Algorthm for Advanced RAIM Juan Blanch, Todd Walter, Per Enge Stanford Unversty ABSTRACT Advanced Recever Autonomous Integrty Montorng s a concept that extends RAIM to mult-constellaton

More information

PRO- CRIMPER III Hand Crimping Tool Assembly INSTALLATION AND REMOVAL OF DIE SET AND LOCATOR ASSEMBLY (Figure 2)

PRO- CRIMPER III Hand Crimping Tool Assembly INSTALLATION AND REMOVAL OF DIE SET AND LOCATOR ASSEMBLY (Figure 2) PRO- CRIMPER* III Hand Crmpng Instructon Sheet Tool Assembly 90547-1 wth 408-9884 De Assembly 90547-2 02 NOV 09 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

Optimal Sizing and Allocation of Residential Photovoltaic Panels in a Distribution Network for Ancillary Services Application

Optimal Sizing and Allocation of Residential Photovoltaic Panels in a Distribution Network for Ancillary Services Application Optmal Szng and Allocaton of Resdental Photovoltac Panels n a Dstrbuton Networ for Ancllary Servces Applcaton Reza Ahmad Kordhel, Student Member, IEEE, S. Al Pourmousav, Student Member, IEEE, Jayarshnan

More information

Industrial Robots used in Forges Applications

Industrial Robots used in Forges Applications Industral Robots used n Forges Applcatons Lvu Cuptu, Ivanescu Andre Nck 2 and Sorn Brotac 3 Department of Mechancal Engneerng and Mechatroncs, Poltehnca Unversty of Bucharest, Romana E-mal: lvu.cuptu@omtr.pub.ro

More information

PRO- CRIMPER* III Hand

PRO- CRIMPER* III Hand PRO- CRIMPER* III Hand Instructon Sheet Crmpng Tool Assembly 90684-1 408-9934 wth De Assembly 90684-2 09 OCT 09 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

Investigation of Hybrid Particle Swarm Optimization Methods for Solving Transient-Stability Constrained Optimal Power Flow Problems

Investigation of Hybrid Particle Swarm Optimization Methods for Solving Transient-Stability Constrained Optimal Power Flow Problems Investgaton of Hybrd Partcle Swarm Optmzaton Methods for Solvng Transent-Stablty Constraned Optmal Power Flow Problems K. Y. Chan, G. T. Y. Pong and K. W. Chan Abstract In ths paper, hybrd partcle swarm

More information

The Spectrum Sharing in Cognitive Radio Networks Based on Competitive Price Game

The Spectrum Sharing in Cognitive Radio Networks Based on Competitive Price Game 8 Y. B. LI, R. YAG, Y. LI, F. YE, THE SPECTRUM SHARIG I COGITIVE RADIO ETWORKS BASED O COMPETITIVE The Spectrum Sharng n Cogntve Rado etworks Based on Compettve Prce Game Y-bng LI, Ru YAG., Yun LI, Fang

More information

PRO-CRIMPER* III Hand. with Die Assembly OCT 11 Rev C. Pivot Pin. Die Assembly Moving Jaw CONTACT FAMILY SIZE (AWG)

PRO-CRIMPER* III Hand. with Die Assembly OCT 11 Rev C. Pivot Pin. Die Assembly Moving Jaw CONTACT FAMILY SIZE (AWG) PRO-CRIMPER* III Hand Instructon Sheet Crmpng Tool Assembly 58514-1 408-9973 wth De Assembly 58514-2 12 OCT 11 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

Define Y = # of mobiles from M total mobiles that have an adequate link. Measure of average portion of mobiles allocated a link of adequate quality.

Define Y = # of mobiles from M total mobiles that have an adequate link. Measure of average portion of mobiles allocated a link of adequate quality. Wreless Communcatons Technologes 6::559 (Advanced Topcs n Communcatons) Lecture 5 (Aprl th ) and Lecture 6 (May st ) Instructor: Professor Narayan Mandayam Summarzed by: Steve Leung (leungs@ece.rutgers.edu)

More information

Allocation of capacitor banks in distribution systems using multi-objective function

Allocation of capacitor banks in distribution systems using multi-objective function Vol. 8(27), pp. 1282-1288, 18 July, 2013 DOI 10.5897/SRE2013.5554 ISSN 1992-2248 2013 Academc Journals http://www.academcjournals.org/sre Scentfc Research and Essays Full Length Research aper Allocaton

More information

Queen Bee genetic optimization of an heuristic based fuzzy control scheme for a mobile robot 1

Queen Bee genetic optimization of an heuristic based fuzzy control scheme for a mobile robot 1 Queen Bee genetc optmzaton of an heurstc based fuzzy control scheme for a moble robot 1 Rodrgo A. Carrasco Schmdt Pontfca Unversdad Católca de Chle Abstract Ths work presents both a novel control scheme

More information

A study of turbo codes for multilevel modulations in Gaussian and mobile channels

A study of turbo codes for multilevel modulations in Gaussian and mobile channels A study of turbo codes for multlevel modulatons n Gaussan and moble channels Lamne Sylla and Paul Forter (sylla, forter)@gel.ulaval.ca Department of Electrcal and Computer Engneerng Laval Unversty, Ste-Foy,

More information

Application of Intelligent Voltage Control System to Korean Power Systems

Application of Intelligent Voltage Control System to Korean Power Systems Applcaton of Intellgent Voltage Control System to Korean Power Systems WonKun Yu a,1 and HeungJae Lee b, *,2 a Department of Power System, Seol Unversty, South Korea. b Department of Power System, Kwangwoon

More information

PRO-CRIMPER* III Hand Crimping Tool Assembly with Die Assembly

PRO-CRIMPER* III Hand Crimping Tool Assembly with Die Assembly PRO-CRIMPER* III Hand Crmpng Tool Assembly 90548-1 wth De Assembly 90548-2 Instructon Sheet 408-9885 02 NOV 12 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

Th P5 13 Elastic Envelope Inversion SUMMARY. J.R. Luo* (Xi'an Jiaotong University), R.S. Wu (UC Santa Cruz) & J.H. Gao (Xi'an Jiaotong University)

Th P5 13 Elastic Envelope Inversion SUMMARY. J.R. Luo* (Xi'an Jiaotong University), R.S. Wu (UC Santa Cruz) & J.H. Gao (Xi'an Jiaotong University) -4 June 5 IFEMA Madrd h P5 3 Elastc Envelope Inverson J.R. Luo* (X'an Jaotong Unversty), R.S. Wu (UC Santa Cruz) & J.H. Gao (X'an Jaotong Unversty) SUMMARY We developed the elastc envelope nverson method.

More information

aperture David Makovoz, 30/01/2006 Version 1.0 Table of Contents

aperture David Makovoz, 30/01/2006 Version 1.0 Table of Contents aperture 1 aperture Davd Makovoz, 30/01/2006 Verson 1.0 Table of Contents aperture... 1 1 Overvew... 2 1.1 Input Image Requrements... 2 2 aperture... 2 2.1 Input... 2 2.2 Processng... 4 2.3 Output Table...

More information

INITIALIZATION OF ROBOTIC FORMATIONS USING DISCRETE PARTICLE SWARM OPTIMIZATION

INITIALIZATION OF ROBOTIC FORMATIONS USING DISCRETE PARTICLE SWARM OPTIMIZATION 24 Internatonal Symposum on on Automaton & Robotcs n n Constructon (ISARC 2007) Constructon Automaton Group, I.I.T. Madras INITIALIZATION OF ROBOTIC FORMATIONS USING DISCRETE PARTICLE SWARM OPTIMIZATION

More information

Figure 1. DC-DC Boost Converter

Figure 1. DC-DC Boost Converter EE36L, Power Electroncs, DC-DC Boost Converter Verson Feb. 8, 9 Overvew Boost converters make t possble to effcently convert a DC voltage from a lower level to a hgher level. Theory of Operaton Relaton

More information

A NSGA-II algorithm to solve a bi-objective optimization of the redundancy allocation problem for series-parallel systems

A NSGA-II algorithm to solve a bi-objective optimization of the redundancy allocation problem for series-parallel systems 0 nd Internatonal Conference on Industral Technology and Management (ICITM 0) IPCSIT vol. 49 (0) (0) IACSIT Press, Sngapore DOI: 0.776/IPCSIT.0.V49.8 A NSGA-II algorthm to solve a b-obectve optmzaton of

More information

High Speed, Low Power And Area Efficient Carry-Select Adder

High Speed, Low Power And Area Efficient Carry-Select Adder Internatonal Journal of Scence, Engneerng and Technology Research (IJSETR), Volume 5, Issue 3, March 2016 Hgh Speed, Low Power And Area Effcent Carry-Select Adder Nelant Harsh M.tech.VLSI Desgn Electroncs

More information

problems palette of David Rock and Mary K. Porter 6. A local musician comes to your school to give a performance

problems palette of David Rock and Mary K. Porter 6. A local musician comes to your school to give a performance palette of problems Davd Rock and Mary K. Porter 1. If n represents an nteger, whch of the followng expressons yelds the greatest value? n,, n, n, n n. A 60-watt lghtbulb s used for 95 hours before t burns

More information

Autonomous Dynamic Spectrum Management for Coexistence of Multiple Cognitive Tactical Radio Networks

Autonomous Dynamic Spectrum Management for Coexistence of Multiple Cognitive Tactical Radio Networks Autonomous Dynamc Spectrum Management for Coexstence of Multple Cogntve Tactcal Rado Networks Vncent Le Nr, Bart Scheers Abstract In ths paper, dynamc spectrum management s studed for multple cogntve tactcal

More information

Ergodic Capacity of Block-Fading Gaussian Broadcast and Multi-access Channels for Single-User-Selection and Constant-Power

Ergodic Capacity of Block-Fading Gaussian Broadcast and Multi-access Channels for Single-User-Selection and Constant-Power 7th European Sgnal Processng Conference EUSIPCO 29 Glasgow, Scotland, August 24-28, 29 Ergodc Capacty of Block-Fadng Gaussan Broadcast and Mult-access Channels for Sngle-User-Selecton and Constant-Power

More information

Piecewise Linear Approximation of Generators Cost Functions Using Max-Affine Functions

Piecewise Linear Approximation of Generators Cost Functions Using Max-Affine Functions Pecewse Lnear Approxmaton of Generators Cost Functons Usng Max-Affne Functons Hamed Ahmad José R. Martí School of Electrcal and Computer Engneerng Unversty of Brtsh Columba Vancouver, BC, Canada Emal:

More information

Walsh Function Based Synthesis Method of PWM Pattern for Full-Bridge Inverter

Walsh Function Based Synthesis Method of PWM Pattern for Full-Bridge Inverter Walsh Functon Based Synthess Method of PWM Pattern for Full-Brdge Inverter Sej Kondo and Krt Choesa Nagaoka Unversty of Technology 63-, Kamtomoka-cho, Nagaoka 9-, JAPAN Fax: +8-58-7-95, Phone: +8-58-7-957

More information

Target Response Adaptation for Correlation Filter Tracking

Target Response Adaptation for Correlation Filter Tracking Target Response Adaptaton for Correlaton Flter Tracng Adel Bb, Matthas Mueller, and Bernard Ghanem Image and Vdeo Understandng Laboratory IVUL, Kng Abdullah Unversty of Scence and Technology KAUST, Saud

More information

Figure 1. DC-DC Boost Converter

Figure 1. DC-DC Boost Converter EE46, Power Electroncs, DC-DC Boost Converter Verson Oct. 3, 11 Overvew Boost converters make t possble to effcently convert a DC voltage from a lower level to a hgher level. Theory of Operaton Relaton

More information

A GBAS Testbed to Support New Monitoring Algorithms Development for CAT III Precision Approach

A GBAS Testbed to Support New Monitoring Algorithms Development for CAT III Precision Approach A GBAS Testbed to Support New Montorng Algorthms Development for CAT III Precson Approach B. Belabbas, T. Dautermann, M. Felux, M. Rppl, S. Schlüter, V. Wlken, A. Hornbostel, M. Meurer German Aerospace

More information

RC Filters TEP Related Topics Principle Equipment

RC Filters TEP Related Topics Principle Equipment RC Flters TEP Related Topcs Hgh-pass, low-pass, Wen-Robnson brdge, parallel-t flters, dfferentatng network, ntegratng network, step response, square wave, transfer functon. Prncple Resstor-Capactor (RC)

More information

Comparative Analysis of Reuse 1 and 3 in Cellular Network Based On SIR Distribution and Rate

Comparative Analysis of Reuse 1 and 3 in Cellular Network Based On SIR Distribution and Rate Comparatve Analyss of Reuse and 3 n ular Network Based On IR Dstrbuton and Rate Chandra Thapa M.Tech. II, DEC V College of Engneerng & Technology R.V.. Nagar, Chttoor-5727, A.P. Inda Emal: chandra2thapa@gmal.com

More information

Cooperative perimeter surveillance with a team of mobile robots under communication constraints

Cooperative perimeter surveillance with a team of mobile robots under communication constraints 213 IEEE/RSJ Internatonal Conference on Intellgent Robots and Systems (IROS) November 3-7, 213. Toyo, Japan Cooperatve permeter survellance wth a team of moble robots under communcaton constrants J.J.

More information

A Preliminary Study on Targets Association Algorithm of Radar and AIS Using BP Neural Network

A Preliminary Study on Targets Association Algorithm of Radar and AIS Using BP Neural Network Avalable onlne at www.scencedrect.com Proceda Engneerng 5 (2 44 445 A Prelmnary Study on Targets Assocaton Algorthm of Radar and AIS Usng BP Neural Networ Hu Xaoru a, Ln Changchuan a a Navgaton Insttute

More information

GP-based Design and Optimization of a Floating Voltage Source for Low-Power and Highly Tunable OTA Applications

GP-based Design and Optimization of a Floating Voltage Source for Low-Power and Highly Tunable OTA Applications Manuscrpt receved Jun. 11, 2007; revsed Sep. 15, 2007 GP-based Desgn and Optmzaton of a Floatng Voltage Source for Low-Power and Hghly Tunable OTA Applcatons MARYAM SHOJAEI BAGHINI *, RAJENDRA KANPHADE

More information

Discussion on How to Express a Regional GPS Solution in the ITRF

Discussion on How to Express a Regional GPS Solution in the ITRF 162 Dscusson on How to Express a Regonal GPS Soluton n the ITRF Z. ALTAMIMI 1 Abstract The usefulness of the densfcaton of the Internatonal Terrestral Reference Frame (ITRF) s to facltate ts access as

More information

Coverage Maximization in Mobile Wireless Sensor Networks Utilizing Immune Node Deployment Algorithm

Coverage Maximization in Mobile Wireless Sensor Networks Utilizing Immune Node Deployment Algorithm CCECE 2014 1569888203 Coverage Maxmzaton n Moble Wreless Sensor Networs Utlzng Immune Node Deployment Algorthm Mohammed Abo-Zahhad, Sabah M. Ahmed and Nabl Sabor Electrcal and Electroncs Engneerng Department

More information

Coordinating the Motions of Multiple Robots with Specified Trajectories

Coordinating the Motions of Multiple Robots with Specified Trajectories Coordnatng the Motons of Multple Robots wth Specfed Trajectores Srnvas Akella Seth Hutchnson Department of Computer Scence Beckman Insttute Rensselaer Polytechnc Insttute Unversty of Illnos, Urbana-Champagn

More information

The Synthesis of Dependable Communication Networks for Automotive Systems

The Synthesis of Dependable Communication Networks for Automotive Systems 06AE-258 The Synthess of Dependable Communcaton Networks for Automotve Systems Copyrght 2005 SAE Internatonal Nagarajan Kandasamy Drexel Unversty, Phladelpha, USA Fad Aloul Amercan Unversty of Sharjah,

More information

CS345a: Data Mining Jure Leskovec and Anand Rajaraman Stanford University

CS345a: Data Mining Jure Leskovec and Anand Rajaraman Stanford University CS345a: Data Mnng Jure Leskovec and Anand Rajaraman Stanford Unversty HW3 s out Poster sesson s on last day of classes: Thu March 11 at 4:15 Reports are due March 14 Fnal s March 18 at 12:15 Open book,

More information

ADAPT: Design assistance for iterative analog synthesis

ADAPT: Design assistance for iterative analog synthesis ADAPT: Desgn assstance for teratve analog synthess Cheh Ln, Tno Hejmen, Jan ter Maten, Marq Kole Phlps Research Laboratores, Endhoven, The Netherlands; Emal: cheh.ln@phlps.com Abstract Ths paper presents

More information

Mooring Cost Sensitivity Study Based on Cost-Optimum Mooring Design

Mooring Cost Sensitivity Study Based on Cost-Optimum Mooring Design Proceedngs of Conference 8 Korean Socety of Ocean Engneers May 9-3, Cheju, Korea Moorng Cost Senstvty Study Based on Cost-Optmum Moorng Desgn SAM SANGSOO RYU, CASPAR HEYL AND ARUN DUGGAL Research & Development,

More information

Location of Rescue Helicopters in South Tyrol

Location of Rescue Helicopters in South Tyrol Locaton of Rescue Helcopters n South Tyrol Monca Talwar Department of Engneerng Scence Unversty of Auckland New Zealand talwar_monca@yahoo.co.nz Abstract South Tyrol s a popular destnaton n Northern Italy

More information

Selective Harmonic Mitigation Technique for Cascaded H-Bridge Converters with Equal DC Link Voltages

Selective Harmonic Mitigation Technique for Cascaded H-Bridge Converters with Equal DC Link Voltages Selectve Harmonc Mtgaton Technque for Cascaded H-Brdge Converters wth Equal DC Lnk Voltages B. Subba Reddy, G. Surendra Abstract Multlevel converters are very attractve for applcatons n medum-voltage hgh

More information

Particle Filters. Ioannis Rekleitis

Particle Filters. Ioannis Rekleitis Partcle Flters Ioanns Reklets Bayesan Flter Estmate state x from data Z What s the probablty of the robot beng at x? x could be robot locaton, map nformaton, locatons of targets, etc Z could be sensor

More information

White Paper. OptiRamp Model-Based Multivariable Predictive Control. Advanced Methodology for Intelligent Control Actions

White Paper. OptiRamp Model-Based Multivariable Predictive Control. Advanced Methodology for Intelligent Control Actions Whte Paper OptRamp Model-Based Multvarable Predctve Control Advanced Methodology for Intellgent Control Actons Vadm Shapro Dmtry Khots, Ph.D. Statstcs & Control, Inc., (S&C) propretary nformaton. All rghts

More information

Kinematics of a dedicated 6DOF Robot for Tele-echography

Kinematics of a dedicated 6DOF Robot for Tele-echography Knematcs of a dedcated DOF Robot for ele-echography L Al Basst G Posson P Veyres Laboratory of Vson and Robotcs Unversty of Orleans 1800 Bourges France lbasst@bourgesunv-orleansfr Abstract hs paper presents

More information

Profile Optimization of Satellite Antenna for Angular Jerk Minimization

Profile Optimization of Satellite Antenna for Angular Jerk Minimization Profle Optmzaton of Satellte Antenna for Angular Jerk Mnmzaton Jangwon Lee, Hyosung Ahn, Kwanghee Ko 3 and Semyung Wang 4 Gwangu Insttute of Scence and Technology, Gwangu, Korea, 500-7 and Daekwan Km 5,

More information

Cloud of Things for Sensing-as-a-Service: Architecture, Algorithms, and Use Case

Cloud of Things for Sensing-as-a-Service: Architecture, Algorithms, and Use Case Cloud of Thngs for Sensng-as-a-Servce: Archtecture, Algorthms, and Use Case Sherf Abdelwahab, Bechr Hamdaou, Mohsen Guzan, and Taeb Znat Oregon State Unversty, abdelwas,hamdaou@eecs.orst.edu Unversty of

More information

MODEL ORDER REDUCTION AND CONTROLLER DESIGN OF DISCRETE SYSTEM EMPLOYING REAL CODED GENETIC ALGORITHM J. S. Yadav, N. P. Patidar, J.

MODEL ORDER REDUCTION AND CONTROLLER DESIGN OF DISCRETE SYSTEM EMPLOYING REAL CODED GENETIC ALGORITHM J. S. Yadav, N. P. Patidar, J. ABSTRACT Research Artcle MODEL ORDER REDUCTION AND CONTROLLER DESIGN OF DISCRETE SYSTEM EMPLOYING REAL CODED GENETIC ALGORITHM J. S. Yadav, N. P. Patdar, J. Sngha Address for Correspondence Maulana Azad

More information

Lifetime-Oriented Optimal Relay Deployment for Three-tier Wireless Sensor Networks

Lifetime-Oriented Optimal Relay Deployment for Three-tier Wireless Sensor Networks Sensors & Transducers by IFSA http://www.sensorsportal.com Lfetme-Orented Optmal Relay Deployment for Three-ter Wreless Sensor Networs Bn Zeng, Lu Yao and Ru Wang Department of Management, Naval Unversty

More information

current activity shows on the top right corner in green. The steps appear in yellow

current activity shows on the top right corner in green. The steps appear in yellow Browzwear Tutorals Tutoral ntroducton Ths tutoral leads you through the basc garment creaton process usng an llustrated step by step approach. Each slde shows the actual applcaton at the stage of the acton

More information

Research of Dispatching Method in Elevator Group Control System Based on Fuzzy Neural Network. Yufeng Dai a, Yun Du b

Research of Dispatching Method in Elevator Group Control System Based on Fuzzy Neural Network. Yufeng Dai a, Yun Du b 2nd Internatonal Conference on Computer Engneerng, Informaton Scence & Applcaton Technology (ICCIA 207) Research of Dspatchng Method n Elevator Group Control System Based on Fuzzy Neural Network Yufeng

More information

Instruction Sheet AMPMODU* MTE CONNECTORS Mar 11 Rev A

Instruction Sheet AMPMODU* MTE CONNECTORS Mar 11 Rev A Instructon Sheet AMPMODU* MTE CONNECTORS 408-6919 10 Mar 11 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually powered hand tools. Hand tools are ntended for

More information

CHAPTER 29 AN EXAMPLE OF THE MONTECARLO SIMULATIONS: THE LANGEVIN DYNAMICS

CHAPTER 29 AN EXAMPLE OF THE MONTECARLO SIMULATIONS: THE LANGEVIN DYNAMICS CHAPTER 9 AN EXAMPLE OF THE MONTECARLO SIMULATIONS: THE LANGEVIN DYNAMICS Objectves After completng the readng of ths chapter, you wll be able to: Construct a polymer chan. Devse a smple MC smulaton program

More information

Voronoi coverage of non-convex environments with a group of networked robots

Voronoi coverage of non-convex environments with a group of networked robots 2010 IEEE Internatonal Conference on Robotcs and Automaton Anchorage Conventon Dstrct May 3-8, 2010, Anchorage, Alaska, USA Vorono coverage of non-conve envronments wth a group of networked robots Andreas

More information

ESTIMATION OF DIVERGENCES IN PRECAST CONSTRUCTIONS USING GEODETIC CONTROL NETWORKS

ESTIMATION OF DIVERGENCES IN PRECAST CONSTRUCTIONS USING GEODETIC CONTROL NETWORKS Proceedngs, 11 th FIG Symposum on Deformaton Measurements, Santorn, Greece, 2003. ESTIMATION OF DIVERGENCES IN PRECAST CONSTRUCTIONS USING GEODETIC CONTROL NETWORKS George D. Georgopoulos & Elsavet C.

More information

Decision aid methodologies in transportation

Decision aid methodologies in transportation Decson ad methodologes n transportaton Lecture 7: More Applcatons Prem Kumar prem.vswanathan@epfl.ch Transport and Moblty Laboratory Summary We learnt about the dfferent schedulng models We also learnt

More information

Chapter 2 Two-Degree-of-Freedom PID Controllers Structures

Chapter 2 Two-Degree-of-Freedom PID Controllers Structures Chapter 2 Two-Degree-of-Freedom PID Controllers Structures As n most of the exstng ndustral process control applcatons, the desred value of the controlled varable, or set-pont, normally remans constant

More information

Multiband Jamming Strategies with Minimum Rate Constraints

Multiband Jamming Strategies with Minimum Rate Constraints Multband Jammng Strateges wth Mnmum Rate Constrants Karm Banawan, Sennur Ulukus, Peng Wang, and Bran Henz Department of Electrcal and Computer Engneerng, Unversty of Maryland, College Park, MD 7 US Army

More information

PRO-CRIMPER* III Hand Crimping Tool Assembly and Die Assemblies [ ]

PRO-CRIMPER* III Hand Crimping Tool Assembly and Die Assemblies [ ] PRO-CRIMPER* III Hand Crmpng Tool Assembly 58546-1 and De Assembles 58545-[ ] Instructon Sheet 408-8678 13 MAR 14 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

HUAWEI TECHNOLOGIES CO., LTD. Huawei Proprietary Page 1

HUAWEI TECHNOLOGIES CO., LTD. Huawei Proprietary Page 1 Project Ttle Date Submtted IEEE 802.16 Broadband Wreless Access Workng Group Double-Stage DL MU-MIMO Scheme 2008-05-05 Source(s) Yang Tang, Young Hoon Kwon, Yajun Kou, Shahab Sanaye,

More information

antenna antenna (4.139)

antenna antenna (4.139) .6.6 The Lmts of Usable Input Levels for LNAs The sgnal voltage level delvered to the nput of an LNA from the antenna may vary n a very wde nterval, from very weak sgnals comparable to the nose level,

More information

Uncertainty in measurements of power and energy on power networks

Uncertainty in measurements of power and energy on power networks Uncertanty n measurements of power and energy on power networks E. Manov, N. Kolev Department of Measurement and Instrumentaton, Techncal Unversty Sofa, bul. Klment Ohrdsk No8, bl., 000 Sofa, Bulgara Tel./fax:

More information

A PARTICLE SWARM OPTIMIZATION FOR REACTIVE POWER AND VOLTAGE CONTROL CONSIDERING VOLTAGE SECURITY ASSESSMENT

A PARTICLE SWARM OPTIMIZATION FOR REACTIVE POWER AND VOLTAGE CONTROL CONSIDERING VOLTAGE SECURITY ASSESSMENT A PARTICLE SWARM OPTIMIZATION FOR REACTIVE POWER AND VOLTAGE CONTROL CONSIDERING VOLTAGE SECURITY ASSESSMENT Hrotaka Yoshda Kench Kawata IEEE Trans. on Power Systems, Vol.15, No.4, pp.1232-1239, November

More information

FEATURE SELECTION FOR SMALL-SIGNAL STABILITY ASSESSMENT

FEATURE SELECTION FOR SMALL-SIGNAL STABILITY ASSESSMENT FEAURE SELECION FOR SMALL-SIGNAL SABILIY ASSESSMEN S.P. eeuwsen Unversty of Dusburg teeuwsen@un-dusburg.de Abstract INRODUCION hs paper ntroduces dfferent feature selecton technques for neural network

More information

Inverse Halftoning Method Using Pattern Substitution Based Data Hiding Scheme

Inverse Halftoning Method Using Pattern Substitution Based Data Hiding Scheme Proceedngs of the World Congress on Engneerng 2011 Vol II, July 6-8, 2011, London, U.K. Inverse Halftonng Method Usng Pattern Substtuton Based Data Hdng Scheme Me-Y Wu, Ja-Hong Lee and Hong-Je Wu Abstract

More information

Adaptive Modulation for Multiple Antenna Channels

Adaptive Modulation for Multiple Antenna Channels Adaptve Modulaton for Multple Antenna Channels June Chul Roh and Bhaskar D. Rao Department of Electrcal and Computer Engneerng Unversty of Calforna, San Dego La Jolla, CA 993-7 E-mal: jroh@ece.ucsd.edu,

More information

PERFORMANCE COMPARISON OF THREE ALGORITHMS FOR TWO-CHANNEL SINEWAVE PARAMETER ESTIMATION: SEVEN PARAMETER SINE FIT, ELLIPSE FIT, SPECTRAL SINC FIT

PERFORMANCE COMPARISON OF THREE ALGORITHMS FOR TWO-CHANNEL SINEWAVE PARAMETER ESTIMATION: SEVEN PARAMETER SINE FIT, ELLIPSE FIT, SPECTRAL SINC FIT XIX IMEKO World Congress Fundamental and ppled Metrology September 6, 009, Lsbon, Portugal PERFORMNCE COMPRISON OF THREE LGORITHMS FOR TWO-CHNNEL SINEWVE PRMETER ESTIMTION: SEVEN PRMETER SINE FIT, ELLIPSE

More information

POLYTECHNIC UNIVERSITY Electrical Engineering Department. EE SOPHOMORE LABORATORY Experiment 1 Laboratory Energy Sources

POLYTECHNIC UNIVERSITY Electrical Engineering Department. EE SOPHOMORE LABORATORY Experiment 1 Laboratory Energy Sources POLYTECHNIC UNIERSITY Electrcal Engneerng Department EE SOPHOMORE LABORATORY Experment 1 Laboratory Energy Sources Modfed for Physcs 18, Brooklyn College I. Oerew of the Experment Ths experment has three

More information

sensors ISSN

sensors ISSN Sensors 009, 9, 8593-8609; do:10.3390/s91108593 Artcle OPEN ACCESS sensors ISSN 144-80 www.mdp.com/journal/sensors Dstrbuted Envronment Control Usng Wreless Sensor/Actuator Networks for Lghtng Applcatons

More information

Controlled Random Search Optimization For Linear Antenna Arrays

Controlled Random Search Optimization For Linear Antenna Arrays L. MERAD, F. T. BENDIMERAD, S. M. MERIAH, CONTROLLED RANDOM SEARCH OPTIMIZATION FOR LINEAR Controlled Random Search Optmzaton For Lnear Antenna Arrays Lotf MERAD, Feth Tar BENDIMERAD, Sd Mohammed MERIAH

More information

A MODIFIED DIRECTIONAL FREQUENCY REUSE PLAN BASED ON CHANNEL ALTERNATION AND ROTATION

A MODIFIED DIRECTIONAL FREQUENCY REUSE PLAN BASED ON CHANNEL ALTERNATION AND ROTATION A MODIFIED DIRECTIONAL FREQUENCY REUSE PLAN BASED ON CHANNEL ALTERNATION AND ROTATION Vncent A. Nguyen Peng-Jun Wan Ophr Freder Computer Scence Department Illnos Insttute of Technology Chcago, Illnos vnguyen@t.edu,

More information

Optimum Allocation of Distributed Generations Based on Evolutionary Programming for Loss Reduction and Voltage Profile Correction

Optimum Allocation of Distributed Generations Based on Evolutionary Programming for Loss Reduction and Voltage Profile Correction ISSN : 0976-8491(Onlne) ISSN : 2229-4333(rnt) Optmum Allocaton of Dstrbuted Generatons Based on Evolutonary rogrammng for Reducton and Voltage rofle Correcton 1 Mohammad Saleh Male, 2 Soodabeh Soleyman

More information

MTBF PREDICTION REPORT

MTBF PREDICTION REPORT MTBF PREDICTION REPORT PRODUCT NAME: BLE112-A-V2 Issued date: 01-23-2015 Rev:1.0 Copyrght@2015 Bluegga Technologes. All rghts reserved. 1 MTBF PREDICTION REPORT... 1 PRODUCT NAME: BLE112-A-V2... 1 1.0

More information

Decomposition Principles and Online Learning in Cross-Layer Optimization for Delay-Sensitive Applications

Decomposition Principles and Online Learning in Cross-Layer Optimization for Delay-Sensitive Applications Techncal Report Decomposton Prncples and Onlne Learnng n Cross-Layer Optmzaton for Delay-Senstve Applcatons Abstract In ths report, we propose a general cross-layer optmzaton framework n whch we explctly

More information

Customer witness testing guide

Customer witness testing guide Customer wtness testng gude Ths gude s amed at explanng why we need to wtness test equpment whch s beng connected to our network, what we actually do when we complete ths testng, and what you can do to

More information