Exercises for lectures 19 Polynomial methods

Size: px
Start display at page:

Download "Exercises for lectures 19 Polynomial methods"

Transcription

1 Exercie for lecture 19 Polynomial method Michael Šebek Automatic control

2 Diviion of polynomial with and without remainder Polynomial form a circle, but not a body. (Circle alo form integer, in comparion to body that form rational number, rational function, etc.). Generally, it i not poible to divide polynomial without remainder. Polynomial can be divided without remainder only with o called one, that are polynomial with 0 degree, i.e. nonzero real number. But ometime it i poible to divide without remainder: If a() divide c() without remainder, we denote it a () c () Then exit uch b(), that c( ) a( ) b( ) Then a() i divior of c(), and c() i a multiple of a() If a() divide c(), d(), then a() i a common divior of c(), d() The greatet common divior i the one with the highet degree Example For c( ) ( 1)( 1) a( ) 1 d( ) i a () c () d( ) c( )

3 Greatet common divior greatet (left) common divior = největší polečný dělitel For i g ( ) gcd a( ), b( ) a( ) p( ) b( ) q( ) g( ) a( ) v( ) b( ) w( ) 0 and the matrix i unimodular (= it determinant i non-zero contant) p( ) q( ) U() v( ) w( ) >> pformat rootr >> a=(+1)^*(-1)*(+) a = (+)(^++1)(-1) >> b=(+1)*(-1)*(-) b = (+1)(-1)(-) >> g=grd(a,b) g = (+1)(-1) >> [g,u]=grd(a,b) g = (+1)(-1) U = ( ) -0.94(-) 0.94(+)(+1) >> U*[a; b] an = (+1)(-1) 0 3

4 Diviion with remainder Euklid of Alexandria ( ~ 300 BCE) introduced diviion with remainder For given polynomial a(), b()ǂ0 there exit polynomial q(), r(), uch that a bq r, deg r deg b quotient remainder Therefore polynomial form o-called Euclidean circle. >> a=prand(5,'int'),b=prand(3,'int') a = ^ - ^3 + 3^4 + 4^5 b = ^ - 6^3 >> [q,r] = rdiv(a,b) q = ^ r = ^ >> a-(b*q+r) an = 0 4

5 A neceary and ufficient condition for olvability Lemma: Equation a( ) x( ) b( ) y( ) c( ) ha olution if and only if gcd a, b c Diophantu of Alexandria Greek mathematician 3. century A.D. Proof Neceity ( only if ): Let ax ' by ' c and denote gcd( a, b) g, a ga, b gb Then g( ax ' by ') c and hence g c Sufficiency ( if ) Let ( a, b) c and denote ( a, b) g, c gc Then alway exit p, q, uch that ap bq g Multiplying by c we obtain a( pc ) b( qc ) c and we obtained the olution x pc, y qc 5

6 Example: Solvability >> c=(+1)*(+); >> a=(+1)^*(-1); b=(+1)*(-); >> g=gld(a,b) g = (+1) >> pol(c/g) an = (+.0000) >> [x,y]=axbyc(a,b,c) x = y = (+1.500) >> a*x+b*y-c an = 0 >> c=(-1)*(+) c = (+)(-1) >> c/g an = (+)(-1)/(+1) >> pol(c/g)??? Error uing ==> frac.pol Argument i not convertible to polynomial. 6

7 Example: interpretation of condition of olvability Tranfer function without 1 ( 3) hidden mode y( ) u( ) (no cancellation) ( 1)( ) ( 3) u 1 ( 1)( ) y b () a( ) ( 1)( )( 3) y( ) u( ) a () b( ) ( 3) Characteritic polynomial i a( ) x( ) b( ) y( ) ( 1)( )( 3) x( ) ( 3) y( ) ( 3) d( ) So no FB regulator change uncontrollable part Michael Šebek 7 1 ( 3) >> pformat rootr >> a=(-1)*(+)*(+3),b=+3 a = ( )(+.0000)( ), b = (+3) >> x=prand();y=prand();c=a*x+b*y c = 0.877(+3.069)( )( )(^ ) >> x=prand();y=prand();c=a*x+b*y c = 0.758( )( )( )(^ ) >> x=prand();y=prand();c=a*x+b*y c = ( )(+.411)(+0.806)( )( )

8 General olution Lemma: General olution General olution x x bt where t i a random ha the form y y at polynomial parameter Proof: 1) It' a olution for every t: Simply ubtitute it into equation ax by ax abt by bat ax by ba ab t c ) There i no other olution: For any olution x, y and x,y it hold, that ax by c, ax ' by ' c Subtracting a( x x') b( y y') 0 and from it a( x x') ( y y') b Previouly defined polynomial ab, are relatively prime and ab ab Thu, hence for ome polynomial t i b x x ' a y y ' x x ' bt y y ' at Any uch olution of t we obtain by going through the et of all poible polynomial 8

9 Example: General olution Some olution a=(+1)^*(-1) a = ^ + ^3 >> b=(+1)*(-) b = ^ >> c=(+1)*(+) c = ^ >> [x,y]=axbyc(a,b,c) x = y = >> [x,y,v,w]=axbyc(a,b,c) x = y = v = w = ^ Other olution >> t=1- t = 1 >> xnew=x+v*t,ynew=y+w*t xnew = ^ ynew = ^ ^3 >> a*xnew+b*ynew-c an = 0 x ( ) x'( ) r( ) t( ) new y ( ) y '( ) v( ) t( ) new r( ) b( ) v( ) a( ) x( ) x '( ) b ( ) t( ) y( ) y '( ) a( ) t( ) 9

10 We take a general olution x x ' bt y y ' at by a diviion algorithm we reduce x' modulo b: The it hold that x r b ( t q) y y ' at By choice t = q we obtain a olution x, y of minimum degree in x. x r deg x deg b y y ' aq Similarly, we prove the exitence and unicity of olution of minimum degree in y. Thee two olution are generally different. Solution of minimum degree x ' bq r deg r deg b 10

11 Example: Solution of minimum degree Data >> a=prand(3),b=prand(),c=prand(5) a = ^ ^3 b = ^ c = ^ + 1.8^ ^ ^5 >> [x,y,b_bar,a_bar]=axbyc(a,b,c); b_bar,a_bar b_bar = ^ a_bar = ^ ^3 Solution of min. degree y Solution of min. degree x >> [x,y]=axbyc(a,b,c) x = ^ y = ^ >> [x,y]=axbyc(a,b,c,'miny') x = ^ y = ^ >> [x,y]=axbyc(a,b,c,'minx') x = y = ^ ^3 11

12 An important pecial cae occur when deg c deg a deg b Explanation (we expect relatively prime a, b) Coincidence x y c ax by c trictly proper, if it hold b a ab trictly proper, if ol. min deg x trictly proper, if ol. min deg y Right ide trictly proper either both fraction on the left are trictly proper or neither one i Right ide not trictly proper only one fraction on the left may be trictly proper If deg c deg a deg b, then both olution of minimum degree coincide and there i only one olution of minimum degree (which i minimal in both unknown at the ame time). If deg c deg a deg b, then there exit two different olution of minimum degree (one in x and the other one in y). 1

13 Example: Coincidence Ye. Both are the ame! So there i only one olution of minimum degree. No. They are different. >> a=prand(3),b=prand(),c1=1, c=prand(6) a = ^ ^3 b = ^ c1 = 1 >> [x,y]=axbyc(a,b,c1,'minx') x = y = ^ >> [x,y]=axbyc(a,b,c1,'miny') x = y = ^ >> c=prand(6) c = ^+0.3^3-0.96^4-0.15^5+0.74^6 >> [x,y]=axbyc(a,b,c,'minx') x = y = ^ ^3-0.55^4 >> [x,y]=axbyc(a,b,c,'miny') x = ^ ^3 y = ^ Michael Šebek 13

14 Elementary operation on polynomial matrix Row operation - 3 baic one row multiplication 1 by a non-zero contant row interchange 1 row addition of multiplied 1 polynomial to other row 1. row 3 row witch 1. row +.ord Column operation are dual. Elementary operation, except the multiplication, maintain the determinant. They correpond to multiplication by unimodular matrice (i.e. matrix with a contant non-zero determinant). 14

15 Solution by a polynomial reduction Solution of equation by polynomial reduction Step 1 Form a compoite matrix Step Reduce it by elementary operation to the form a ( ) 1 0 b ( ) 0 1 g( ) p( ) q( ) 0 v( ) w( ) Then p( ) a( ) q( ) b( ) g( ) v( ) a( ) w( ) b( ) 0 where gcd a( ), b( ) g ( ) gcd v( ), w( ) 1 Step 3 Extract g() z c() and obtain c( ) c ( ) g( ) If it doen t work, the equation doen t have a olution! 15

16 The reult: a the olution take x( ) c ( ) p( ) y( ) c ( ) q( ) Moreover, all olution are expreed a follow Solution by a polynomial reduction x( ) c ( ) p( ) v( ) t( ) y( ) c ( ) q( ) w( ) t( ) free polynomial parameter The procedure of calculation follow from the equality p q a 1 0 g p q v w b v w 16

17 Example: Solution by a polynomial reduction 1 x( ) 1 y( ) Step 1 and Step g ( ) 1 c() 1 ½ ½ Step 4 x () y () 1 x( ) t( ) 1 y( ) t( ) 17

18 Solution by a Sylveter matrix Example of nd order polynomial, a() a0 a1 a where we earch for x( ) x0 x1, y( ) y0 y1 b() b0 b1 b c() c0 c1 c Step 1: Subtituting polynomial with unknow coefficient into equation a a a x x b b b y y c c c a x b y c Comparing coefficient of identical power, a x b y a x b y c or in matrix form a a x b y a x b y c 0 a1 a 0 b ax1 b y1 0 0 b1 b 0 x0 y0 x1 y1 c0 c1 c 0 0 a0 a1 a 0 b0 b1 b We will olve thi matrix equation, and obtain x0, y0, x1, y1. Then we compoe the earched reult. x( ) x x, y( ) y y

19 1 x( ) 1 y( ) a( ) 1 b( ) 1 c() x() y() We got the minimum degree olution (in both unknown), other than that particular olution obtained earlier. The olution from the lat example i obtained from the general olution by chooing t() = 1 Example: Solution by a Sylveter matrix x x y 0 0 y x y x( ) t( ) 1 y( ) t( ) 1 1 x( ), y( ) 19

20 Beware of micalculation For equation we look for a olution of 0 degree (knowing that it might be wrong) and try to olve the matrix equation that ha obviouly no olution. Still the polynomial equation ha a olution, of higher degree, e.g. Thi i a typical example a 1, b (1 ) 1, c 1 x y x 0.5, y 10.5 >> a=1+^,b=(1+)^,c=a+b-1 a = 1 + ^ b = ^ c = ^ >> S=ylv([a;b],0),C=c{0:} S = C = 1 >> XY=C/S XY = >> XY*S==C an = >> [x,y]=axbyc(a,b,c) x = -0.5 y =

21 Example: pole aignment Sytem motor Input voltage tranfer function Previouly deigned PI controller give a zero error to tep but not a good dynamic Let try better c b = a = ^ p = q = c1 = a*p + b*q c1 = ^ ^3 >> root(c1) an = i i i >> c=(+5)*(+1+j)*(+1-j) c = ^ + ^3 1

22 The olution i a general regulator of 1 t order. It enure good dynamic, but it Example: pole aignment >> [x1,y1]=axbyc(a,b,c) x = -1.7e e+0 y = 1.9e+0-3 doen t have an integrator and therefore it doen t enure zero error. Let try to force an integrator in the dynamic. (olving the equation we will make part of the ytem) We get a controller with good dynamic and zero teady-tate error but it i a PID, what we could expect. >> [x,y]=axbyc(a*,b,c) x = y = 1.5e ^ >> p = x*, q =y p = 9.1e+0 q = 1.5e ^ Remark: we have good control over dynamic (by appropriate election of CL pole) we can enure additional requirement but we have no control over the regulator order - it jut come out

23 Example: Proper controller Example: When the right ide of the equation doen t have a ufficiently high degree. There i only a mall chance for a proper controller. (It i not a generic cae.) >> a=(-1)^,b=,c=(+1)^ a = ^ b = c = ^ >> [x,y]=axbyc(a,b,c) x = y = Other example: Proper regulator exit. Thi i a generic cae. >> c=prand(,'ta') c = ^ >> [x,y]=axbyc(a,b,c) x = y =

24 We aume that a(), b() are relatively prime All tabilizing controller - explicitly Explicit parameterization of all tabilizing controller If c() i ome table polynomial and x(), y() i ome olution of a( ) x( ) b( ) y( ) c( ) then all tabilizing controller are given by q( ) y( ) d( ) a( ) t( ) p( ) x( ) d( ) b( ) t( ) Part of the parameterization are all poible reduction in the controller tranfer function. Proper controller i obtained under following condition: Proper ytem t. f. b( ) a( ) and deg c( ) deg a( ) 1 Proper fraction t( ) d( ) and p ( ) 0 t() i a random polynomial, d() i a random table pol. Michael Šebek ARI

25 What i the form of a characteritic polynomial? For t( ) 0, d( ) 1 All tabilizing controller q( ) y( ) a( ) p( ) b( ) q( ) a( ) x( ) b( ) y( ) c( ) p( ) x( ) Fort () random, d () random table (no reduction in cont. ) q( ) y( ) d( ) a( ) t( ) p( ) x( ) d( ) b( ) t( ) a( ) x( ) b( ) y( ) d( ) a( ) b( ) b( ) a( ) t( ) c( ) d( ) a( ) p( ) b( ) q( ) a( ) x( ) d( ) b( ) t( ) b( ) y( ) d( ) a( ) t( ) I there alway factor c ()? In thi cae it would not be a general table characteritic polynomial? No, it i not there: In ome cae, it get cancelled "in the controller already. 5

26 Cancellation (reduction) For parameter, that lead to cancellation (reduction) q () y( ) d( ) a( ) t( ) c( ) p( ) x( ) d( ) b( ) t( ) c( ) y( ) d( ) a( ) t( ) x( ) d( ) b( ) t( ) a( ) p( ) b( ) q( ) a( ) b( ) c( ) c( ) a( ) x( ) b( ) y( ) d( ) a( ) b( ) b( ) a( ) t( ) c( ) d( ) d () c( ) c( ) The reulting characteritic polynomial can be any table pol. When doe it happen? It ha to be: We olve one equation, the econd come out. Final controller ( after reduction ) q( ) v( ) y( ) d( ) a( ) t( ) c( ) v( ) x( ) d( ) b( ) t( ) c( ) w( ) y( ) d( ) c( ) v( ) a( ) t( ) x( ) d( ) c( ) w( ) b( ) t( ) p( ) w( ) 6

27 Sytem b( ) a( ) 1 i tabilized by a controller y1( ) x1( ) 1 with reulting char. polynomial and alo controller y( ) x( ) 1 11 with reulting char. polynomial Conider the firt controller and write the parametrization in the form We chooe parameter o that the "firt char. pol. i cancelled We olve the equation After ubtitution and we obtain a( ) x ( ) b( ) y ( ) 1 1 a( ) x ( ) b( ) y ( ) 1 Example q( ) d( ) t( ) p( ) d( ) t( ) y ( ) d( ) c( ) v( ) a( ) t( ) 1 v( ) t( ) 1 1 v( ) t( ) q( ) 1 1 p( )

28 Example: Tracking DOF a( ) 1 1 b( ) f ( ) f ( ) m( ) 1 >> a=(1+)*(1-), b=+, f=^, m=(+)*(+1)^ >> [p,q]=axbyc(a,b,m,'miny') p = -, q = + >> [t,r]=axbyc(f,b,m,'miny'); r r = 1 + >> T=coprime(b*r/(a*p+b*q)) T = / ^ >> tep(tf(t/),tf(1/),5) a( ) p( ) b( ) q( ) m( ) f ( ) t( ) b( ) r( ) m( ) p( ) q( ) r( ) 1 8

29 Deign for the ame aigned regulator 1DOF, o error control How to: electing from DOF controller From the olution of the previou p( ) w( )( ) q( ) w( )(1 ) tah elect uch that q( ) r( ) r( ) 1 v( ) Chooing w 1, v we get unatifactory p1 ( ) 0 q ( ) 1 r ( ) By other choice u 1, v 1 we obtain Tracking - 1DOF p ( ), q ( ) 1 r ( ) Thi olution i not proper, but i atifactory. Proper olution doe not exit. A expected, the denominator of 1DOF controller ha factor 9

30 1DOF controller i directly propoed by a olution of equation a( ) f ( ) x( ) b( ) q( ) m( ) and chooing p( ) f ( ) x( ) Becaue the olution of min. degree x3( ) p3( ) 0 q3( ) 1 i unatifactory, we have to find other fom a general olution x( ) 0 w( )( ) q( ) 1 w( )(1 ) For w 1 we obtain x ( ), p ( ) 4 4 q ( ) 1 4 Tracking - 1DOF >> [x3,q3]=axbyc(a*f,b,m), p3=x3*f x3 = 0 q3 = ^ p3 = 0 >> w=1;x4=x3+w*b; p4=x4*f,q4=q3-w*a*f p4 = ^ + ^3 q4 = ^4 30 4

31 DOF and 1DOF tracking comparion Notice, that DOF controller i proper but 1DOF controller i not. Thi i reflected in the CL tranfer function in repone to ramp ignal. q( ) r( ) 1, p( ) p( ) q4() 1 p ( ) 4 4 >> TDOF= r*coprime(b/m) TDOF = 1 + / ^ >> T1DOF= q4*coprime(b/m) T1DOF = ^4 / ^ >> perdof=tf((tdof)/^); per1dof=tf(t1dof/^); impule(perdof,per1dof,tf(1/ ^),3) 31

32 Phyical interpretation and comparion with 1DOF Condition for olvability have a nice interpretation: Stability gcd( ab, ) mean plant tabilizability gcd( f, b) 1 i general condition for the tracking, depend on zero def.: an not pa any (here untable) mode, which i equal to the zero f a i alo a natural ytem driven by an input that converge to zero and aymptotically follow jut uch an untable ignal, which i able to generate by itelf. If it i not fulfilled, the ytem can track only when we give up demand for a table input Comparion of two and one degree of freedom Special cae q = r i eay to differentiate. Equation have a olution q = r if ap f t ap bq m f t br m Claical tructure require, untable mode in ytem or controller tranfer function, even if the input can be untable. Michael Šebek ARI

33 Derivation Sytem cutomization y b () u a () q( ) r( ) u y u p( ) p( ) new y b( ) r( ) u a( ) p( ) b( ) q( ) new y g () u f() new b( ) r( ) g( ) a( ) p( ) b( ) q( ) f ( ) b ( ) r( ) g( ) a( ) p( ) b( ) q( ) f ( ) a( ) p( ) b( ) q( ) f ( ) b( ) t( ) b ( ) r( ) g( ) f ( ) b ( ) t( ) f ( ) r( ) g( ) t ( ) 1 r( ) g( ) t( ) Solvable: Alway. But if we want table olution the condition mut be met. Stability condition: f() table (of coure) and take table t () and gcd( ab, ) ha to be table. b() table: Thi mean that we can not change the untable zero! Michael Šebek ARI

34 Sytem and required t. f. Relatively prime factor We chooe and olve the equation Solution p( ) 3( 1), q( ) ( ). Feedforward i The controller i Verification b( ) ( 1)( 1) a( ) ( )( ) t ( ) 1 Example: Model matching b( ) ( 1)( 1) ( 1) b ( ) g( ) ( 1) 1 g( ) ( )( ) p( ) ( 1)( 1) q( ) ( ) ( 1) ( ) 1 u y u 3( 1) 3( 1) new g( ) 1 f ( ) ( ) r ( ) 1 ( 1)( 1) ( 1)( 1) ( 1) 3( )( )( 1) ( 1)( 1)( ) ( ) ( 1) ( ) 34

Feedback Control Systems (FCS)

Feedback Control Systems (FCS) Feedback Control Sytem (FCS) Lecture19-20 Routh-Herwitz Stability Criterion Dr. Imtiaz Huain email: imtiaz.huain@faculty.muet.edu.pk URL :http://imtiazhuainkalwar.weebly.com/ Stability of Higher Order

More information

Given the following circuit with unknown initial capacitor voltage v(0): X(s) Immediately, we know that the transfer function H(s) is

Given the following circuit with unknown initial capacitor voltage v(0): X(s) Immediately, we know that the transfer function H(s) is EE 4G Note: Chapter 6 Intructor: Cheung More about ZSR and ZIR. Finding unknown initial condition: Given the following circuit with unknown initial capacitor voltage v0: F v0/ / Input xt 0Ω Output yt -

More information

Bogoliubov Transformation in Classical Mechanics

Bogoliubov Transformation in Classical Mechanics Bogoliubov Tranformation in Claical Mechanic Canonical Tranformation Suppoe we have a et of complex canonical variable, {a j }, and would like to conider another et of variable, {b }, b b ({a j }). How

More information

Chapter 13. Root Locus Introduction

Chapter 13. Root Locus Introduction Chapter 13 Root Locu 13.1 Introduction In the previou chapter we had a glimpe of controller deign iue through ome imple example. Obviouly when we have higher order ytem, uch imple deign technique will

More information

Then C pid (s) S h -stabilizes G(s) if and only if Ĉpid(ŝ) S 0 - stabilizes Ĝ(ŝ). For any ρ R +, an RCF of Ĉ pid (ŝ) is given by

Then C pid (s) S h -stabilizes G(s) if and only if Ĉpid(ŝ) S 0 - stabilizes Ĝ(ŝ). For any ρ R +, an RCF of Ĉ pid (ŝ) is given by 9 American Control Conference Hyatt Regency Riverfront, St. Loui, MO, USA June -, 9 WeC5.5 PID Controller Synthei with Shifted Axi Pole Aignment for a Cla of MIMO Sytem A. N. Gündeş and T. S. Chang Abtract

More information

THE PARAMETERIZATION OF ALL TWO-DEGREES-OF-FREEDOM SEMISTRONGLY STABILIZING CONTROLLERS. Tatsuya Hoshikawa, Kou Yamada and Yuko Tatsumi

THE PARAMETERIZATION OF ALL TWO-DEGREES-OF-FREEDOM SEMISTRONGLY STABILIZING CONTROLLERS. Tatsuya Hoshikawa, Kou Yamada and Yuko Tatsumi International Journal of Innovative Computing, Information Control ICIC International c 206 ISSN 349-498 Volume 2, Number 2, April 206 pp. 357 370 THE PARAMETERIZATION OF ALL TWO-DEGREES-OF-FREEDOM SEMISTRONGLY

More information

Root Locus Contents. Root locus, sketching algorithm. Root locus, examples. Root locus, proofs. Root locus, control examples

Root Locus Contents. Root locus, sketching algorithm. Root locus, examples. Root locus, proofs. Root locus, control examples Root Locu Content Root locu, ketching algorithm Root locu, example Root locu, proof Root locu, control example Root locu, influence of zero and pole Root locu, lead lag controller deign 9 Spring ME45 -

More information

MATEMATIK Datum: Tid: eftermiddag. A.Heintz Telefonvakt: Anders Martinsson Tel.:

MATEMATIK Datum: Tid: eftermiddag. A.Heintz Telefonvakt: Anders Martinsson Tel.: MATEMATIK Datum: 20-08-25 Tid: eftermiddag GU, Chalmer Hjälpmedel: inga A.Heintz Telefonvakt: Ander Martinon Tel.: 073-07926. Löningar till tenta i ODE och matematik modellering, MMG5, MVE6. Define what

More information

Lecture 8. PID control. Industrial process control ( today) PID control. Insights about PID actions

Lecture 8. PID control. Industrial process control ( today) PID control. Insights about PID actions Lecture 8. PID control. The role of P, I, and D action 2. PID tuning Indutrial proce control (92... today) Feedback control i ued to improve the proce performance: tatic performance: for contant reference,

More information

NAME (pinyin/italian)... MATRICULATION NUMBER... SIGNATURE

NAME (pinyin/italian)... MATRICULATION NUMBER... SIGNATURE POLITONG SHANGHAI BASIC AUTOMATIC CONTROL June Academic Year / Exam grade NAME (pinyin/italian)... MATRICULATION NUMBER... SIGNATURE Ue only thee page (including the bac) for anwer. Do not ue additional

More information

EE Control Systems LECTURE 6

EE Control Systems LECTURE 6 Copyright FL Lewi 999 All right reerved EE - Control Sytem LECTURE 6 Updated: Sunday, February, 999 BLOCK DIAGRAM AND MASON'S FORMULA A linear time-invariant (LTI) ytem can be repreented in many way, including:

More information

Design By Emulation (Indirect Method)

Design By Emulation (Indirect Method) Deign By Emulation (Indirect Method he baic trategy here i, that Given a continuou tranfer function, it i required to find the bet dicrete equivalent uch that the ignal produced by paing an input ignal

More information

Linear System Fundamentals

Linear System Fundamentals Linear Sytem Fundamental MEM 355 Performance Enhancement of Dynamical Sytem Harry G. Kwatny Department of Mechanical Engineering & Mechanic Drexel Univerity Content Sytem Repreentation Stability Concept

More information

Correction for Simple System Example and Notes on Laplace Transforms / Deviation Variables ECHE 550 Fall 2002

Correction for Simple System Example and Notes on Laplace Transforms / Deviation Variables ECHE 550 Fall 2002 Correction for Simple Sytem Example and Note on Laplace Tranform / Deviation Variable ECHE 55 Fall 22 Conider a tank draining from an initial height of h o at time t =. With no flow into the tank (F in

More information

CHAPTER 4 DESIGN OF STATE FEEDBACK CONTROLLERS AND STATE OBSERVERS USING REDUCED ORDER MODEL

CHAPTER 4 DESIGN OF STATE FEEDBACK CONTROLLERS AND STATE OBSERVERS USING REDUCED ORDER MODEL 98 CHAPTER DESIGN OF STATE FEEDBACK CONTROLLERS AND STATE OBSERVERS USING REDUCED ORDER MODEL INTRODUCTION The deign of ytem uing tate pace model for the deign i called a modern control deign and it i

More information

Module 4: Time Response of discrete time systems Lecture Note 1

Module 4: Time Response of discrete time systems Lecture Note 1 Digital Control Module 4 Lecture Module 4: ime Repone of dicrete time ytem Lecture Note ime Repone of dicrete time ytem Abolute tability i a baic requirement of all control ytem. Apart from that, good

More information

CHAPTER 8 OBSERVER BASED REDUCED ORDER CONTROLLER DESIGN FOR LARGE SCALE LINEAR DISCRETE-TIME CONTROL SYSTEMS

CHAPTER 8 OBSERVER BASED REDUCED ORDER CONTROLLER DESIGN FOR LARGE SCALE LINEAR DISCRETE-TIME CONTROL SYSTEMS CHAPTER 8 OBSERVER BASED REDUCED ORDER CONTROLLER DESIGN FOR LARGE SCALE LINEAR DISCRETE-TIME CONTROL SYSTEMS 8.1 INTRODUCTION 8.2 REDUCED ORDER MODEL DESIGN FOR LINEAR DISCRETE-TIME CONTROL SYSTEMS 8.3

More information

A Simplified Methodology for the Synthesis of Adaptive Flight Control Systems

A Simplified Methodology for the Synthesis of Adaptive Flight Control Systems A Simplified Methodology for the Synthei of Adaptive Flight Control Sytem J.ROUSHANIAN, F.NADJAFI Department of Mechanical Engineering KNT Univerity of Technology 3Mirdamad St. Tehran IRAN Abtract- A implified

More information

Digital Control System

Digital Control System Digital Control Sytem - A D D A Micro ADC DAC Proceor Correction Element Proce Clock Meaurement A: Analog D: Digital Continuou Controller and Digital Control Rt - c Plant yt Continuou Controller Digital

More information

Control of Delayed Integrating Processes Using Two Feedback Controllers R MS Approach

Control of Delayed Integrating Processes Using Two Feedback Controllers R MS Approach Proceeding of the 7th WSEAS International Conference on SYSTEM SCIENCE and SIMULATION in ENGINEERING (ICOSSSE '8) Control of Delayed Integrating Procee Uing Two Feedback Controller R MS Approach LIBOR

More information

Lecture 17: Analytic Functions and Integrals (See Chapter 14 in Boas)

Lecture 17: Analytic Functions and Integrals (See Chapter 14 in Boas) Lecture 7: Analytic Function and Integral (See Chapter 4 in Boa) Thi i a good point to take a brief detour and expand on our previou dicuion of complex variable and complex function of complex variable.

More information

March 18, 2014 Academic Year 2013/14

March 18, 2014 Academic Year 2013/14 POLITONG - SHANGHAI BASIC AUTOMATIC CONTROL Exam grade March 8, 4 Academic Year 3/4 NAME (Pinyin/Italian)... STUDENT ID Ue only thee page (including the back) for anwer. Do not ue additional heet. Ue of

More information

into a discrete time function. Recall that the table of Laplace/z-transforms is constructed by (i) selecting to get

into a discrete time function. Recall that the table of Laplace/z-transforms is constructed by (i) selecting to get Lecture 25 Introduction to Some Matlab c2d Code in Relation to Sampled Sytem here are many way to convert a continuou time function, { h( t) ; t [0, )} into a dicrete time function { h ( k) ; k {0,,, }}

More information

EE Control Systems LECTURE 14

EE Control Systems LECTURE 14 Updated: Tueday, March 3, 999 EE 434 - Control Sytem LECTURE 4 Copyright FL Lewi 999 All right reerved ROOT LOCUS DESIGN TECHNIQUE Suppoe the cloed-loop tranfer function depend on a deign parameter k We

More information

ECE-320 Linear Control Systems. Spring 2014, Exam 1. No calculators or computers allowed, you may leave your answers as fractions.

ECE-320 Linear Control Systems. Spring 2014, Exam 1. No calculators or computers allowed, you may leave your answers as fractions. ECE-0 Linear Control Sytem Spring 04, Exam No calculator or computer allowed, you may leave your anwer a fraction. All problem are worth point unle noted otherwie. Total /00 Problem - refer to the unit

More information

Exercises for lectures 20 Digital Control

Exercises for lectures 20 Digital Control Exercie for lecture 0 Digital Control Micael Šebek Automatic control 06-4- Sampling: and z relationip for complex pole Continuou ignal Laplace tranform wit pole Dicrete ignal z-tranform, t y( t) e in t,

More information

1 Routh Array: 15 points

1 Routh Array: 15 points EE C28 / ME34 Problem Set 3 Solution Fall 2 Routh Array: 5 point Conider the ytem below, with D() k(+), w(t), G() +2, and H y() 2 ++2 2(+). Find the cloed loop tranfer function Y () R(), and range of k

More information

ME 375 FINAL EXAM Wednesday, May 6, 2009

ME 375 FINAL EXAM Wednesday, May 6, 2009 ME 375 FINAL EXAM Wedneday, May 6, 9 Diviion Meckl :3 / Adam :3 (circle one) Name_ Intruction () Thi i a cloed book examination, but you are allowed three ingle-ided 8.5 crib heet. A calculator i NOT allowed.

More information

7 Minimal realization and coprime fraction

7 Minimal realization and coprime fraction 7 Minimal realization and coprime fraction 7 Introduction If a tranfer function i realizable, what i the mallet poible dimenion? Realization with the mallet poible dimenion are called minimal-dimenional

More information

ME 375 FINAL EXAM SOLUTIONS Friday December 17, 2004

ME 375 FINAL EXAM SOLUTIONS Friday December 17, 2004 ME 375 FINAL EXAM SOLUTIONS Friday December 7, 004 Diviion Adam 0:30 / Yao :30 (circle one) Name Intruction () Thi i a cloed book eamination, but you are allowed three 8.5 crib heet. () You have two hour

More information

Lecture 9: Shor s Algorithm

Lecture 9: Shor s Algorithm Quantum Computation (CMU 8-859BB, Fall 05) Lecture 9: Shor Algorithm October 7, 05 Lecturer: Ryan O Donnell Scribe: Sidhanth Mohanty Overview Let u recall the period finding problem that wa et up a a function

More information

Control Systems Analysis and Design by the Root-Locus Method

Control Systems Analysis and Design by the Root-Locus Method 6 Control Sytem Analyi and Deign by the Root-Locu Method 6 1 INTRODUCTION The baic characteritic of the tranient repone of a cloed-loop ytem i cloely related to the location of the cloed-loop pole. If

More information

Analysis of Stability &

Analysis of Stability & INC 34 Feedback Control Sytem Analyi of Stability & Steady-State Error S Wonga arawan.won@kmutt.ac.th Summary from previou cla Firt-order & econd order ytem repone τ ωn ζω ω n n.8.6.4. ζ ζ. ζ.5 ζ ζ.5 ct.8.6.4...4.6.8..4.6.8

More information

Chapter 7. Root Locus Analysis

Chapter 7. Root Locus Analysis Chapter 7 Root Locu Analyi jw + KGH ( ) GH ( ) - K 0 z O 4 p 2 p 3 p Root Locu Analyi The root of the cloed-loop characteritic equation define the ytem characteritic repone. Their location in the complex

More information

Lecture #9 Continuous time filter

Lecture #9 Continuous time filter Lecture #9 Continuou time filter Oliver Faut December 5, 2006 Content Review. Motivation......................................... 2 2 Filter pecification 2 2. Low pa..........................................

More information

Solutions. Digital Control Systems ( ) 120 minutes examination time + 15 minutes reading time at the beginning of the exam

Solutions. Digital Control Systems ( ) 120 minutes examination time + 15 minutes reading time at the beginning of the exam BSc - Sample Examination Digital Control Sytem (5-588-) Prof. L. Guzzella Solution Exam Duration: Number of Quetion: Rating: Permitted aid: minute examination time + 5 minute reading time at the beginning

More information

Laplace Transformation

Laplace Transformation Univerity of Technology Electromechanical Department Energy Branch Advance Mathematic Laplace Tranformation nd Cla Lecture 6 Page of 7 Laplace Tranformation Definition Suppoe that f(t) i a piecewie continuou

More information

ME 375 EXAM #1 Tuesday February 21, 2006

ME 375 EXAM #1 Tuesday February 21, 2006 ME 375 EXAM #1 Tueday February 1, 006 Diviion Adam 11:30 / Savran :30 (circle one) Name Intruction (1) Thi i a cloed book examination, but you are allowed one 8.5x11 crib heet. () You have one hour to

More information

Design of Digital Filters

Design of Digital Filters Deign of Digital Filter Paley-Wiener Theorem [ ] ( ) If h n i a caual energy ignal, then ln H e dω< B where B i a finite upper bound. One implication of the Paley-Wiener theorem i that a tranfer function

More information

Lecture 4. Chapter 11 Nise. Controller Design via Frequency Response. G. Hovland 2004

Lecture 4. Chapter 11 Nise. Controller Design via Frequency Response. G. Hovland 2004 METR4200 Advanced Control Lecture 4 Chapter Nie Controller Deign via Frequency Repone G. Hovland 2004 Deign Goal Tranient repone via imple gain adjutment Cacade compenator to improve teady-tate error Cacade

More information

Digital Control System

Digital Control System Digital Control Sytem Summary # he -tranform play an important role in digital control and dicrete ignal proceing. he -tranform i defined a F () f(k) k () A. Example Conider the following equence: f(k)

More information

MODERN CONTROL SYSTEMS

MODERN CONTROL SYSTEMS MODERN CONTROL SYSTEMS Lecture 1 Root Locu Emam Fathy Department of Electrical and Control Engineering email: emfmz@aat.edu http://www.aat.edu/cv.php?dip_unit=346&er=68525 1 Introduction What i root locu?

More information

A Simple Approach to Synthesizing Naïve Quantized Control for Reference Tracking

A Simple Approach to Synthesizing Naïve Quantized Control for Reference Tracking A Simple Approach to Syntheizing Naïve Quantized Control for Reference Tracking SHIANG-HUA YU Department of Electrical Engineering National Sun Yat-Sen Univerity 70 Lien-Hai Road, Kaohiung 804 TAIAN Abtract:

More information

SOLUTIONS TO ALGEBRAIC GEOMETRY AND ARITHMETIC CURVES BY QING LIU. I will collect my solutions to some of the exercises in this book in this document.

SOLUTIONS TO ALGEBRAIC GEOMETRY AND ARITHMETIC CURVES BY QING LIU. I will collect my solutions to some of the exercises in this book in this document. SOLUTIONS TO ALGEBRAIC GEOMETRY AND ARITHMETIC CURVES BY QING LIU CİHAN BAHRAN I will collect my olution to ome of the exercie in thi book in thi document. Section 2.1 1. Let A = k[[t ]] be the ring of

More information

Figure 1: Unity Feedback System

Figure 1: Unity Feedback System MEM 355 Sample Midterm Problem Stability 1 a) I the following ytem table? Solution: G() = Pole: -1, -2, -2, -1.5000 + 1.3229i, -1.5000-1.3229i 1 ( + 1)( 2 + 3 + 4)( + 2) 2 A you can ee, all pole are on

More information

Question 1 Equivalent Circuits

Question 1 Equivalent Circuits MAE 40 inear ircuit Fall 2007 Final Intruction ) Thi exam i open book You may ue whatever written material you chooe, including your cla note and textbook You may ue a hand calculator with no communication

More information

7.2 INVERSE TRANSFORMS AND TRANSFORMS OF DERIVATIVES 281

7.2 INVERSE TRANSFORMS AND TRANSFORMS OF DERIVATIVES 281 72 INVERSE TRANSFORMS AND TRANSFORMS OF DERIVATIVES 28 and i 2 Show how Euler formula (page 33) can then be ued to deduce the reult a ( a) 2 b 2 {e at co bt} {e at in bt} b ( a) 2 b 2 5 Under what condition

More information

online learning Unit Workbook 4 RLC Transients

online learning Unit Workbook 4 RLC Transients online learning Pearon BTC Higher National in lectrical and lectronic ngineering (QCF) Unit 5: lectrical & lectronic Principle Unit Workbook 4 in a erie of 4 for thi unit Learning Outcome: RLC Tranient

More information

State Space: Observer Design Lecture 11

State Space: Observer Design Lecture 11 State Space: Oberver Deign Lecture Advanced Control Sytem Dr Eyad Radwan Dr Eyad Radwan/ACS/ State Space-L Controller deign relie upon acce to the tate variable for feedback through adjutable gain. Thi

More information

Problem Set 8 Solutions

Problem Set 8 Solutions Deign and Analyi of Algorithm April 29, 2015 Maachuett Intitute of Technology 6.046J/18.410J Prof. Erik Demaine, Srini Devada, and Nancy Lynch Problem Set 8 Solution Problem Set 8 Solution Thi problem

More information

Control Systems Engineering ( Chapter 7. Steady-State Errors ) Prof. Kwang-Chun Ho Tel: Fax:

Control Systems Engineering ( Chapter 7. Steady-State Errors ) Prof. Kwang-Chun Ho Tel: Fax: Control Sytem Engineering ( Chapter 7. Steady-State Error Prof. Kwang-Chun Ho kwangho@hanung.ac.kr Tel: 0-760-453 Fax:0-760-4435 Introduction In thi leon, you will learn the following : How to find the

More information

S_LOOP: SINGLE-LOOP FEEDBACK CONTROL SYSTEM ANALYSIS

S_LOOP: SINGLE-LOOP FEEDBACK CONTROL SYSTEM ANALYSIS S_LOOP: SINGLE-LOOP FEEDBACK CONTROL SYSTEM ANALYSIS by Michelle Gretzinger, Daniel Zyngier and Thoma Marlin INTRODUCTION One of the challenge to the engineer learning proce control i relating theoretical

More information

Homework 12 Solution - AME30315, Spring 2013

Homework 12 Solution - AME30315, Spring 2013 Homework 2 Solution - AME335, Spring 23 Problem :[2 pt] The Aerotech AGS 5 i a linear motor driven XY poitioning ytem (ee attached product heet). A friend of mine, through careful experimentation, identified

More information

Singular perturbation theory

Singular perturbation theory Singular perturbation theory Marc R. Rouel June 21, 2004 1 Introduction When we apply the teady-tate approximation (SSA) in chemical kinetic, we typically argue that ome of the intermediate are highly

More information

ECE 3510 Root Locus Design Examples. PI To eliminate steady-state error (for constant inputs) & perfect rejection of constant disturbances

ECE 3510 Root Locus Design Examples. PI To eliminate steady-state error (for constant inputs) & perfect rejection of constant disturbances ECE 350 Root Locu Deign Example Recall the imple crude ervo from lab G( ) 0 6.64 53.78 σ = = 3 23.473 PI To eliminate teady-tate error (for contant input) & perfect reection of contant diturbance Note:

More information

Assignment for Mathematics for Economists Fall 2016

Assignment for Mathematics for Economists Fall 2016 Due date: Mon. Nov. 1. Reading: CSZ, Ch. 5, Ch. 8.1 Aignment for Mathematic for Economit Fall 016 We now turn to finihing our coverage of concavity/convexity. There are two part: Jenen inequality for concave/convex

More information

Nonlinear Single-Particle Dynamics in High Energy Accelerators

Nonlinear Single-Particle Dynamics in High Energy Accelerators Nonlinear Single-Particle Dynamic in High Energy Accelerator Part 6: Canonical Perturbation Theory Nonlinear Single-Particle Dynamic in High Energy Accelerator Thi coure conit of eight lecture: 1. Introduction

More information

SIMON FRASER UNIVERSITY School of Engineering Science ENSC 320 Electric Circuits II. R 4 := 100 kohm

SIMON FRASER UNIVERSITY School of Engineering Science ENSC 320 Electric Circuits II. R 4 := 100 kohm SIMON FRASER UNIVERSITY School of Engineering Science ENSC 320 Electric Circuit II Solution to Aignment 3 February 2003. Cacaded Op Amp [DC&L, problem 4.29] An ideal op amp ha an output impedance of zero,

More information

Stability Criterion Routh Hurwitz

Stability Criterion Routh Hurwitz EES404 Fundamental of Control Sytem Stability Criterion Routh Hurwitz DR. Ir. Wahidin Wahab M.Sc. Ir. Arie Subiantoro M.Sc. Stability A ytem i table if for a finite input the output i imilarly finite A

More information

Automatic Control Systems. Part III: Root Locus Technique

Automatic Control Systems. Part III: Root Locus Technique www.pdhcenter.com PDH Coure E40 www.pdhonline.org Automatic Control Sytem Part III: Root Locu Technique By Shih-Min Hu, Ph.D., P.E. Page of 30 www.pdhcenter.com PDH Coure E40 www.pdhonline.org VI. Root

More information

Solving Differential Equations by the Laplace Transform and by Numerical Methods

Solving Differential Equations by the Laplace Transform and by Numerical Methods 36CH_PHCalter_TechMath_95099 3//007 :8 PM Page Solving Differential Equation by the Laplace Tranform and by Numerical Method OBJECTIVES When you have completed thi chapter, you hould be able to: Find the

More information

Chapter #4 EEE8013. Linear Controller Design and State Space Analysis. Design of control system in state space using Matlab

Chapter #4 EEE8013. Linear Controller Design and State Space Analysis. Design of control system in state space using Matlab EEE83 hapter #4 EEE83 Linear ontroller Deign and State Space nalyi Deign of control ytem in tate pace uing Matlab. ontrollabilty and Obervability.... State Feedback ontrol... 5 3. Linear Quadratic Regulator

More information

MM1: Basic Concept (I): System and its Variables

MM1: Basic Concept (I): System and its Variables MM1: Baic Concept (I): Sytem and it Variable A ytem i a collection of component which are coordinated together to perform a function Sytem interact with their environment. The interaction i defined in

More information

Figure 1 Siemens PSSE Web Site

Figure 1 Siemens PSSE Web Site Stability Analyi of Dynamic Sytem. In the lat few lecture we have een how mall ignal Lalace domain model may be contructed of the dynamic erformance of ower ytem. The tability of uch ytem i a matter of

More information

Advanced D-Partitioning Analysis and its Comparison with the Kharitonov s Theorem Assessment

Advanced D-Partitioning Analysis and its Comparison with the Kharitonov s Theorem Assessment Journal of Multidiciplinary Engineering Science and Technology (JMEST) ISSN: 59- Vol. Iue, January - 5 Advanced D-Partitioning Analyi and it Comparion with the haritonov Theorem Aement amen M. Yanev Profeor,

More information

Gain and Phase Margins Based Delay Dependent Stability Analysis of Two- Area LFC System with Communication Delays

Gain and Phase Margins Based Delay Dependent Stability Analysis of Two- Area LFC System with Communication Delays Gain and Phae Margin Baed Delay Dependent Stability Analyi of Two- Area LFC Sytem with Communication Delay Şahin Sönmez and Saffet Ayaun Department of Electrical Engineering, Niğde Ömer Halidemir Univerity,

More information

Convex Hulls of Curves Sam Burton

Convex Hulls of Curves Sam Burton Convex Hull of Curve Sam Burton 1 Introduction Thi paper will primarily be concerned with determining the face of convex hull of curve of the form C = {(t, t a, t b ) t [ 1, 1]}, a < b N in R 3. We hall

More information

Evolutionary Algorithms Based Fixed Order Robust Controller Design and Robustness Performance Analysis

Evolutionary Algorithms Based Fixed Order Robust Controller Design and Robustness Performance Analysis Proceeding of 01 4th International Conference on Machine Learning and Computing IPCSIT vol. 5 (01) (01) IACSIT Pre, Singapore Evolutionary Algorithm Baed Fixed Order Robut Controller Deign and Robutne

More information

NONLINEAR CONTROLLER DESIGN FOR A SHELL AND TUBE HEAT EXCHANGER AN EXPERIMENTATION APPROACH

NONLINEAR CONTROLLER DESIGN FOR A SHELL AND TUBE HEAT EXCHANGER AN EXPERIMENTATION APPROACH International Journal of Electrical, Electronic and Data Communication, ISSN: 232-284 Volume-3, Iue-8, Aug.-25 NONLINEAR CONTROLLER DESIGN FOR A SHELL AND TUBE HEAT EXCHANGER AN EXPERIMENTATION APPROACH

More information

Lecture 10 Filtering: Applied Concepts

Lecture 10 Filtering: Applied Concepts Lecture Filtering: Applied Concept In the previou two lecture, you have learned about finite-impule-repone (FIR) and infinite-impule-repone (IIR) filter. In thee lecture, we introduced the concept of filtering

More information

CHBE320 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION. Professor Dae Ryook Yang

CHBE320 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION. Professor Dae Ryook Yang CHBE3 ECTURE V APACE TRANSFORM AND TRANSFER FUNCTION Profeor Dae Ryook Yang Spring 8 Dept. of Chemical and Biological Engineering 5- Road Map of the ecture V aplace Tranform and Tranfer function Definition

More information

The Root Locus Method

The Root Locus Method The Root Locu Method MEM 355 Performance Enhancement of Dynamical Sytem Harry G. Kwatny Department of Mechanical Engineering & Mechanic Drexel Univerity Outline The root locu method wa introduced by Evan

More information

MAE140 Linear Circuits Fall 2012 Final, December 13th

MAE140 Linear Circuits Fall 2012 Final, December 13th MAE40 Linear Circuit Fall 202 Final, December 3th Intruction. Thi exam i open book. You may ue whatever written material you chooe, including your cla note and textbook. You may ue a hand calculator with

More information

Adaptive Control of Level in Water Tank: Simulation Study

Adaptive Control of Level in Water Tank: Simulation Study Adaptive Control of Level in Water Tank: Simulation Study Jiri Vojteek and Petr Dotal Abtract An adaptive control i a popular, o called modern control method which could be ued for variou type of ytem

More information

Multivariable Control Systems

Multivariable Control Systems Lecture Multivariable Control Sytem Ali Karimpour Aociate Profeor Ferdowi Univerity of Mahhad Lecture Reference are appeared in the lat lide. Dr. Ali Karimpour May 6 Uncertainty in Multivariable Sytem

More information

MEM 355 Performance Enhancement of Dynamical Systems Root Locus Analysis

MEM 355 Performance Enhancement of Dynamical Systems Root Locus Analysis MEM 355 Performance Enhancement of Dynamical Sytem Root Locu Analyi Harry G. Kwatny Department of Mechanical Engineering & Mechanic Drexel Univerity Outline The root locu method wa introduced by Evan in

More information

EE 4443/5329. LAB 3: Control of Industrial Systems. Simulation and Hardware Control (PID Design) The Inverted Pendulum. (ECP Systems-Model: 505)

EE 4443/5329. LAB 3: Control of Industrial Systems. Simulation and Hardware Control (PID Design) The Inverted Pendulum. (ECP Systems-Model: 505) EE 4443/5329 LAB 3: Control of Indutrial Sytem Simulation and Hardware Control (PID Deign) The Inverted Pendulum (ECP Sytem-Model: 505) Compiled by: Nitin Swamy Email: nwamy@lakehore.uta.edu Email: okuljaca@lakehore.uta.edu

More information

SIMON FRASER UNIVERSITY School of Engineering Science ENSC 320 Electric Circuits II. Solutions to Assignment 3 February 2005.

SIMON FRASER UNIVERSITY School of Engineering Science ENSC 320 Electric Circuits II. Solutions to Assignment 3 February 2005. SIMON FRASER UNIVERSITY School of Engineering Science ENSC 320 Electric Circuit II Solution to Aignment 3 February 2005. Initial Condition Source 0 V battery witch flip at t 0 find i 3 (t) Component value:

More information

Computers and Mathematics with Applications. Sharp algebraic periodicity conditions for linear higher order

Computers and Mathematics with Applications. Sharp algebraic periodicity conditions for linear higher order Computer and Mathematic with Application 64 (2012) 2262 2274 Content lit available at SciVere ScienceDirect Computer and Mathematic with Application journal homepage: wwweleviercom/locate/camwa Sharp algebraic

More information

SOME RESULTS ON INFINITE POWER TOWERS

SOME RESULTS ON INFINITE POWER TOWERS NNTDM 16 2010) 3, 18-24 SOME RESULTS ON INFINITE POWER TOWERS Mladen Vailev - Miana 5, V. Hugo Str., Sofia 1124, Bulgaria E-mail:miana@abv.bg Abtract To my friend Kratyu Gumnerov In the paper the infinite

More information

FRTN10 Exercise 3. Specifications and Disturbance Models

FRTN10 Exercise 3. Specifications and Disturbance Models FRTN0 Exercie 3. Specification and Diturbance Model 3. A feedback ytem i hown in Figure 3., in which a firt-order proce if controlled by an I controller. d v r u 2 z C() P() y n Figure 3. Sytem in Problem

More information

A SIMPLE NASH-MOSER IMPLICIT FUNCTION THEOREM IN WEIGHTED BANACH SPACES. Sanghyun Cho

A SIMPLE NASH-MOSER IMPLICIT FUNCTION THEOREM IN WEIGHTED BANACH SPACES. Sanghyun Cho A SIMPLE NASH-MOSER IMPLICIT FUNCTION THEOREM IN WEIGHTED BANACH SPACES Sanghyun Cho Abtract. We prove a implified verion of the Nah-Moer implicit function theorem in weighted Banach pace. We relax the

More information

SMALL-SIGNAL STABILITY ASSESSMENT OF THE EUROPEAN POWER SYSTEM BASED ON ADVANCED NEURAL NETWORK METHOD

SMALL-SIGNAL STABILITY ASSESSMENT OF THE EUROPEAN POWER SYSTEM BASED ON ADVANCED NEURAL NETWORK METHOD SMALL-SIGNAL STABILITY ASSESSMENT OF THE EUROPEAN POWER SYSTEM BASED ON ADVANCED NEURAL NETWORK METHOD S.P. Teeuwen, I. Erlich U. Bachmann Univerity of Duiburg, Germany Department of Electrical Power Sytem

More information

Root Locus Diagram. Root loci: The portion of root locus when k assume positive values: that is 0

Root Locus Diagram. Root loci: The portion of root locus when k assume positive values: that is 0 Objective Root Locu Diagram Upon completion of thi chapter you will be able to: Plot the Root Locu for a given Tranfer Function by varying gain of the ytem, Analye the tability of the ytem from the root

More information

6.447 rad/sec and ln (% OS /100) tan Thus pc. the testing point is s 3.33 j5.519

6.447 rad/sec and ln (% OS /100) tan Thus pc. the testing point is s 3.33 j5.519 9. a. 3.33, n T ln(% OS /100) 2 2 ln (% OS /100) 0.517. Thu n 6.7 rad/ec and the teting point i 3.33 j5.519. b. Summation of angle including the compenating zero i -106.691, The compenator pole mut contribute

More information

EXTENDED STABILITY MARGINS ON CONTROLLER DESIGN FOR NONLINEAR INPUT DELAY SYSTEMS. Otto J. Roesch, Hubert Roth, Asif Iqbal

EXTENDED STABILITY MARGINS ON CONTROLLER DESIGN FOR NONLINEAR INPUT DELAY SYSTEMS. Otto J. Roesch, Hubert Roth, Asif Iqbal EXTENDED STABILITY MARGINS ON CONTROLLER DESIGN FOR NONLINEAR INPUT DELAY SYSTEMS Otto J. Roech, Hubert Roth, Aif Iqbal Intitute of Automatic Control Engineering Univerity Siegen, Germany {otto.roech,

More information

Massachusetts Institute of Technology Dynamics and Control II

Massachusetts Institute of Technology Dynamics and Control II I E Maachuett Intitute of Technology Department of Mechanical Engineering 2.004 Dynamic and Control II Laboratory Seion 5: Elimination of Steady-State Error Uing Integral Control Action 1 Laboratory Objective:

More information

Linearteam tech paper. The analysis of fourth-order state variable filter and it s application to Linkwitz- Riley filters

Linearteam tech paper. The analysis of fourth-order state variable filter and it s application to Linkwitz- Riley filters Linearteam tech paper The analyi of fourth-order tate variable filter and it application to Linkwitz- iley filter Janne honen 5.. TBLE OF CONTENTS. NTOCTON.... FOTH-OE LNWTZ-LEY (L TNSFE FNCTON.... TNSFE

More information

DYNAMIC MODELS FOR CONTROLLER DESIGN

DYNAMIC MODELS FOR CONTROLLER DESIGN DYNAMIC MODELS FOR CONTROLLER DESIGN M.T. Tham (996,999) Dept. of Chemical and Proce Engineering Newcatle upon Tyne, NE 7RU, UK.. INTRODUCTION The problem of deigning a good control ytem i baically that

More information

Chapter 5 Consistency, Zero Stability, and the Dahlquist Equivalence Theorem

Chapter 5 Consistency, Zero Stability, and the Dahlquist Equivalence Theorem Chapter 5 Conitency, Zero Stability, and the Dahlquit Equivalence Theorem In Chapter 2 we dicued convergence of numerical method and gave an experimental method for finding the rate of convergence (aka,

More information

Clustering Methods without Given Number of Clusters

Clustering Methods without Given Number of Clusters Clutering Method without Given Number of Cluter Peng Xu, Fei Liu Introduction A we now, mean method i a very effective algorithm of clutering. It mot powerful feature i the calability and implicity. However,

More information

CONTROL SYSTEMS. Chapter 5 : Root Locus Diagram. GATE Objective & Numerical Type Solutions. The transfer function of a closed loop system is

CONTROL SYSTEMS. Chapter 5 : Root Locus Diagram. GATE Objective & Numerical Type Solutions. The transfer function of a closed loop system is CONTROL SYSTEMS Chapter 5 : Root Locu Diagram GATE Objective & Numerical Type Solution Quetion 1 [Work Book] [GATE EC 199 IISc-Bangalore : Mark] The tranfer function of a cloed loop ytem i T () where i

More information

Stability. ME 344/144L Prof. R.G. Longoria Dynamic Systems and Controls/Lab. Department of Mechanical Engineering The University of Texas at Austin

Stability. ME 344/144L Prof. R.G. Longoria Dynamic Systems and Controls/Lab. Department of Mechanical Engineering The University of Texas at Austin Stability The tability of a ytem refer to it ability or tendency to eek a condition of tatic equilibrium after it ha been diturbed. If given a mall perturbation from the equilibrium, it i table if it return.

More information

Mathematical modeling of control systems. Laith Batarseh. Mathematical modeling of control systems

Mathematical modeling of control systems. Laith Batarseh. Mathematical modeling of control systems Chapter two Laith Batareh Mathematical modeling The dynamic of many ytem, whether they are mechanical, electrical, thermal, economic, biological, and o on, may be decribed in term of differential equation

More information

Chapter 4. The Laplace Transform Method

Chapter 4. The Laplace Transform Method Chapter 4. The Laplace Tranform Method The Laplace Tranform i a tranformation, meaning that it change a function into a new function. Actually, it i a linear tranformation, becaue it convert a linear combination

More information

The Laplace Transform

The Laplace Transform The Laplace Tranform Prof. Siripong Potiuk Pierre Simon De Laplace 749-827 French Atronomer and Mathematician Laplace Tranform An extenion of the CT Fourier tranform to allow analyi of broader cla of CT

More information

696 Fu Jing-Li et al Vol. 12 form in generalized coordinate Q ffiq dt = 0 ( = 1; ;n): (3) For nonholonomic ytem, ffiq are not independent of

696 Fu Jing-Li et al Vol. 12 form in generalized coordinate Q  ffiq dt = 0 ( = 1; ;n): (3) For nonholonomic ytem, ffiq are not independent of Vol 12 No 7, July 2003 cfl 2003 Chin. Phy. Soc. 1009-1963/2003/12(07)/0695-05 Chinee Phyic and IOP Publihing Ltd Lie ymmetrie and conerved quantitie of controllable nonholonomic dynamical ytem Fu Jing-Li(ΛΠ±)

More information

The machines in the exercise work as follows:

The machines in the exercise work as follows: Tik-79.148 Spring 2001 Introduction to Theoretical Computer Science Tutorial 9 Solution to Demontration Exercie 4. Contructing a complex Turing machine can be very laboriou. With the help of machine chema

More information

Chapter Landscape of an Optimization Problem. Local Search. Coping With NP-Hardness. Gradient Descent: Vertex Cover

Chapter Landscape of an Optimization Problem. Local Search. Coping With NP-Hardness. Gradient Descent: Vertex Cover Coping With NP-Hardne Chapter 12 Local Search Q Suppoe I need to olve an NP-hard problem What hould I do? A Theory ay you're unlikely to find poly-time algorithm Mut acrifice one of three deired feature

More information

THE IDENTIFICATION OF THE OPERATING REGIMES OF THE CONTROLLERS BY THE HELP OF THE PHASE TRAJECTORY

THE IDENTIFICATION OF THE OPERATING REGIMES OF THE CONTROLLERS BY THE HELP OF THE PHASE TRAJECTORY Mariu M. B LA Aurel Vlaicu Univerity of Arad, Engineering Faculty Bd. Revolu iei nr. 77, 3030, Arad, Romania, E-mail: mariu.bala@ieee.org THE IDENTIFICATION OF THE OPERATING REGIMES OF THE CONTROLLERS

More information