Matlab Program to plot Bode and Root Locus plot for the given transfer function

Slides:



Advertisements
Similar presentations
Nyquist (1) Hany Ferdinando Dept. of Electrical Engineering
Advertisements

MATLAB BASICS ECEN 605 Linear Control Systems Instructor: S.P. Bhattacharyya.
Class 4 Systems and Solutions. 1 st Order Systems.
Automatique by meiling Chen1 Lesson 11 Bode Diagram.
ECEN/MAE 3723 – Systems I MATLAB Lecture 3.
For System Dynamics & Control
1 Eng. Mohamed El-Taher Eng. Ahmed Ibrahim. 2 1.FUNCTION SUMMARY polyfun  Polynomial functions are located in the MATLAB polyfun directory. For a complete.
UNIVERSITÁ DEGLI STUDI DI SALERNO FACOLTÀ DI INGEGNERIA Prof. Ing. Michele MICCIO Dip. Ingegneria Industriale (DIIn) Prodal Scarl (Fisciano) Transfer Function.
Simulink A Simple Intro. Square-Wave Feedback-Block realization.
Poles and Zeros and Transfer Functions
Lecture 201 EEE 302 Electrical Networks II Dr. Keith E. Holbert Summer 2001.
MATLAB Session 6 ES 156 Signals and Systems 2007 HSEAS Prepared by Jiajun Gu.
1 ECEN Automatic Control Systems Matlab Lecture 1 Introduction and Control Basics Presented by Moayed Daneshyari OKLAHOMA STATE UNIVERSITY.
USING LINEAR ANALYSIS IN MATLAB FOR MEP 1422/1522 (MATLAB V7, R14) Dr. Nik Rumzi Nik Idris Dept. of Energy Conversion Fakulti Kejuruteraan Elektrik Universiti.
Lecture 211 EEE 302 Electrical Networks II Dr. Keith E. Holbert Summer 2001.
3-5 steady-state error calculation The steady-state performance is an important characteristic of control system, it represses the ability to follow input.
ECE 4115 Control Systems Lab 1 Spring 2005
Unit 5: Feedback and control theory An Introduction to Mechanical Engineering: Part Two Feedback and control theory Learning summary By the end of this.
Bode Diagram (2) Hany Ferdinando Dept. of Electrical Engineering Petra Christian University.
EECE 360/460 Matlab Tutorial Jan Outline What is Matlab? What is Matlab? Matlab Interface Matlab Interface Basic Syntax Basic Syntax Plotting Graphs.
ECE 4115 Control Systems Lab 1 Spring 2005
ECE 4115 Control Systems Lab 1 Spring 2005 Chapter 1 System models.
Frequency Response OBJECTIVE - Bode and Nyquist plots for control analysis - Determination of transfer function - Gain and Phase margins - Stability in.
MatLAB Transfer Functions, Bode Plots, and Complex Numbers.
Root Locus Method. Root Locus Method Root Locus Method.
Automatic Control By Dr. / Mohamed Ahmed Ebrahim Mohamed Web site:
سیستمهای کنترل خطی پاییز 1389 بسم ا... الرحمن الرحيم دکتر حسين بلندي - دکتر سید مجید اسما عیل زاده.
CONTROL SYSTEM DESIGN by using MATLAB
SINUSOIDAL FREQUENCY ANALYSIS To study the behavior of a network as a function of the frequency we analyze the network function as a function of Circuit.
디지털 제어 Sun Moon University 1 of 32 목 차 7. Stability Kyoung-Chul DIGITAL CONTROL.
Unit 2 Discrete System 中華技術學院電子系 蔡樸生 副教授 林盈灝 副教授.
 Sub : system response analysis using ‘MATLAB’. prepared by, chokshi abhi ( ) Guided by, Prof. Vishvjit.K.Thakar sir(Head of ECE dept.).
Lesson 22: Determining Control Stability Using Bode Plots
Part B – Effect of Feedback on BW
Lesson 15: Bode Plots of Transfer Functions
© Dr. Elmer P. Dadios - DLSU Fellow & Professor
Padé Approximation Prof. Ing. Michele MICCIO
SINUSOIDAL FREQUENCY ANALYSIS
6. Nyquist Diagram, Bode Diagram, Gain Margin, Phase Margin,
Lesson 18: Integral Process Characteristics
Lecture 20: Root Locus for Design
Filters: Intuitive Understanding
Examples on Compensator Design Spring 2011
Simulink A Simple Intro.
Part B – Effect of Feedback on BW
Methods of Determining Stability
ECEN Automatic Control Systems Introduction and Control Basics
طراحی و اجرای برنامه خودمراقبتی
Frequency Response Bode and Nyquist plots Nyquist stability theorem
Control System Toolbox
Characteristic Loci Method
Todays Agenda 1. Stability Problems in negative Feedback
Name:_________________
محاسبات عددی و برنامه نویسی
LAG LEAD COMPENSATOR.
1 ECEN Automatic Control Systems Matlab Lecture 1 Introduction and Control Basics Presented by Moayed Daneshyari OKLAHOMA STATE UNIVERSITY.
Hanani binti Abdul Wahab 24 September 2008
Margins on Bode plots G(s) + -.
دکتر حسين بلندي- دکتر سید مجید اسما عیل زاده
Chapter 8. Frequency-Domain Analysis
Root Locus Plot of Dynamic Systems
Instructor: Chen-Hsiung Yang
Example Combination of Systems Transfer Function:
Control System Toolbox (Part-III)
Introduction To MATLAB
Control System Toolbox (Part-II)
ERT 210 DYNAMICS AND PROCESS CONTROL CHAPTER 11 – MATLAB TUTORIAL
Methods of Determining Stability
Microelectronic Circuits, Sixth Edition
Padé Approximation Prof. Ing. Michele MICCIO
Presentation transcript:

Matlab Program to plot Bode and Root Locus plot for the given transfer function o suppose we have the transfer function as     s + 12 ------------- 2 s^2 + s + 4 Then the Matlab program for the bode plot will be as follows: clc clear all num=[1, 12]; den=[2, 1, 4]; system=tf(num,den) bode(system)

Plot the root-locus of the following system Plot the root-locus of the following system. h = tf([2 5 1],[1 2 3]); rlocus(h)

nyquist(sys) nyquist(sys,w) nyquist(sys1,sys2, nyquist(sys) nyquist(sys,w) nyquist(sys1,sys2,...,sysN) nyquist(sys1,sys2,...,sysN,w) nyquist(sys1,'PlotStyle1',...,sysN,'PlotStyleN') [re,im,w] = nyquist(sys) [re,im] = nyquist(sys,w) [re,im,w,sdre,sdim] = nyquist(sys)

Plot the Nyquist response of the system H = tf([2 5 1],[1 2 3]); nyquist(H)

Time Responses For illustration purposes, create the following third-order transfer function: sys = tf([8 18 32],[1 6 14 24]) subplot(2,1,1) step(sys) subplot(2,1,2) impulse(sys)

Frequency Response sys = tf([8 18 32],[1 6 14 24])

bode(sys) grid

nyquist(sys) grid

nichols(sys) grid

rlocus(G) grid