8. Root-Locus Analysis 8.1 Determining stability bonds in closed-loop systems DEU-MEE 5017 Advanced Automatic Control.

Slides:



Advertisements
Similar presentations
Root Locus Analysis (1) Hany Ferdinando Dept. of Electrical Eng. Petra Christian University.
Advertisements

Modern Control Theory Lecture 5 By Kirsten Mølgaard Nielsen
Multivariable Control
Chapter 8 Root Locus <<<4.1>>>
1 Modern Control Theory Digital Control Lecture 4.
What is Root Locus ? The characteristic equation of the closed-loop system is 1 + K G(s) = 0 The root locus is essentially the trajectories of roots of.
1 Modern Control Theory Digital Control Lecture 4 By Kirsten Mølgaard Nielsen Based on notes from Jesper Sandberg Thomsen.
Automatic control by meiling CHEN1 Lesson 9 Root locus Automatic control 2. Analysis.
Automatic Control Theory-
The Root Locus Analysis Eng R. L. Nkumbwa MSc, MBA, BEng, REng. Copperbelt University.
Feedback Control System THE ROOT-LOCUS DESIGN METHOD Dr.-Ing. Erwin Sitompul Chapter 5
Ch6 The Root Locus Method. Main content §The Root Locus Concept §The Root Locus Procedure §Generalized root locus or Parameter RL §Parameter design by.
ME375 Handouts - Spring 2002 Root Locus Method.
Chapter 5: Root Locus Nov. 8, Key conditions for Plotting Root Locus Given open-loop transfer function G k (s) Characteristic equation Magnitude.
Modern Control Systems (MCS) Dr. Imtiaz Hussain Assistant Professor URL :
Lec 9. Root Locus Analysis I From last lecture, the locations of the closed loop poles have important implication in –Stability –Transient behavior –Steady.
Lec 10. Root Locus Analysis II
Control Theory Root locus
INC 341PT & BP INC341 Root Locus (Continue) Lecture 8.
Modern Control System EKT 308 Aspects of State Equation & Root Locus Method.
Modern Control System EKT 308
Chapter 5: Root Locus Nov , Two Conditions for Plotting Root Locus Given open-loop transfer function G k (s) Characteristic equation Magnitude.
Chapter 6 Root-Locus Analysis 6.1 Introduction - In some systems simple gain adjustment may move the closed- loop poles to desired locations. Then the.
Lecture 18: Root Locus Basics
Root Locus Techniques (Sketching Method) Date: 25 th September 2008 Prepared by: Megat Syahirul Amin bin Megat Ali
Dr. Tamer Samy Gaafar Automatic Control Theory CSE 322 Lec. 11 Root Locus.
5. Root-LocusKuo-91 (p.428) Example 5.1 )s(R Locations of the roots on the complex plane (s plane) Poles : D 1 (s)=0 Zeros: N 1 (s)=0 Number of branches.
Prof. Wahied Gharieb Ali Abdelaal
7.1 Root Locus (RL) Principle We introduce the RL through an example. Consider servo motor system shown bellow The closed loop transfer function is motor.
Shroff S.R. Rotary Institute of Chemical Technology Chemical Engineering Instrumentation and process Control.
CONTROL SYSTEM UNIT-IV Datta Meghe Institute of engineering Technology and Research Sawangi (meghe),Wardha 1 DEPARTMENT OF ELECTRONICS & TELECOMMUNICATION.
Lecture 11/12 Analysis and design in the time domain using root locus North China Electric Power University Sun Hairong.
Chapter 6 The Stability of Linear Feedback System
Routh Hurwitz Stability Test & Analysis of Closed-loop System
The Root Locus Analysis
Root locus A technique enabling you to see how close-loop poles would vary if a parameter in the system is varied Can be used to design controllers or.
Salman Bin Abdulaziz University
Root Locus Method Assist. Professor. Dr. Mohammed Abdulrazzaq
Nyguist criterion Assist. Professor. Dr. Mohammed Abdulrazzaq.
Chapter 5 Root Locus.
Digital and Non-Linear Control
Lecture 19: Root Locus Continued
6. Nyquist Diagram, Bode Diagram, Gain Margin, Phase Margin,
Lec 9. Root Locus Analysis I
UNIT-III STABILITY ANALYSIS.
Two parameters: k and a. would like to know how they affect poles
The root locus technique
7.1 Root Locus (RL) Principle
Name:_________________
Root-locus Technique for Control Design
Root-Locus Analysis (1)
Prototype 2nd order system:
LINEAR CONTROL SYSTEMS
Root Loci Analysis (3): Root Locus Approach to Control System Design
Two parameters: k and a. would like to know how they affect poles
Root Locus by: Nafees Ahmed
Feedback Control Systems (FCS)
4. Closed-Loop Responses Using the Laplace Transform Method
Figure Contributions of characteristic equation roots to closed-loop response.
7. Stability [Ref:Rao] 7.1 System stability
Root Locus Techniques CH 8: Islamic University of Gaza
Feedback Control Systems (FCS)
Root Locus Plot of Dynamic Systems
Root-Locus Analysis (2)
5. Root-Locus Technique Kuo-95 (p.470) ) s ( R
Root Locus Techniques CH 8: Islamic University of Gaza
CH. 6 Root Locus Chapter6. Root Locus.
4.0 ROOT LOCUS OBJECTIVE ~ Rules on sketching the root locus.
IntroductionLecture 1: Basic Ideas & Terminology
5. Root-Locus Technique Kuo-95 (p.470) ) s ( R
Presentation transcript:

8. Root-Locus Analysis 8.1 Determining stability bonds in closed-loop systems DEU-MEE 5017 Advanced Automatic Control

np=1;dp=[1,3,5,2];gp=tf(np,dp);pzmap(gp);hold on; %return Example 8.1: Examine the closed-loop stability by using pzmap() function in MATLAB . MATLAB: np=1;dp=[1,3,5,2];gp=tf(np,dp);pzmap(gp);hold on; %return for K = 2:2:30 nh=K;dh=[1 3 5 2+K];h=tf(nh,dh); pzmap(h); end;

nh=K;dh=[1 3 5 2+K];h=tf(nh,dh); pzmap(h); MATLAB: Example 8.2: Consider Example 8.1. Find the range of K for which the considered system will be stable. Routh array: K = 13; nh=K;dh=[1 3 5 2+K];h=tf(nh,dh); pzmap(h); MATLAB: >>p=roots(dh) p= -3.0000 0.0000 + 2.2361i 0.0000 - 2.2361i

) s ( R 8.3 Root-Locus Method We hae seen that the closed-loop poles change as controller parameters vary. A root-locus is an s-plane plot of the paths that the closed-loop poles as a controller parameter varies. Let’s start with an example. K: Control gain ) s ( R Properties and construction of the Root Loci: Rule-1. The K=0 points on the root loci are at the poles of KGp(s). >> dp=[1,11,48,104,96,0];roots(dp) Rule-2. The K= ± points on the rooy loci are at the zeros of KGp(s). >> np=[1,1];roots(np) Tekstil Mühendisliği-MAK3026 Kontrol Sitemleri Doç.Dr.Levent Malgaca, 2015 Bahar

Rule-4. The root-loci are symmetrical with respect to the real axis. Rule-3. The number of branches of the root loci is equal to the order of Dp(s). n= The order of Dp(s): 5, so, there are 5 branches of the root loci. Rule-4. The root-loci are symmetrical with respect to the real axis. Rule-5. The properties of the root loci near infinity in the s-plane are described by the asymptotes. For large values of s, the root loci for K  0 are asymptotic to asymptotes with angles given by n : The order of Dp(s) m : The order of Np(s) n  m For number of n–m asymptotes: for k= 0, 1, 2, 3 Rule-6. The intersect of the asymptotes of the root loci lies on the real axis of the s-plane.

MATLAB : np=[1,1]; dp=[1, 11, 48, 104, 96, 0] rlocus(np,dp) Rules 7-8. Angles of departure and angles arrival (Kuo: Page,485). We will not cover these rules. At this stage, we will use “rlocus()” command in MATLAB to obtain a root-locus plot. We will do analyses and syntheses from the plot by using the properties of the root-locus method. np=[1,1]; dp=[1, 11, 48, 104, 96, 0] rlocus(np,dp) MATLAB :

Rule-9. Intersection of the Root Loci with the imaginary axis. a) We can use the Routh-Hurwitz method. Routh array: From the first column of array: or >>K=190.2; dh=[1,11,48,104,96+K,K];p=roots(dh) -5.0806 ± 2.5862i ± 2.6413i (The coordinate of the point A) -0.8389

b) We can use MATLAB. Select the point A A np=[1,1]; dp=[1, 11, 48, 104, 96, 0]; rlocus(np,dp) rlocfind(np,dp) MATLAB : MATLAB gives the results for the selected point: and ± 2.6413i

b) We can use the property that the pole s=i at A must satisfy the characteristic equation when the value of K at A is known. K=190.2 (at A) s=i

Rule-10. Breekaway points on the root loci of an equation correspond to multiple-order roots of the equation. The breakaway points on the root loci of Dh=0 must satisfy -3.5462 -2.4226 + 1.3263i -2.4226 - 1.3263i -0.5543 + 0.7616i -0.5543 - 0.7616i >>d=[4, 38,140, 248, 208, 96];roots(d)

Im iω ωn φ Re -σ 8.1 Design with the Root-Locus Method Remember that we can calculate the system dynamic parameters from the eigenvalues. Re ωn iω -σ φ Im S-plane At design stage, we can determine the value of controller gain K so that the closed-loop system has the desired damping ratio and natural frequency. Example 8.3: Determine the controller gain of K so that the closed-loop system has . For 2nd order prototype transfer function ksi=0.341;wn=5; np=[1,1]; dp=[1, 11, 48, 104, 96, 0]; rlocus(np,dp) sgrid([ksi/2 ksi 2.5*ksi],[wn/2 wn]) rlocfind(np,dp) MATLAB :

Example 8.3: (Continue) Analyze the eigenvalues and the step response of the closed-loop system for the determined K. k=66.6; p=rlocus(gp,k) h=feedback(k*gp,1) step(h) MATLAB : p =-4.4559 ± 1.9242i -0.7596 ± 2.0955i -0.5690 H(s) =