Problem 1 (Analysis of a Feedback System - Bode, Root Locus, Nyquist) Consider the feedback system defined by the open loop transfer function 1.

Size: px
Start display at page:

Download "Problem 1 (Analysis of a Feedback System - Bode, Root Locus, Nyquist) Consider the feedback system defined by the open loop transfer function 1."

Transcription

1 1 EEE480 Final Exam, Spring 2016 A.A. Rodriguez Rules: Calculators permitted, One sheet, closed notes/books, open minds GWC 352, Problem 1 (Analysis of a Feedback System - Bode, Root Locus, Nyquist) Consider the feedback system defined by the open loop transfer function L = PK = 10(s [ ] 4 [ ] +1.93)(s s ) [ 10 7 ][ ] s s s 2 (s 1) 2 s s [ ][ with series compensator K = 10(s+1.93)(s s+2.591) s s+400] and reference command pre-filter [ ][ ] W = s s s (a) Sketch approximate Bode magnitude and phase plots. (b) Determine the approximate 10 (±20 db) frequencies associated with L. (c) Sketch an approximate root locus plot. Compute angles of asymptotes. (d) Sketch a Nyquist plot (only partial polar plot is required). (e) Provide a complete stability summary - indicating Nyquist N cw values for open k i intervals. (f) Compute all margins ( GM, GM, PM, DM), their associated frequencies and bounds for peak S, T. EXTRA CREDIT: g, h, i (g) What is the approximate closed loop transfer function T ry and associated closed loop poles? (h) Approximate the output y when r = 10 1(t). What is (approximate) overshoot? settling time? (i) Determine r such that y ss =10+0.1sin(0.1t +10 )whend i =10sin(0.01t +10 ) + 30 cos(400t +40 ). Problem 2 (Control System Design: Design for Bandwidth and Phase Margin) Suppose [ ] [ 2Ω 1 s 0.5Ωs π P = s ] s 0.5 s +0.5Ω s s + 2Ωs π where Ω s = kω g (k>0) represents a (digital) sampling frequency. The first term in brackets represents an anti-aliasing filter. The second term in brackets represents a Pade approximation to a zero order hold half sample time delay. Suppose that k = 20. (a) Design a feedback control system such that the closed loop system (1) is stable, (2) exhibits constant steady state error to ramp input disturbances d i, (3) ω g = 2 rad/sec, (4) PM =60, (5) impact of high frequency sensor noise on controls is addressed, (6) overshoot to step commands is addressed. (b) Determine the approximate gain margins associated with your design.

2 2 Here is an mfile for Problem # 1 (Spring 2016 Final Exam). EEE480 SPRING 2016 FINAL A.A. Rodriguez (All rights reserved) 4th ORDER CLS L = ( c3 s^3 + c2 s^2 + c1 s + co ) / ( s^2 (s - p1) (s - p2) ) Phi_CL = s^4 + (c3 - p1 - p2)s^3 + (c2 +p1 p2) s^2 + c1 s + co Phi_CL_desired = (s^2 + a1 s + ao) (s^2 + b1 s + b0) = s^4 +(a1 + b1)s^3 + (ao + a1b1 + bo)s^2 + (ao b1 + a1 bo)s + aobo c3 = a1 + b1 + p1 + p2 c2 = ao + a1 b1 + bo - p1 p2 c1 = ao b1 + a1 bo co = ao bo PLANT P = 1 / ( (s - p1) (s - p1) ) NOTE: DATA GIVEN IN PROBLEM STATEMENT RESULTS IN THE FOLLOWING NICE DOMINANT CLOSED LOOP POLES! -1 +/- j 1-3 +/- j 4 PLEASE SET FLAG PROPERLY BEFORE RUNNING MFILE FLAG IS SET TO NOMINAL VALUE OF 1 - to get 1 unity gain crossover FLAG = 1 to get 1 unity gain crossover for nominal data given FLAG = 3 to get 3 unity gain crossovers for nominal data given PLEASE SET HIGH FREQUENCY POLE APPROXIMATION FLAG PROPERLY BEFORE RUNNING MFILE POLE APPROXIMATION FLAG IS CURRENTLY SET TO ITS NOMINAL VALUE FLAGAPPROX = 1 FLAGAPPROX = 0 NOMINAL: USE THIS TO APPROXIMATE HIGH FREQUENCY POLES AND GET NICER CLOSED LOOP POLE NUMBERS YOU SHOULD COMPUTE DURING EXAM USE THIS TO NOT APPROXIMATE HIGH FREQUENCY POLES PLANT DATA - PLANT = 1 / (s - p1) (s - p2)

3 3 p1 = 1; 1 Nominal plant pole p2 = 1; 2 Nominal plant pole plant = tf(1, [1 -(p1+p2) p1*p2 ]) zpk(plant) w = logspace(-2,3,2000); Vector of frequencies [plant_mag, plant_phase] = bode(plant, w); figure(10) semilogx(w,20*log10(plant_mag(1,:)) ) title( PLANT: P ) figure(11) semilogx(w,plant_phase(1,:) ) title( PLANT: P ) ylabel( Phase (degrees) ) DESIRED CLOSED LOOP CHARACTERISTIC EQUATION Phi_CL_desired = (s^2 + a1 s + ao) (s^2 + b1 s + b0) = s^4 +(a1 + b1)s^3 + (ao + a1b1 + bo)s^2 + (ao b1 + a1 bo)s + aobo SET NOMINAL CLOSED LOOP POLES a1 = 2 ao = 2 s^2 + 2s \pm j 1 if FLAG == 1 b1 = 6; 6 bo = 25; 225/16 s^2 + 6s + 25 = 0 yields faster CLPs = -2 \pm j 3/2 Yields 1 unity gain crossover for nominal data given! end if FLAG == 1 b1 = 12 bo = 225/4 s^2 + 12s + 225/16 = 0 yields faster CLPs = -6 \pm j 9/2 Yields 1 unity gain crossover for nominal data given! end if FLAG == 1 b1 = 1 bo = 0.5 s^2 + s = 0 yields CLPs = -0.5 \pm j 0.5 Yields 1 unity gain crossover for nominal data given! end

4 4 if FLAG==3 b1 = 2 bo = 25/16 s^2 + 2s + 25/16 = 0 yields slower CLPs = -1 \pm j 3/4 yields 3 unity gain crossovers for nominal data given! YUK!!!! end COMPENSATOR: K = ( c3 s^3 + c2 s^2 + c1 s + co ) / s^2 c3 = a1 + b1 + p1 + p2 c2 = ao + a1*b1 + bo - p1*p2 c1 = ao*b1 + a1*bo co = ao*bo hfp = High frequency poles for roll off in controller Actual value of pole used in problem statement if FLAGAPPROX ==1 hfp = hfp High frequency poles for roll off in controller USE THIS TO GET NICER CLOSED LOOP POLE NUMBERS; i.e. approximation that should be made during the exam SET FLAGAPPROX = 0 TO GET NUMBERS IN PROBLEM STATEMENT end comp_num = [ c3 c2 c1 co] comp_zeros = roots(comp_num) Compensator zeros comp_den = [ 1 0 0] comp = tf (comp_num,comp_den) roll_off = tf(hfp, [1 hfp] ) num_rolloff_terms = 4; Number of Roll Off Terms for end rolloff_counter = 1:1: num_rolloff_terms comp = series(comp, roll_off) add high frequency roll off to comp NOTE: This just includes 5 roll off terms. Does NOT include all pass term in Plant P given on Exam#2 Spring 2016 Problem 1 statement. PM computed in this mfile will therefore be bigger!...off by about 2*atan(7/100)*180/pi = degrees zpk(comp) [comp_mag, comp_phase] = bode(comp, w); figure(20)

5 5 semilogx(w,20*log10(comp_mag(1,:)) ) title( CONTROLLER: K ) figure(21) semilogx(w,comp_phase(1,:),w, -180, r-. ) title( CONTROLLER: K ) ylabel( Phase (degrees) ) OPEN LOOP: L = PK loop = series(plant,comp) zpk(loop) [loop_mag, loop_phase] = bode(loop, w); figure(30) semilogx(w,20*log10(loop_mag(1,:)) ) title( LOOP: PK ) figure(31) semilogx(w,loop_phase(1,:), w, -180, r-. ) title( LOOP: PK ) ylabel( Phase (degrees) ) figure(32) bode(loop, w) allmargin(loop) SENSITIVITY: S = 1 / (1 + PK) sen = feedback(1,loop) Form sensitivity eig(sen) closed loop poles [sen_mag, sen_phase] = bode(sen, w); figure(40) semilogx(w,20*log10(sen_mag(1,:)),w, 6, r-- ) title( SENSITIVITY: S = 1 / (1 + L) ) axis([ ])

6 6 COMPLEMENTARY SENSITIVITY: T = L / (1 + PK) compsen = feedback(loop,1) Form complementary sensitivity eig(compsen) closed loop poles [compsen_mag, compsen_phase] = bode(compsen, w); figure(50) semilogx(w,20*log10(compsen_mag(1,:)),w, 6, r-- ) title( COMPLEMENTARY SENSITIVITY: T = L / (1 + L) ) axis([ ]) KS ksen = feedback(comp,plant) Form KS eig(ksen) closed loop poles [ksen_mag, ksen_phase] = bode(ksen, w); figure(60) semilogx(w,20*log10(ksen_mag(1,:)), w, 20, r--, w, 40, r-- ) title( KS ) axis([ ]) SP psen = feedback(plant, comp) Form SP eig(psen) closed loop poles [psen_mag, psen_phase] = bode(psen, w); figure(70) semilogx(w,20*log10(psen_mag(1,:)), w,-40, r-- ) title( SP ) axis([ ]) CLOSED LOOP STEP RESPONSE figure(100)

7 7 t = 0:.001:10; Vector of time points num_tpoints = size(t)*[0 1] ref_command = ones(1, num_tpoints); prefilter = tf(co/c3, [ 1 c2/c3 c1/c3 co/c3 ] ) zpk(prefilter) filtref_command = lsim(prefilter,ref_command, t); Filtered Reference Command y = lsim(compsen,ref_command, t); u = lsim(ksen, ref_command, t); y_filt = lsim(compsen,filtref_command, t); u_filt = lsim(ksen, filtref_command, t); plot(t,y,t,y_filt) title( Output Response to Step Reference (Filtered and Unfiltered) ) xlabel( Time (sec) ) ylabel( Output: y ) figure(101) plot(t,u,t,u_filt) title( Control Response to Step Reference (Filtered and Unfiltered) ) xlabel( Time (sec) ) ylabel( Control: u ) axis([ ]) ROOT LOCUS figure(200) k = 0:.001:20; rlocus(loop,k) axis([ ]) figure(210) rlocus(loop,k) axis([ ]) ************************************************************************** NOMINAL LOOP AT LOW FREQUENCIES compnom_num = [ c3 c2 c1 co] compnom_den = [ 1 0 0]

8 8 compnom = tf (compnom_num,compnom_den) [compnom_mag, compnom_phase] = bode(compnom, w); figure(20) semilogx(w,20*log10(comp_mag(1,:)), w,20*log10(compnom_mag(1,:)) ) title( CONTROLLER: K ) figure(21) semilogx(w,comp_phase(1,:),w, -180, r-., w,compnom_phase(1,:) ) title( CONTROLLER: K ) ylabel( Phase (degrees) ) OPEN LOOP: L = PK loopnom = series(plant, compnom); zpk(loopnom) allmargin(loopnom) damp(eig(1/(1+loopnom))) [loopnom_mag, loopnom_phase] = bode(loopnom, w); figure(30) semilogx(w,20*log10(loop_mag(1,:)), w,20*log10(loopnom_mag(1,:)), w, -20, r--, w, 0, r--, w, 20, r-- title( LOOP: PK ) figure(31) semilogx(w,loop_phase(1,:), w,loopnom_phase(1,:), w, -180, r-. ) title( LOOP: PK ) ylabel( Phase (degrees) ) SENSITIVITY: S = 1 / (1 + PK) sennom = feedback(1,loopnom) Form sensitivity eig(sennom) closed loop poles

9 9 [sennom_mag, sennom_phase] = bode(sennom, w); figure(40) semilogx(w,20*log10(sen_mag(1,:)),w, 6, r--, w,20*log10(sennom_mag(1,:)), w, -20, r-- ) title( SENSITIVITY: S = 1 / (1 + L) ) axis([ ]) COMPLEMENTARY SENSITIVITY: T = L / (1 + PK) compsennom = feedback(loopnom,1) Form complementary sensitivity eig(compsennom) closed loop poles [compsennom_mag, compsennom_phase] = bode(compsennom, w); figure(50) semilogx(w,20*log10(compsen_mag(1,:)),w, 6, r--, w,20*log10(compsennom_mag(1,:)), w, -20, r-- ) title( COMPLEMENTARY SENSITIVITY: T = L / (1 + L) ) axis([ ]) [Gm,Pm,Wcg,Wcp] = margin(loop) figure(55) semilogx(w,20*log10(sen_mag(1,:)),w,20*log10(compsen_mag(1,:)), w, 20*log10(Gm), r--, w,20*log10(s title( SENS AND COMP SENSITIVITY: S = 1 / (1 + L), T = L / (1 + L) ) axis([ ]) KS ksennom = feedback(compnom,plant) Form KS eig(ksennom) closed loop poles [ksennom_mag, ksennom_phase] = bode(ksennom, w); figure(60) semilogx(w,20*log10(ksen_mag(1,:)), w, 20, r--, w, 40, r--, w,20*log10(ksennom_mag(1,:)) ) title( KS ) axis([ ])

10 10 SP psennom = feedback(plant, compnom) Form SP eig(psennom) closed loop poles [psennom_mag, psennom_phase] = bode(psennom, w); figure(70) semilogx(w,20*log10(psen_mag(1,:)), w,20*log10(psennom_mag(1,:)), w,-40, r-- ) title( SP ) axis([ ]) CLOSED LOOP STEP RESPONSE ynom = lsim(compsennom,ref_command, t); unom = lsim(ksennom, ref_command, t); CANT SIMULATE WITHOUT ROLLOFF IN K ynom_filt = lsim(compsennom,filtref_command, t); unom_filt = lsim(ksennom, filtref_command, t); CANT SIMULATE WITHOUT ROLLOFFIN K figure(100) plot(t,y,t,y_filt, t,ynom,t,ynom_filt) title( Output Response to Step Reference (Filtered and Unfiltered) ) xlabel( Time (sec) ) ylabel( Output: y ) figure(101) plot(t,u,t,u_filt) title( Control Response to Step Reference (Filtered and Unfiltered) ) xlabel( Time (sec) ) ylabel( Control: u ) axis([ ]) DESIGN DATA zpk(loop) damp(comp_zeros) allmargin(loop) eig(sen) damp(eig(sen)) FLAG FLAGAPPROX c3 c2

11 11 c1 co zpk(loopnom) allmargin(loopnom) damp(eig(1/(1+loopnom))) ************************************************************************* ************************************************************************* ************************************************************************* EEE480 FINAL SPRING PROBLEMS 1-4 DID NOT APPROXIMATED HIGH FREQUENCY POLES LOOP Zero/pole/gain: (s+1.93) (s^ s ) s^2 (s+400)^4 (s-1)^2 = 10 (s+1.93) (s^ s ) (400)^ s^2 (s-1)^2 (s+400)^4 CONTROLLER ZEROS Eigenvalue Damping Freq. (rad/s) -1.93e e e e e+000i 5.81e e e e+000i 5.81e e+000 ALLMARGINS GainMargin: [ ] GMFrequency: [ e+002] PhaseMargin: PMFrequency: DelayMargin: DMFrequency: Stable: 1 CLOSED LOOP POLES 1.0e+002 *

12 i i i i i i CLOSED LOOP POLES Eigenvalue Damping Freq. (rad/s) -5.47e e e e e+002i 9.37e e e e+002i 9.37e e e e e e e+000i 6.14e e e e+000i 6.14e e e e+000i 7.05e e e e+000i 7.05e e+000 FLAG = 1 FLAGAPPROX = 0 CONTROLER COEFFICIENTS c3 = 10 c2 = 38 c1 = 62 co = 50 ************************************************************************* ************************************************************************* ************************************************************************* EEE480 FINAL SPRING 2016 NOMINAL LOOP Zero/pole/gain: 10 (s+1.93) (s^ s ) s^2 (s-1)^2 ALL MARGINS GainMargin: [ ] GMFrequency: [ ]

13 13 PhaseMargin: PMFrequency: DelayMargin: DMFrequency: Stable: 1 NOMINAL CLOSED LOOP POLES Eigenvalue Damping Freq. (rad/s) -3.00e e+000i 6.00e e e e+000i 6.00e e e e+000i 7.07e e e e+000i 7.07e e+000 ************************************************************************* ************************************************************************* ************************************************************************* EEE480 FINAL SPRING 2016 APPROXIMATED HIGH FREQUENCY POLES - using BIG HIGH FREQ POLE NUMBERS LOOP Zero/pole/gain: (s+1.93) (s^ s ) s^2 (s+1.04e004)^4 (s-1)^2 10 (s+1.93) (s^ s ) (10400)^4 = s^2 (s-1)^2 (s+10400)^4 CONTROLLER ZEROS Eigenvalue Damping Freq. (rad/s) -1.93e e e e e+000i 5.81e e e e+000i 5.81e e+000 ALL MARGINS GainMargin: [ e+002] GMFrequency: [ e+003] PhaseMargin: PMFrequency: DelayMargin: DMFrequency: Stable: 1

14 14 CLOSED LOOP POLES 1.0e+004 * i i i i i i CLOSED LOOP POLES (NICE "EXAM" NUMBERS!!!!) Eigenvalue Damping Freq. (rad/s) -1.22e e e e e+003i 9.85e e e e+003i 9.85e e e e e e e+000i 6.00e e e e+000i 6.00e e e e+000i 7.07e e e e+000i 7.07e e+000 FLAG = 1 FLAGAPPROX = 1 CONTROLER COEFFICIENTS c3 = 10 c2 = 38 c1 = 62 co = 50 ************************************************************************* ************************************************************************* ************************************************************************* EEE480 EXAM#2 SPRING PROBLEMS 1-4 APPROXIMATED HIGH FREQUENCY POLES - using BIG HIGH FREQ POLE NUMBERS LOOP

15 Zero/pole/gain: (s+1.304) (s^ s ) s^3 (s+1.01e004)^5 (s-1) 7 (s+1.304) (s^ s ) (1.01e004)^5 = s^3 (s-1) (s+1.01e004)^5 COMPENSATOR ZEROS Eigenvalue Damping Freq. (rad/s) -1.30e e e e e+000i 4.09e e e e+000i 4.09e e+000 ALL MARGINS GainMargin: [ Inf] GMFrequency: [ e+003 Inf] PhaseMargin: PMFrequency: DelayMargin: DMFrequency: Stable: 1 CLOSED LOOP POLES 1.0e+004 * i i i i i i i i CLOSED LOOP POLES Eigenvalue Damping Freq. (rad/s) -1.20e e+003i 9.94e e e e+003i 9.94e e e e+003i 9.72e e e e+003i 9.72e e e e e e e+000i 8.01e e

16 e e+000i 8.01e e e e+000i 6.00e e e e+000i 6.00e e+000 FLAG = 1 FLAGAPPROX = 1 CONTROLLER COEFFICIENTS c3 = 7 c2 = c1 = co = ************************************************************************* ************************************************************************* ************************************************************************* EEE480 EXAM#2 SPRING PROBLEMS 1-4 DID NOT APPROXIMATE HIGH FREQUENCY POLES LOOP Zero/pole/gain: (s+1.304) (s^ s ) s^3 (s+100)^5 (s-1) 7 (s+1.304) (s^ s ) (100)^5 = s^3 (s-1) (s+100)^5 COMPENSATOR ZEROS Eigenvalue Damping Freq. (rad/s) -1.30e e e e e+000i 4.09e e e e+000i 4.09e e+000 ALL MARGINS GainMargin: [ Inf] GMFrequency: [ Inf] PhaseMargin: PMFrequency: DelayMargin: DMFrequency: Stable: 1

17 17 CLOSED LOOP POLES 1.0e+002 * i i i i i i i i CLOSED LOOP POLES Eigenvalue Damping Freq. (rad/s) -1.45e e+001i 9.79e e e e+001i 9.79e e e e+001i 8.42e e e e+001i 8.42e e e e e e e+000i 9.48e e e e+000i 9.48e e e e+000i 5.86e e e e+000i 5.86e e+000 FLAG = 1 FLAGAPPROX = 0 CONTROLLER COEFFICIENTS c3 = 7 c2 = c1 = co = ************************************************************************* ************************************************************************* ************************************************************************* EEE480 EXAM#2 FALL 2015 Zero/pole/gain: (s+1) (s^ s )

18 s^2 (s+90)^5 (s^2-2s + 2) 7 (s+1) (s^ s ) 90^5 = s^2 (s^2-2s + 2) (s+90)^5 Eigenvalue Damping Freq. (rad/s) -1.00e e e e e-001i 6.30e e e e-001i 6.30e e-001 ans = GainMargin: [ Inf] GMFrequency: [ Inf] PhaseMargin: PMFrequency: DelayMargin: DMFrequency: Stable: 1 ans = 1.0e+002 * i i i i i i i i Eigenvalue Damping Freq. (rad/s) -1.31e e+001i 9.79e e e e+001i 9.79e e e e+001i 8.36e e e e+001i 8.36e e e e e e e+000i 6.01e e e e+000i 6.01e e e e-001i 7.04e e e e-001i 7.04e e-001 FLAG =

19 19 1 FLAGAPPROX = 0 c3 = 7 c2 = c1 = 15 co = ************************************************************************* ************************************************************************* ************************************************************************* EEE480 FINAL SPRING 2015 Zero/pole/gain: (s ) (s^ s ) s^2 (s+70)^5 (s-2) (s-1) 10 (s ) (s^ s ) 70^5 = s^2 (s+70)^5 (s-2) (s-1) (s+70)^5 Eigenvalue Damping Freq. (rad/s) -5.18e e-001i 5.59e e e e-001i 5.59e e e e e-001 ans =

20 20 GainMargin: [ Inf] GMFrequency: [ Inf] PhaseMargin: PMFrequency: DelayMargin: DMFrequency: Stable: 1 ans = 1.0e+002 * i i i i i i i i Eigenvalue Damping Freq. (rad/s) -1.06e e+001i 9.76e e e e+001i 9.76e e e e+001i 8.03e e e e+001i 8.03e e e e+000i 4.21e e e e+000i 4.21e e e e e e e-001i 7.01e e e e-001i 7.01e e-001 FLAG = 1 FLAGAPPROX = 0 Zero/pole/gain: (s ) (s^ s ) s^2 (s+70)^4 (s-2) (s-1)

21 10 (s ) (s^ s ) 70^4 = s^2 (s-2) (s-1) (s+70)^4 Eigenvalue Damping Freq. (rad/s) -5.18e e-001i 5.59e e e e-001i 5.59e e e e e-001 ans = GainMargin: [ ] GMFrequency: [ ] PhaseMargin: PMFrequency: DelayMargin: DMFrequency: Stable: 1 ans = 1.0e+002 * i i i i i i Eigenvalue Damping Freq. (rad/s) -1.08e e e e e+001i 8.81e e e e+001i 8.81e e e e+000i 6.58e e e e+000i 6.58e e e e e e e-001i 7.02e e e e-001i 7.02e e-001 FLAG = 1 FLAGAPPROX = 21

22 22 0 Zero/pole/gain: (s ) (s^ s ) s^2 (s+1.007e004)^4 (s-2) (s-1) = 10 (s ) (s^ s ) (1.007e004)^ s^2 (s-2) (s-1) (s+1.007e004)^4 Eigenvalue Damping Freq. (rad/s) -5.18e e-001i 5.59e e e e-001i 5.59e e e e e-001 ans = GainMargin: [ ] GMFrequency: [ e+003] PhaseMargin: PMFrequency: DelayMargin: DMFrequency: Stable: 1 ans = 1.0e+004 * i i i i i i Eigenvalue Damping Freq. (rad/s) -1.18e e e e e+003i 9.85e e e e+003i 9.85e e e e e e e+000i 8.01e e e e+000i 8.01e e e e-001i 7.07e e-001

23 -5.00e e-001i 7.07e e-001 FLAG = 1 FLAGAPPROX = 1 23

] [ 200. ] 3 [ 10 4 s. [ ] s + 10 [ P = s [ 10 8 ] 3. s s (s 1)(s 2) series compensator ] 2. s command pre-filter [ 0.

] [ 200. ] 3 [ 10 4 s. [ ] s + 10 [ P = s [ 10 8 ] 3. s s (s 1)(s 2) series compensator ] 2. s command pre-filter [ 0. EEE480 Exam 2, Spring 204 A.A. Rodriguez Rules: Calculators permitted, One 8.5 sheet, closed notes/books, open minds GWC 352, 965-372 Problem (Analysis of a Feedback System) Consider the feedback system

More information

IMPACT OF PLANT COUPLING ON DECENTRALIZED PI CONTROL LAW. Date: 08/30/2016

IMPACT OF PLANT COUPLING ON DECENTRALIZED PI CONTROL LAW. Date: 08/30/2016 IMPACT OF PLANT COUPLING ON DECENTRALIZED PI CONTROL LAW Date: 8/3/216 1 / 37 Standard Negative Feedback System With Pre-Filter d i input disturbance d o output disturbance r reference command W Pre-Filter

More information

ECE382/ME482 Spring 2005 Homework 7 Solution April 17, K(s + 0.2) s 2 (s + 2)(s + 5) G(s) =

ECE382/ME482 Spring 2005 Homework 7 Solution April 17, K(s + 0.2) s 2 (s + 2)(s + 5) G(s) = ECE382/ME482 Spring 25 Homework 7 Solution April 17, 25 1 Solution to HW7 AP9.5 We are given a system with open loop transfer function G(s) = K(s +.2) s 2 (s + 2)(s + 5) (1) and unity negative feedback.

More information

Stability of CL System

Stability of CL System Stability of CL System Consider an open loop stable system that becomes unstable with large gain: At the point of instability, K( j) G( j) = 1 0dB K( j) G( j) K( j) G( j) K( j) G( j) =± 180 o 180 o Closed

More information

Systems Analysis and Control

Systems Analysis and Control Systems Analysis and Control Matthew M. Peet Arizona State University Lecture 24: Compensation in the Frequency Domain Overview In this Lecture, you will learn: Lead Compensators Performance Specs Altering

More information

Today (10/23/01) Today. Reading Assignment: 6.3. Gain/phase margin lead/lag compensator Ref. 6.4, 6.7, 6.10

Today (10/23/01) Today. Reading Assignment: 6.3. Gain/phase margin lead/lag compensator Ref. 6.4, 6.7, 6.10 Today Today (10/23/01) Gain/phase margin lead/lag compensator Ref. 6.4, 6.7, 6.10 Reading Assignment: 6.3 Last Time In the last lecture, we discussed control design through shaping of the loop gain GK:

More information

Exercise 1 (A Non-minimum Phase System)

Exercise 1 (A Non-minimum Phase System) Prof. Dr. E. Frazzoli 5-59- Control Systems I (HS 25) Solution Exercise Set Loop Shaping Noele Norris, 9th December 26 Exercise (A Non-minimum Phase System) To increase the rise time of the system, we

More information

Exercise 1 (A Non-minimum Phase System)

Exercise 1 (A Non-minimum Phase System) Prof. Dr. E. Frazzoli 5-59- Control Systems I (Autumn 27) Solution Exercise Set 2 Loop Shaping clruch@ethz.ch, 8th December 27 Exercise (A Non-minimum Phase System) To decrease the rise time of the system,

More information

Digital Control Systems

Digital Control Systems Digital Control Systems Lecture Summary #4 This summary discussed some graphical methods their use to determine the stability the stability margins of closed loop systems. A. Nyquist criterion Nyquist

More information

Engraving Machine Example

Engraving Machine Example Engraving Machine Example MCE44 - Fall 8 Dr. Richter November 24, 28 Basic Design The X-axis of the engraving machine has the transfer function G(s) = s(s + )(s + 2) In this basic example, we use a proportional

More information

Homework 7 - Solutions

Homework 7 - Solutions Homework 7 - Solutions Note: This homework is worth a total of 48 points. 1. Compensators (9 points) For a unity feedback system given below, with G(s) = K s(s + 5)(s + 11) do the following: (c) Find the

More information

Systems Analysis and Control

Systems Analysis and Control Systems Analysis and Control Matthew M. Peet Arizona State University Lecture 21: Stability Margins and Closing the Loop Overview In this Lecture, you will learn: Closing the Loop Effect on Bode Plot Effect

More information

ELECTRONICS & COMMUNICATIONS DEP. 3rd YEAR, 2010/2011 CONTROL ENGINEERING SHEET 5 Lead-Lag Compensation Techniques

ELECTRONICS & COMMUNICATIONS DEP. 3rd YEAR, 2010/2011 CONTROL ENGINEERING SHEET 5 Lead-Lag Compensation Techniques CAIRO UNIVERSITY FACULTY OF ENGINEERING ELECTRONICS & COMMUNICATIONS DEP. 3rd YEAR, 00/0 CONTROL ENGINEERING SHEET 5 Lead-Lag Compensation Techniques [] For the following system, Design a compensator such

More information

CDS 101/110a: Lecture 8-1 Frequency Domain Design

CDS 101/110a: Lecture 8-1 Frequency Domain Design CDS 11/11a: Lecture 8-1 Frequency Domain Design Richard M. Murray 17 November 28 Goals: Describe canonical control design problem and standard performance measures Show how to use loop shaping to achieve

More information

Chapter 2. Classical Control System Design. Dutch Institute of Systems and Control

Chapter 2. Classical Control System Design. Dutch Institute of Systems and Control Chapter 2 Classical Control System Design Overview Ch. 2. 2. Classical control system design Introduction Introduction Steady-state Steady-state errors errors Type Type k k systems systems Integral Integral

More information

6.1 Sketch the z-domain root locus and find the critical gain for the following systems K., the closed-loop characteristic equation is K + z 0.

6.1 Sketch the z-domain root locus and find the critical gain for the following systems K., the closed-loop characteristic equation is K + z 0. 6. Sketch the z-domain root locus and find the critical gain for the following systems K (i) Gz () z 4. (ii) Gz K () ( z+ 9. )( z 9. ) (iii) Gz () Kz ( z. )( z ) (iv) Gz () Kz ( + 9. ) ( z. )( z 8. ) (i)

More information

ECE 486 Control Systems

ECE 486 Control Systems ECE 486 Control Systems Spring 208 Midterm #2 Information Issued: April 5, 208 Updated: April 8, 208 ˆ This document is an info sheet about the second exam of ECE 486, Spring 208. ˆ Please read the following

More information

CHAPTER 7 : BODE PLOTS AND GAIN ADJUSTMENTS COMPENSATION

CHAPTER 7 : BODE PLOTS AND GAIN ADJUSTMENTS COMPENSATION CHAPTER 7 : BODE PLOTS AND GAIN ADJUSTMENTS COMPENSATION Objectives Students should be able to: Draw the bode plots for first order and second order system. Determine the stability through the bode plots.

More information

Frequency Response Techniques

Frequency Response Techniques 4th Edition T E N Frequency Response Techniques SOLUTION TO CASE STUDY CHALLENGE Antenna Control: Stability Design and Transient Performance First find the forward transfer function, G(s). Pot: K 1 = 10

More information

(b) A unity feedback system is characterized by the transfer function. Design a suitable compensator to meet the following specifications:

(b) A unity feedback system is characterized by the transfer function. Design a suitable compensator to meet the following specifications: 1. (a) The open loop transfer function of a unity feedback control system is given by G(S) = K/S(1+0.1S)(1+S) (i) Determine the value of K so that the resonance peak M r of the system is equal to 1.4.

More information

ECSE 4962 Control Systems Design. A Brief Tutorial on Control Design

ECSE 4962 Control Systems Design. A Brief Tutorial on Control Design ECSE 4962 Control Systems Design A Brief Tutorial on Control Design Instructor: Professor John T. Wen TA: Ben Potsaid http://www.cat.rpi.edu/~wen/ecse4962s04/ Don t Wait Until The Last Minute! You got

More information

Classify a transfer function to see which order or ramp it can follow and with which expected error.

Classify a transfer function to see which order or ramp it can follow and with which expected error. Dr. J. Tani, Prof. Dr. E. Frazzoli 5-059-00 Control Systems I (Autumn 208) Exercise Set 0 Topic: Specifications for Feedback Systems Discussion: 30.. 208 Learning objectives: The student can grizzi@ethz.ch,

More information

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING KINGS COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING QUESTION BANK SUB.NAME : CONTROL SYSTEMS BRANCH : ECE YEAR : II SEMESTER: IV 1. What is control system? 2. Define open

More information

Dynamic Compensation using root locus method

Dynamic Compensation using root locus method CAIRO UNIVERSITY FACULTY OF ENGINEERING ELECTRONICS & COMMUNICATIONS DEP. 3rd YEAR, 00/0 CONTROL ENGINEERING SHEET 9 Dynamic Compensation using root locus method [] (Final00)For the system shown in the

More information

MEM 355 Performance Enhancement of Dynamical Systems

MEM 355 Performance Enhancement of Dynamical Systems MEM 355 Performance Enhancement of Dynamical Systems Frequency Domain Design Intro Harry G. Kwatny Department of Mechanical Engineering & Mechanics Drexel University /5/27 Outline Closed Loop Transfer

More information

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam!

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Prüfung Regelungstechnik I (Control Systems I) Prof. Dr. Lino Guzzella 3.. 24 Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Do not mark up this translation aid -

More information

MEM 355 Performance Enhancement of Dynamical Systems

MEM 355 Performance Enhancement of Dynamical Systems MEM 355 Performance Enhancement of Dynamical Systems Frequency Domain Design Harry G. Kwatny Department of Mechanical Engineering & Mechanics Drexel University 5/8/25 Outline Closed Loop Transfer Functions

More information

Frequency (rad/s)

Frequency (rad/s) . The frequency response of the plant in a unity feedback control systems is shown in Figure. a) What is the static velocity error coefficient K v for the system? b) A lead compensator with a transfer

More information

Mechanical Systems Part A: State-Space Systems Lecture AL12

Mechanical Systems Part A: State-Space Systems Lecture AL12 AL: 436-433 Mechanical Systems Part A: State-Space Systems Lecture AL Case study Case study AL: Design of a satellite attitude control system see Franklin, Powell & Emami-Naeini, Ch. 9. Requirements: accurate

More information

MAS107 Control Theory Exam Solutions 2008

MAS107 Control Theory Exam Solutions 2008 MAS07 CONTROL THEORY. HOVLAND: EXAM SOLUTION 2008 MAS07 Control Theory Exam Solutions 2008 Geir Hovland, Mechatronics Group, Grimstad, Norway June 30, 2008 C. Repeat question B, but plot the phase curve

More information

Outline. Classical Control. Lecture 1

Outline. Classical Control. Lecture 1 Outline Outline Outline 1 Introduction 2 Prerequisites Block diagram for system modeling Modeling Mechanical Electrical Outline Introduction Background Basic Systems Models/Transfers functions 1 Introduction

More information

MAE 143B - Homework 9

MAE 143B - Homework 9 MAE 43B - Homework 9 7.2 2 2 3.8.6.4.2.2 9 8 2 2 3 a) G(s) = (s+)(s+).4.6.8.2.2.4.6.8. Polar plot; red for negative ; no encirclements of, a.s. under unit feedback... 2 2 3. 4 9 2 2 3 h) G(s) = s+ s(s+)..2.4.6.8.2.4

More information

(a) Find the transfer function of the amplifier. Ans.: G(s) =

(a) Find the transfer function of the amplifier. Ans.: G(s) = 126 INTRDUCTIN T CNTR ENGINEERING 10( s 1) (a) Find the transfer function of the amplifier. Ans.: (. 02s 1)(. 001s 1) (b) Find the expected percent overshoot for a step input for the closed-loop system

More information

R a) Compare open loop and closed loop control systems. b) Clearly bring out, from basics, Force-current and Force-Voltage analogies.

R a) Compare open loop and closed loop control systems. b) Clearly bring out, from basics, Force-current and Force-Voltage analogies. SET - 1 II B. Tech II Semester Supplementary Examinations Dec 01 1. a) Compare open loop and closed loop control systems. b) Clearly bring out, from basics, Force-current and Force-Voltage analogies..

More information

CDS 101/110 Homework #7 Solution

CDS 101/110 Homework #7 Solution Amplitude Amplitude CDS / Homework #7 Solution Problem (CDS, CDS ): (5 points) From (.), k i = a = a( a)2 P (a) Note that the above equation is unbounded, so it does not make sense to talk about maximum

More information

Loop shaping exercise

Loop shaping exercise Loop shaping exercise Excerpt 1 from Controlli Automatici - Esercizi di Sintesi, L. Lanari, G. Oriolo, EUROMA - La Goliardica, 1997. It s a generic book with some typical problems in control, not a collection

More information

Exercises for lectures 13 Design using frequency methods

Exercises for lectures 13 Design using frequency methods Exercises for lectures 13 Design using frequency methods Michael Šebek Automatic control 2016 31-3-17 Setting of the closed loop bandwidth At the transition frequency in the open loop is (from definition)

More information

1 (20 pts) Nyquist Exercise

1 (20 pts) Nyquist Exercise EE C128 / ME134 Problem Set 6 Solution Fall 2011 1 (20 pts) Nyquist Exercise Consider a close loop system with unity feedback. For each G(s), hand sketch the Nyquist diagram, determine Z = P N, algebraically

More information

ECE382/ME482 Spring 2005 Homework 6 Solution April 17, (s/2 + 1) s(2s + 1)[(s/8) 2 + (s/20) + 1]

ECE382/ME482 Spring 2005 Homework 6 Solution April 17, (s/2 + 1) s(2s + 1)[(s/8) 2 + (s/20) + 1] ECE382/ME482 Spring 25 Homework 6 Solution April 17, 25 1 Solution to HW6 P8.17 We are given a system with open loop transfer function G(s) = 4(s/2 + 1) s(2s + 1)[(s/8) 2 + (s/2) + 1] (1) and unity negative

More information

CHAPTER 7 STEADY-STATE RESPONSE ANALYSES

CHAPTER 7 STEADY-STATE RESPONSE ANALYSES CHAPTER 7 STEADY-STATE RESPONSE ANALYSES 1. Introduction The steady state error is a measure of system accuracy. These errors arise from the nature of the inputs, system type and from nonlinearities of

More information

Answers to multiple choice questions

Answers to multiple choice questions Answers to multiple choice questions Chapter 2 M2.1 (b) M2.2 (a) M2.3 (d) M2.4 (b) M2.5 (a) M2.6 (b) M2.7 (b) M2.8 (c) M2.9 (a) M2.10 (b) Chapter 3 M3.1 (b) M3.2 (d) M3.3 (d) M3.4 (d) M3.5 (c) M3.6 (c)

More information

ECE382/ME482 Spring 2005 Homework 8 Solution December 11,

ECE382/ME482 Spring 2005 Homework 8 Solution December 11, ECE382/ME482 Spring 25 Homework 8 Solution December 11, 27 1 Solution to HW8 P1.21 We are given a system with open loop transfer function G(s) = K s(s/2 + 1)(s/6 + 1) and unity negative feedback. We are

More information

R10 JNTUWORLD B 1 M 1 K 2 M 2. f(t) Figure 1

R10 JNTUWORLD B 1 M 1 K 2 M 2. f(t) Figure 1 Code No: R06 R0 SET - II B. Tech II Semester Regular Examinations April/May 03 CONTROL SYSTEMS (Com. to EEE, ECE, EIE, ECC, AE) Time: 3 hours Max. Marks: 75 Answer any FIVE Questions All Questions carry

More information

VALLIAMMAI ENGINEERING COLLEGE SRM Nagar, Kattankulathur

VALLIAMMAI ENGINEERING COLLEGE SRM Nagar, Kattankulathur VALLIAMMAI ENGINEERING COLLEGE SRM Nagar, Kattankulathur 603 203. DEPARTMENT OF ELECTRONICS & COMMUNICATION ENGINEERING SUBJECT QUESTION BANK : EC6405 CONTROL SYSTEM ENGINEERING SEM / YEAR: IV / II year

More information

EE 4343/ Control System Design Project LECTURE 10

EE 4343/ Control System Design Project LECTURE 10 Copyright S. Ikenaga 998 All rights reserved EE 4343/5329 - Control System Design Project LECTURE EE 4343/5329 Homepage EE 4343/5329 Course Outline Design of Phase-lead and Phase-lag compensators using

More information

9. Two-Degrees-of-Freedom Design

9. Two-Degrees-of-Freedom Design 9. Two-Degrees-of-Freedom Design In some feedback schemes we have additional degrees-offreedom outside the feedback path. For example, feed forwarding known disturbance signals or reference signals. In

More information

EE 380 EXAM II 3 November 2011 Last Name (Print): First Name (Print): ID number (Last 4 digits): Section: DO NOT TURN THIS PAGE UNTIL YOU ARE TOLD TO

EE 380 EXAM II 3 November 2011 Last Name (Print): First Name (Print): ID number (Last 4 digits): Section: DO NOT TURN THIS PAGE UNTIL YOU ARE TOLD TO EE 380 EXAM II 3 November 2011 Last Name (Print): First Name (Print): ID number (Last 4 digits): Section: DO NOT TURN THIS PAGE UNTIL YOU ARE TOLD TO DO SO Problem Weight Score 1 25 2 25 3 25 4 25 Total

More information

ME 475/591 Control Systems Final Exam Fall '99

ME 475/591 Control Systems Final Exam Fall '99 ME 475/591 Control Systems Final Exam Fall '99 Closed book closed notes portion of exam. Answer 5 of the 6 questions below (20 points total) 1) What is a phase margin? Under ideal circumstances, what does

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering Dynamics and Control II Fall 2007

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering Dynamics and Control II Fall 2007 MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering.4 Dynamics and Control II Fall 7 Problem Set #9 Solution Posted: Sunday, Dec., 7. The.4 Tower system. The system parameters are

More information

Department of Electronics and Instrumentation Engineering M. E- CONTROL AND INSTRUMENTATION ENGINEERING CL7101 CONTROL SYSTEM DESIGN Unit I- BASICS AND ROOT-LOCUS DESIGN PART-A (2 marks) 1. What are the

More information

FREQUENCY-RESPONSE DESIGN

FREQUENCY-RESPONSE DESIGN ECE45/55: Feedback Control Systems. 9 FREQUENCY-RESPONSE DESIGN 9.: PD and lead compensation networks The frequency-response methods we have seen so far largely tell us about stability and stability margins

More information

DESIGN USING TRANSFORMATION TECHNIQUE CLASSICAL METHOD

DESIGN USING TRANSFORMATION TECHNIQUE CLASSICAL METHOD 206 Spring Semester ELEC733 Digital Control System LECTURE 7: DESIGN USING TRANSFORMATION TECHNIQUE CLASSICAL METHOD For a unit ramp input Tz Ez ( ) 2 ( z ) D( z) G( z) Tz e( ) lim( z) z 2 ( z ) D( z)

More information

Exam. 135 minutes + 15 minutes reading time

Exam. 135 minutes + 15 minutes reading time Exam January 23, 27 Control Systems I (5-59-L) Prof. Emilio Frazzoli Exam Exam Duration: 35 minutes + 5 minutes reading time Number of Problems: 45 Number of Points: 53 Permitted aids: Important: 4 pages

More information

EE C128 / ME C134 Fall 2014 HW 8 - Solutions. HW 8 - Solutions

EE C128 / ME C134 Fall 2014 HW 8 - Solutions. HW 8 - Solutions EE C28 / ME C34 Fall 24 HW 8 - Solutions HW 8 - Solutions. Transient Response Design via Gain Adjustment For a transfer function G(s) = in negative feedback, find the gain to yield a 5% s(s+2)(s+85) overshoot

More information

Active Control? Contact : Website : Teaching

Active Control? Contact : Website :   Teaching Active Control? Contact : bmokrani@ulb.ac.be Website : http://scmero.ulb.ac.be Teaching Active Control? Disturbances System Measurement Control Controler. Regulator.,,, Aims of an Active Control Disturbances

More information

Controls Problems for Qualifying Exam - Spring 2014

Controls Problems for Qualifying Exam - Spring 2014 Controls Problems for Qualifying Exam - Spring 2014 Problem 1 Consider the system block diagram given in Figure 1. Find the overall transfer function T(s) = C(s)/R(s). Note that this transfer function

More information

Outline. Classical Control. Lecture 5

Outline. Classical Control. Lecture 5 Outline Outline Outline 1 What is 2 Outline What is Why use? Sketching a 1 What is Why use? Sketching a 2 Gain Controller Lead Compensation Lag Compensation What is Properties of a General System Why use?

More information

r + - FINAL June 12, 2012 MAE 143B Linear Control Prof. M. Krstic

r + - FINAL June 12, 2012 MAE 143B Linear Control Prof. M. Krstic MAE 43B Linear Control Prof. M. Krstic FINAL June, One sheet of hand-written notes (two pages). Present your reasoning and calculations clearly. Inconsistent etchings will not be graded. Write answers

More information

100 (s + 10) (s + 100) e 0.5s. s 100 (s + 10) (s + 100). G(s) =

100 (s + 10) (s + 100) e 0.5s. s 100 (s + 10) (s + 100). G(s) = 1 AME 3315; Spring 215; Midterm 2 Review (not graded) Problems: 9.3 9.8 9.9 9.12 except parts 5 and 6. 9.13 except parts 4 and 5 9.28 9.34 You are given the transfer function: G(s) = 1) Plot the bode plot

More information

LINEAR CONTROL SYSTEMS. Ali Karimpour Associate Professor Ferdowsi University of Mashhad

LINEAR CONTROL SYSTEMS. Ali Karimpour Associate Professor Ferdowsi University of Mashhad LINEAR CONTROL SYSTEMS Ali Karimpour Associate Professor Ferdowsi University of Mashhad Controller design in the frequency domain Topics to be covered include: Lag controller design 2 Dr. Ali Karimpour

More information

MAE 143B - Homework 9

MAE 143B - Homework 9 MAE 143B - Homework 9 7.1 a) We have stable first-order poles at p 1 = 1 and p 2 = 1. For small values of ω, we recover the DC gain K = lim ω G(jω) = 1 1 = 2dB. Having this finite limit, our straight-line

More information

Intro to Frequency Domain Design

Intro to Frequency Domain Design Intro to Frequency Domain Design MEM 355 Performance Enhancement of Dynamical Systems Harry G. Kwatny Department of Mechanical Engineering & Mechanics Drexel University Outline Closed Loop Transfer Functions

More information

Control Systems II. ETH, MAVT, IDSC, Lecture 4 17/03/2017. G. Ducard

Control Systems II. ETH, MAVT, IDSC, Lecture 4 17/03/2017. G. Ducard Control Systems II ETH, MAVT, IDSC, Lecture 4 17/03/2017 Lecture plan: Control Systems II, IDSC, 2017 SISO Control Design 24.02 Lecture 1 Recalls, Introductory case study 03.03 Lecture 2 Cascaded Control

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering 2.04A Systems and Controls Spring 2013

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering 2.04A Systems and Controls Spring 2013 MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering 2.04A Systems and Controls Spring 2013 Problem Set #4 Posted: Thursday, Mar. 7, 13 Due: Thursday, Mar. 14, 13 1. Sketch the Root

More information

Automatic Control (MSc in Mechanical Engineering) Lecturer: Andrea Zanchettin Date: Student ID number... Signature...

Automatic Control (MSc in Mechanical Engineering) Lecturer: Andrea Zanchettin Date: Student ID number... Signature... Automatic Control (MSc in Mechanical Engineering) Lecturer: Andrea Zanchettin Date: 29..23 Given and family names......................solutions...................... Student ID number..........................

More information

Topic # Feedback Control. State-Space Systems Closed-loop control using estimators and regulators. Dynamics output feedback

Topic # Feedback Control. State-Space Systems Closed-loop control using estimators and regulators. Dynamics output feedback Topic #17 16.31 Feedback Control State-Space Systems Closed-loop control using estimators and regulators. Dynamics output feedback Back to reality Copyright 21 by Jonathan How. All Rights reserved 1 Fall

More information

If you need more room, use the backs of the pages and indicate that you have done so.

If you need more room, use the backs of the pages and indicate that you have done so. EE 343 Exam II Ahmad F. Taha Spring 206 Your Name: Your Signature: Exam duration: hour and 30 minutes. This exam is closed book, closed notes, closed laptops, closed phones, closed tablets, closed pretty

More information

Robust and Optimal Control, Spring A: SISO Feedback Control A.1 Internal Stability and Youla Parameterization

Robust and Optimal Control, Spring A: SISO Feedback Control A.1 Internal Stability and Youla Parameterization Robust and Optimal Control, Spring 2015 Instructor: Prof. Masayuki Fujita (S5-303B) A: SISO Feedback Control A.1 Internal Stability and Youla Parameterization A.2 Sensitivity and Feedback Performance A.3

More information

732 Appendix E: Previous EEE480 Exams. Rules: One sheet permitted, calculators permitted. GWC 352,

732 Appendix E: Previous EEE480 Exams. Rules: One sheet permitted, calculators permitted. GWC 352, 732 Aedix E: Previous EEE0 Exams EEE0 Exam 2, Srig 2008 A.A. Rodriguez Rules: Oe 8. sheet ermitted, calculators ermitted. GWC 32, 9-372 Problem Aalysis of a Feedback System Cosider the feedback system

More information

CDS 101/110a: Lecture 10-1 Robust Performance

CDS 101/110a: Lecture 10-1 Robust Performance CDS 11/11a: Lecture 1-1 Robust Performance Richard M. Murray 1 December 28 Goals: Describe how to represent uncertainty in process dynamics Describe how to analyze a system in the presence of uncertainty

More information

Table of Laplacetransform

Table of Laplacetransform Appendix Table of Laplacetransform pairs 1(t) f(s) oct), unit impulse at t = 0 a, a constant or step of magnitude a at t = 0 a s t, a ramp function e- at, an exponential function s + a sin wt, a sine fun

More information

(Continued on next page)

(Continued on next page) (Continued on next page) 18.2 Roots of Stability Nyquist Criterion 87 e(s) 1 S(s) = =, r(s) 1 + P (s)c(s) where P (s) represents the plant transfer function, and C(s) the compensator. The closedloop characteristic

More information

EECS C128/ ME C134 Final Thu. May 14, pm. Closed book. One page, 2 sides of formula sheets. No calculators.

EECS C128/ ME C134 Final Thu. May 14, pm. Closed book. One page, 2 sides of formula sheets. No calculators. Name: SID: EECS C28/ ME C34 Final Thu. May 4, 25 5-8 pm Closed book. One page, 2 sides of formula sheets. No calculators. There are 8 problems worth points total. Problem Points Score 4 2 4 3 6 4 8 5 3

More information

Richiami di Controlli Automatici

Richiami di Controlli Automatici Richiami di Controlli Automatici Gianmaria De Tommasi 1 1 Università degli Studi di Napoli Federico II detommas@unina.it Ottobre 2012 Corsi AnsaldoBreda G. De Tommasi (UNINA) Richiami di Controlli Automatici

More information

MAE 142 Homework #5 Due Friday, March 13, 2009

MAE 142 Homework #5 Due Friday, March 13, 2009 MAE 142 Homework #5 Due Friday, March 13, 2009 Please read through the entire homework set before beginning. Also, please label clearly your answers and summarize your findings as concisely as possible.

More information

INTRODUCTION TO DIGITAL CONTROL

INTRODUCTION TO DIGITAL CONTROL ECE4540/5540: Digital Control Systems INTRODUCTION TO DIGITAL CONTROL.: Introduction In ECE450/ECE550 Feedback Control Systems, welearnedhow to make an analog controller D(s) to control a linear-time-invariant

More information

Control Systems I Lecture 10: System Specifications

Control Systems I Lecture 10: System Specifications Control Systems I Lecture 10: System Specifications Readings: Guzzella, Chapter 10 Emilio Frazzoli Institute for Dynamic Systems and Control D-MAVT ETH Zürich November 24, 2017 E. Frazzoli (ETH) Lecture

More information

H(s) = s. a 2. H eq (z) = z z. G(s) a 2. G(s) A B. s 2 s(s + a) 2 s(s a) G(s) 1 a 1 a. } = (z s 1)( z. e ) ) (z. (z 1)(z e at )(z e at )

H(s) = s. a 2. H eq (z) = z z. G(s) a 2. G(s) A B. s 2 s(s + a) 2 s(s a) G(s) 1 a 1 a. } = (z s 1)( z. e ) ) (z. (z 1)(z e at )(z e at ) .7 Quiz Solutions Problem : a H(s) = s a a) Calculate the zero order hold equivalent H eq (z). H eq (z) = z z G(s) Z{ } s G(s) a Z{ } = Z{ s s(s a ) } G(s) A B Z{ } = Z{ + } s s(s + a) s(s a) G(s) a a

More information

Problem Weight Score Total 100

Problem Weight Score Total 100 EE 350 EXAM IV 15 December 2010 Last Name (Print): First Name (Print): ID number (Last 4 digits): Section: DO NOT TURN THIS PAGE UNTIL YOU ARE TOLD TO DO SO Problem Weight Score 1 25 2 25 3 25 4 25 Total

More information

Homework Assignment 3

Homework Assignment 3 ECE382/ME482 Fall 2008 Homework 3 Solution October 20, 2008 1 Homework Assignment 3 Assigned September 30, 2008. Due in lecture October 7, 2008. Note that you must include all of your work to obtain full

More information

CONTROL SYSTEMS ENGINEERING Sixth Edition International Student Version

CONTROL SYSTEMS ENGINEERING Sixth Edition International Student Version CONTROL SYSTEMS ENGINEERING Sixth Edition International Student Version Norman S. Nise California State Polytechnic University, Pomona John Wiley fir Sons, Inc. Contents PREFACE, vii 1. INTRODUCTION, 1

More information

Chapter 7 - Solved Problems

Chapter 7 - Solved Problems Chapter 7 - Solved Problems Solved Problem 7.1. A continuous time system has transfer function G o (s) given by G o (s) = B o(s) A o (s) = 2 (s 1)(s + 2) = 2 s 2 + s 2 (1) Find a controller of minimal

More information

Control Systems. Root Locus & Pole Assignment. L. Lanari

Control Systems. Root Locus & Pole Assignment. L. Lanari Control Systems Root Locus & Pole Assignment L. Lanari Outline root-locus definition main rules for hand plotting root locus as a design tool other use of the root locus pole assignment Lanari: CS - Root

More information

AMME3500: System Dynamics & Control

AMME3500: System Dynamics & Control Stefan B. Williams May, 211 AMME35: System Dynamics & Control Assignment 4 Note: This assignment contributes 15% towards your final mark. This assignment is due at 4pm on Monday, May 3 th during Week 13

More information

MAE 143B - Homework 7

MAE 143B - Homework 7 MAE 143B - Homework 7 6.7 Multiplying the first ODE by m u and subtracting the product of the second ODE with m s, we get m s m u (ẍ s ẍ i ) + m u b s (ẋ s ẋ u ) + m u k s (x s x u ) + m s b s (ẋ s ẋ u

More information

D(s) G(s) A control system design definition

D(s) G(s) A control system design definition R E Compensation D(s) U Plant G(s) Y Figure 7. A control system design definition x x x 2 x 2 U 2 s s 7 2 Y Figure 7.2 A block diagram representing Eq. (7.) in control form z U 2 s z Y 4 z 2 s z 2 3 Figure

More information

EE3CL4: Introduction to Linear Control Systems

EE3CL4: Introduction to Linear Control Systems 1 / 30 EE3CL4: Introduction to Linear Control Systems Section 9: of and using Techniques McMaster University Winter 2017 2 / 30 Outline 1 2 3 4 / 30 domain analysis Analyze closed loop using open loop

More information

Automatic Control A. A.A. 2016/2017 July 7, Corso di Laurea Magistrale in Ingegneria Meccanica. Prof. Luca Bascetta.

Automatic Control A. A.A. 2016/2017 July 7, Corso di Laurea Magistrale in Ingegneria Meccanica. Prof. Luca Bascetta. Corso di Laurea Magistrale in Ingegneria Meccanica Automatic Control A Prof. Luca Bascetta A.A. 2016/2017 July 7, 2017 Name: Surname: University ID number: Signature: This file consists of 8 pages (including

More information

Desired Bode plot shape

Desired Bode plot shape Desired Bode plot shape 0dB Want high gain Use PI or lag control Low freq ess, type High low freq gain for steady state tracking Low high freq gain for noise attenuation Sufficient PM near ω gc for stability

More information

Professor Fearing EE C128 / ME C134 Problem Set 7 Solution Fall 2010 Jansen Sheng and Wenjie Chen, UC Berkeley

Professor Fearing EE C128 / ME C134 Problem Set 7 Solution Fall 2010 Jansen Sheng and Wenjie Chen, UC Berkeley Professor Fearing EE C8 / ME C34 Problem Set 7 Solution Fall Jansen Sheng and Wenjie Chen, UC Berkeley. 35 pts Lag compensation. For open loop plant Gs ss+5s+8 a Find compensator gain Ds k such that the

More information

Problem 2 (Gaussian Elimination, Fundamental Spaces, Least Squares, Minimum Norm) Consider the following linear algebraic system of equations:

Problem 2 (Gaussian Elimination, Fundamental Spaces, Least Squares, Minimum Norm) Consider the following linear algebraic system of equations: EEE58 Exam, Fall 6 AA Rodriguez Rules: Closed notes/books, No calculators permitted, open minds GWC 35, 965-37 Problem (Dynamic Augmentation: State Space Representation) Consider a dynamical system consisting

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 043 Electrical and Electronics Engineering TUTORIAL QUESTION BAN Course Name : CONTROL SYSTEMS Course Code : A502 Class : III

More information

PID controllers. Laith Batarseh. PID controllers

PID controllers. Laith Batarseh. PID controllers Next Previous 24-Jan-15 Chapter six Laith Batarseh Home End The controller choice is an important step in the control process because this element is responsible of reducing the error (e ss ), rise time

More information

6.302 Feedback Systems Recitation 16: Compensation Prof. Joel L. Dawson

6.302 Feedback Systems Recitation 16: Compensation Prof. Joel L. Dawson Bode Obstacle Course is one technique for doing compensation, or designing a feedback system to make the closed-loop behavior what we want it to be. To review: - G c (s) G(s) H(s) you are here! plant For

More information

Raktim Bhattacharya. . AERO 422: Active Controls for Aerospace Vehicles. Frequency Response-Design Method

Raktim Bhattacharya. . AERO 422: Active Controls for Aerospace Vehicles. Frequency Response-Design Method .. AERO 422: Active Controls for Aerospace Vehicles Frequency Response- Method Raktim Bhattacharya Laboratory For Uncertainty Quantification Aerospace Engineering, Texas A&M University. ... Response to

More information

Module 5: Design of Sampled Data Control Systems Lecture Note 8

Module 5: Design of Sampled Data Control Systems Lecture Note 8 Module 5: Design of Sampled Data Control Systems Lecture Note 8 Lag-lead Compensator When a single lead or lag compensator cannot guarantee the specified design criteria, a laglead compensator is used.

More information

Control Systems. Design of State Feedback Control.

Control Systems. Design of State Feedback Control. Control Systems Design of State Feedback Control chibum@seoultech.ac.kr Outline Design of State feedback control Dominant pole design Symmetric root locus (linear quadratic regulation) 2 Selection of closed-loop

More information

DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING

DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING KINGS COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING QUESTION BANK SUBJECT CODE & NAME: CONTROL SYSTEMS YEAR / SEM: II / IV UNIT I SYSTEMS AND THEIR REPRESENTATION PARTA [2

More information

Reglerteknik: Exercises

Reglerteknik: Exercises Reglerteknik: Exercises Exercises, Hints, Answers Liten reglerteknisk ordlista Introduktion till Control System Toolbox ver. 5 This version: January 3, 25 AUTOMATIC CONTROL REGLERTEKNIK LINKÖPINGS UNIVERSITET

More information

ECE317 : Feedback and Control

ECE317 : Feedback and Control ECE317 : Feedback and Control Lecture : Steady-state error Dr. Richard Tymerski Dept. of Electrical and Computer Engineering Portland State University 1 Course roadmap Modeling Analysis Design Laplace

More information