Designing PID controllers with Matlab using frequency response methodology

Size: px
Start display at page:

Download "Designing PID controllers with Matlab using frequency response methodology"

Transcription

1 Designing PID controllers with Matlab using frequency response methodology by Frank Owen, PhD, PE polyxengineering, Inc. San Luis Obispo, California 16 March 2017 ( This paper takes a look at designing PID controllers using Matlab. Two examples are presented. The controllers are designed in stages using a series of Matlab commands to view the Bode plots and then to check the unit-step (Exercise 1) and unit-ramp (Exercise 2) responses of the two systems. The reader will see that there is a certain and specific set of Matlab commands that form a sort of cycle of development. The open-loop system is viewed first through the lens of its Bode plot to gauge the closed-loop system s stability, steady-state error, speed, etc. An aim is proposed, a controller developed, and the result generated to verify that the aim has been met. In both exercises a PI controller is developed to 1) eliminate steady-state error (by adding an integrator), 2) stabilize or speed-up the system (zero at a strategic point), and 3) fine-tune the result (with a gain adjustment). These components are added one after the other, so that one can see the effect of each of these components. Each phase of controller design consists of modifying the existing system by adding a controller component, checking the Bode plot of the revised system, then generating the closed-loop transfer function of the revised system and plotting its unit-step or unit-ramp response. The incremental, component-wise development of the controller is important. A naming convention is suggested that shows and keeps track of the stages of controller development. Each version of the system is retained, so that if one takes a step in a false direction, he/she can always back up to a safe point and make another stab at adding a different or revised component. In developing the PI controllers in these two examples, the three components are added one after the other, so that we wind up with systems named gol, golint, golintlead, and golintleadkc and their correspondingly named closed-loop counterparts. For background information the reader is referred to the author s text Control Systems Engineering: A Practical Approach, available from the author (fowen@polyxengineering.com). Exercise 1 Consider the open-loop, unity-feedback system: Get e ss: >> s = tf('s') s = s >> gol = 10/((s+4)*(s+6)) gol = s^ s + 24 >> bode(gol) = 10 ( + 4) ( + 6) 1 P a g e

2 >> hold Current plot held Low-freq asymptote at about 2 db. 20 log = So K p-ess = 10^(-7.61/20) = >> KOL = 10^(-7.61/20) KOL = e ss for unit step = 1/(1+K p-ess) = This means that the unit-step response will go up to only about 0.3. Notice that we could have proceeded another way, knowing the transfer function, we know that K OL = 10/24 = K p-ess = , close to what we got from the Bode plot. >> 10/24 ans = >> Kpess = ans Kpess = >> ess = 1/(1+Kpess) ess = Calculate G cl and get unit step response. Since the loop is unity feedback >> gcl = gol/(1+gol) gcl = 10 s^ s s^ s^ s^ s >> figure(2) >> step(gcl) >> hold on 2 P a g e

3 The closed-loop system reported back from the Matlab symbolic math calculation is misleading. It looks as if we suddenly have a fourth-order system with two zeros. Actually the system is just second-order, but Matlab isn t smart enough to recognize that two of the zeros cancel two of the poles. The steady-state error is terrible, just as predicted. The entire Bode plot from above is Right now the gain margin is infinite, because the phase never reaches -180 (no phase-crossover frequency). The phase margin is 180 because K OL is 1, so the log mag curve never runs above 0 db (no gain-crossover frequency). 3 P a g e

4 Let s reduce e ss to 10%. to be 9. Need to add a gain of *K C = 9 : K C = 21.6 >> golkc = gol*21.6 golkc = s^ s + 24 >> figure(1) >> bode(golkc) >> hold on >> bode(gol) On the Bode plot we can see the effect of the gain adjustment. = 0.1. Need K p-ess = 9. Recall that K p-ess = K OL = , and we need it Notice that the log mag plot starts off at 19.1 db. This is shown by zooming in and using the data cursor. 4 P a g e

5 Check out the step response. We are reaching our e ss = 10% goal, but we now have OS. It s > 20%. Look at gain and phase margins. >> gclkc = golkc/(1+golkc) gclkc = 216 s^ s s^ s^ s^ s >> figure(2) >> step(gclkc) >> pcoskc = (1.2-.9)/.9 pcoskc = >> ln(2) Undefined function or variable 'ln'. Note that Matlab s function for ln() is log(). Matlab s function for log() is log10(). 5 P a g e

6 >> z = -log(pcoskc)/sqrt(pi^2+(log(pcoskc))^2) z = >> figure(3) >> margin(golkc) M = 39.7, so = If we use our formula for %OS as f( ): >> z = z = >> -log(z)/sqrt(pi^2+(log(z))^2) ans = %OS = 28.2%. The / M relationship is only an approximation. Let s say we want to eliminate e ss instead of just reducing it. Thus we shall add a PI controller, i.e. a controller with a pole at the origin (integrator), a zero (a first-order lead), and a gain. Let s add the element over which we have no control first the integrator and look at its effect. Correct this on the original system, G OL. >> golint = gol/s golint = s^ s^ s >> figure(4) >> bode(golint) 6 P a g e

7 From the figure we can see that with just the integrator, the system is still stable. The gain-crossover frequency is around 0.4 rad/sec, where the phase margin is about 80, and the phase-crossover frequency is about 5 rad/sec, where the gain margin is 35 db or so. Let s see how the system responds to a step input and then decide what to do to add the zero and the gain. >> gclint = golint/(1+golint) gclint = 10 s^ s^ s s^ s^ s^ s^ s^ s >> figure(2) >> hold on >> step(gclint) 7 P a g e

8 The steady-state error is indeed gone. But this has been at an extreme cost in system response time. Perhaps we can use the zero to increase the system speed. Note that the gain-crossover frequency, which was 10.3 rad/sec or so with the K C adjustment, is now 0.4 rad/sec, more than a 10-fold reduction in speed. Refer to the Bode plot for golint. On the Bode diagram for the K C-adjusted system, we saw that the gaincrossover frequency was 13.8 rad/sec. On the Bode plot for golint, at 13.8 rad/sec, the phase angle is about 40 below 180. We can try to perform a phase lift here and then adjust the gain to fine-tune our system. For the full phase lift at 13.8 rad/sec, add the zero one decade before that, i.e. at 1.38 rad/sec. >> figure(4) >> bode(golint) >> hold on >> golintlead = golint * (1/((1/1.38)*s+1)) >> bode(golintlead) At 10 rad/sec, = -135, and the log mag value is db. Thus we did indeed lift the phase curve up above -180 in this frequency range. A phase margin of 45 isn t bad. Let s try for this and see what the outcome is. Apply a gain of 24.6 db. >> KC = 10^(24.6/20) KC = >> golintleadkc = golintlead*kc golintleadkc = s s^ s^ s 8 P a g e

9 >> bode(golintleadkc) This does seem to have had the desired result. Let s now see the step response, whether the system is operating quicker without too much %OS. >> gclintleadkc = golintleadkc/(1+golintleadkc) gclintleadkc = s^ s^ s^ s s^ s^ s^ s^ s^ s >> figure(2) >> step(gclintleadkc) 9 P a g e

10 Wow! Perfect response: almost as fast as the gain-adjusted system and no steady-state error. Another phase-lift successfully completed! It might be possible to further improve the response by adding a second zero somewhere. For example, additional phase-lift would increase the phase margin and lower the overshoot. Or another zero might be used to lift the log mag curve and increase the gain-crossover frequency and, thus, the system s speed. That would make this then a PID controller. What we have now is a PI controller. Left to do are to figure out the system s K P, K I, and K D. 10 P a g e

11 Exercise 2 Now let s look at a third-order, unity-feedback system subjected to a ramp input. Let = 10 ( + 3) ( + 9) >> s = tf('s') s = s >> gol = 10/(s*(s+3)*(s+9)) gol = s^ s^ s Let s evaluate this system s performance by looking at its Bode plot. This will tell us also how we might improve the performance with a PID-family controller. >> bode(gol) >> hold on 11 P a g e

12 Or close up: That this is a type 1 system is evidenced by the fact that 1) the log mag curve has an initial slope of -20 db/dcd and 2) the phase curve starts out at -90. We are interested in steady-state error and operating this system with a unit ramp input. With the current system, the gain-crossover frequency is about 0.38 rad/sec. For a unit ramp input, = 1 and K v = M (the gain-crossover frequency). So = 1 = 1 = 2.63 sec 0.38 rad/sec Let s verify this. We need to put in a unit ramp input. Matlab doesn t have a ramp() function. But a unit step has the Laplace transform, and a unit ramp has the Laplace transform step into an integrator, we shall get a unit ramp. Let s try this. >> figure(2) >> step(1/s). So if we input a unit 12 P a g e

13 This yields the desired result. We can now just multiply our transfer functions by 1/s, subject them to a step, and it s the same as subjecting them to a unit ramp. >> hold on >> gcl = gol/(1+gol) gcl = 10 s^ s^ s s^ s^ s^ s^ s^ s >> step(gcl/s) 13 P a g e

14 If we look closely, we shall see that the output trails the input by a steady amount, namely This is the vertical distance between the desired value (blue) and the actual value (red). As an initial aim, let s try to halve this e ss. For this we can perform a simple gain adjustment. We need to double K v. For this we need to raise the log mag curve of the open-loop system so that the gain-crossover frequency is at 2*0.38 rad/sec = 0.76 rad/sec. Looking at a close up of the Bode log mag curve, we see that with G ( the log mag of the system is at about -6.5 db at around 0.76 rad/sec. >> KC = 10^(6.5/20) KC = Thus if we adjust the log mag curve up by K C = 2.11, we should meet our goal. Let s do this. This looks good, now look at the ramp response. >> figure(2) >> step(gcl/s) >> step(1/s) >> hold on >> step(gcl/s) The>> step(gclkc/s) 14 P a g e

15 The yellow curve does indeed seem to be halfway between the desired value (blue) and the actual value of the original unit ramp response of the original system. If we want to eliminate e ss instead, we need a type two system. Go back to the original system without the gain adjustment and add an integrator. >> golint = gol/s golint = s^ s^ s^2 >> figure(4) >> bode(golint) >> hold on 15 P a g e

16 As the Bode plot shows, adding the pole at the origin has destabilized the system. The phase plot starts out at This can be easily verified: figure(5) >> gclint = golint/(1+golint) gclint = 10 s^ s^ s^ s^ s^ s^ s^ s^ s^ s^2 >> step(1/s) >> hold on >> step(gclint/s) 16 P a g e

17 Yes, it s indeed unstable. What we might try to do is to perform a phase-lift and raise the phase curve up above But where? With the integrator, the gain-crossover frequency is rad/sec. Let s try to raise the curve there. As almost always when adding a lead, we put its break frequency one decade before where we want the lift, because the phase contribution of the lead only reaches the full 90 one decade after the break frequency. Thus let the break frequency be rad/sec. The lead to install is then = >> golintlead = golint*(1/0.0602*s+1) golintlead = s s^ s^ s^2 >> figure(4) >> hold on >> bode(golintlead) This did stabilize the system. The gain-crossover frequency is at about 3.4 rad/sec, and there the phase angle is about, well, let s use the margin command to find out. >> figure(5) >> margin(golintlead) 17 P a g e

18 The log mag curve crosses 0 db at 3.63 rad/sec. As often happens with phase-lifting, the maximum phase contribution is often not exactly where you desire it. The maximum phase occurs at halfway between 0.01 and 1 rad/sec (about 0.03 rad/sec), not at rad/sec as we had intended. We could now modify the lead and place its break frequency a bit to the right of rad/sec. But let s try the simple strategy of de-tuning the log mag curve (multiplying by a gain < 1, which would be negative db) to make the gain-crossover frequency occur at the maximum phase value. A zoomed-in look at the Bode plot shows 18 P a g e

19 This shows that at maximum phase, the log mag curve is at about 24 db. So lower the log mag curve -24 db to make this frequency the gain-crossover frequency. >> KC = 10^(-24/20) KC = >> golintleadkc = golintlead*kc golintleadkc = s s^ s^ s^2 >> figure(4) >> bode(golintleadkc) This seems to have done what we wanted, placed the gain-crossover frequency at the point of maximum phase-lift. Let s see how our PI-equipped system (pole at origin/zero somewhere/gain) responds to a unit ramp input. >> gclintleadkc gclintleadkc = s^ s^ s^ s^ s^ s^ s^ s^ s^ s^ s^2 >> step(gclintleadkc/s) 19 P a g e

20 Another successful phase-lift. The system has no e ss to a ramp input. It does not seem to oscillate inordinately either. Our controller is = = + = + 1 So K I = , K P = This controller seems to bring the actual value to the desired ramp in seconds. We could perhaps speed the system up by relocating the zero and being less aggressive with trying to suppress the oscillations (i.e., maybe we have too much phase margin). 20 P a g e

Motomatic via Bode by Frank Owen, PhD, PE Mechanical Engineering Department California Polytechnic State University San Luis Obispo

Motomatic via Bode by Frank Owen, PhD, PE Mechanical Engineering Department California Polytechnic State University San Luis Obispo Motomatic via Bode by Frank Owen, PhD, PE Mechanical Engineering Department California Polytechnic State University San Luis Obispo The purpose of this lecture is to show how to design a controller for

More information

ME 5281 Fall Homework 8 Due: Wed. Nov. 4th; start of class.

ME 5281 Fall Homework 8 Due: Wed. Nov. 4th; start of class. ME 5281 Fall 215 Homework 8 Due: Wed. Nov. 4th; start of class. Reading: Chapter 1 Part A: Warm Up Problems w/ Solutions (graded 4%): A.1 Non-Minimum Phase Consider the following variations of a system:

More information

Dr Ian R. Manchester

Dr Ian R. Manchester Week Content Notes 1 Introduction 2 Frequency Domain Modelling 3 Transient Performance and the s-plane 4 Block Diagrams 5 Feedback System Characteristics Assign 1 Due 6 Root Locus 7 Root Locus 2 Assign

More information

Course Outline. Time vs. Freq. Domain Analysis. Frequency Response. Amme 3500 : System Dynamics & Control. Design via Frequency Response

Course Outline. Time vs. Freq. Domain Analysis. Frequency Response. Amme 3500 : System Dynamics & Control. Design via Frequency Response Course Outline Amme 35 : System Dynamics & Control Design via Frequency Response Week Date Content Assignment Notes Mar Introduction 2 8 Mar Frequency Domain Modelling 3 5 Mar Transient Performance and

More information

CDS 101/110: Lecture 8.2 PID Control

CDS 101/110: Lecture 8.2 PID Control CDS 11/11: Lecture 8.2 PID Control November 16, 216 Goals: Nyquist Example Introduce and review PID control. Show how to use loop shaping using PID to achieve a performance specification Discuss the use

More information

Frequency Response Analysis and Design Tutorial

Frequency Response Analysis and Design Tutorial 1 of 13 1/11/2011 5:43 PM Frequency Response Analysis and Design Tutorial I. Bode plots [ Gain and phase margin Bandwidth frequency Closed loop response ] II. The Nyquist diagram [ Closed loop stability

More information

EES42042 Fundamental of Control Systems Bode Plots

EES42042 Fundamental of Control Systems Bode Plots EES42042 Fundamental of Control Systems Bode Plots DR. Ir. Wahidin Wahab M.Sc. Ir. Aries Subiantoro M.Sc. 2 Bode Plots Plot of db Gain and phase vs frequency It is assumed you know how to construct Bode

More information

SECTION 6: ROOT LOCUS DESIGN

SECTION 6: ROOT LOCUS DESIGN SECTION 6: ROOT LOCUS DESIGN MAE 4421 Control of Aerospace & Mechanical Systems 2 Introduction Introduction 3 Consider the following unity feedback system 3 433 Assume A proportional controller Design

More information

ECE317 : Feedback and Control

ECE317 : Feedback and Control ECE317 : Feedback and Control Lecture : Frequency domain specifications Frequency response shaping (Loop shaping) Dr. Richard Tymerski Dept. of Electrical and Computer Engineering Portland State University

More information

ME 375 System Modeling and Analysis

ME 375 System Modeling and Analysis ME 375 System Modeling and Analysis G(s) H(s) Section 9 Block Diagrams and Feedback Control Spring 2009 School of Mechanical Engineering Douglas E. Adams Associate Professor 9.1 Key Points to Remember

More information

Implementation and Simulation of Digital Control Compensators from Continuous Compensators Using MATLAB Software

Implementation and Simulation of Digital Control Compensators from Continuous Compensators Using MATLAB Software Implementation and Simulation of Digital Control Compensators from Continuous Compensators Using MATLAB Software MAHMOUD M. EL -FANDI Electrical and Electronic Dept. University of Tripoli/Libya m_elfandi@hotmail.com

More information

EEL2216 Control Theory CT2: Frequency Response Analysis

EEL2216 Control Theory CT2: Frequency Response Analysis EEL2216 Control Theory CT2: Frequency Response Analysis 1. Objectives (i) To analyse the frequency response of a system using Bode plot. (ii) To design a suitable controller to meet frequency domain and

More information

Rotary Motion Servo Plant: SRV02. Rotary Experiment #03: Speed Control. SRV02 Speed Control using QuaRC. Student Manual

Rotary Motion Servo Plant: SRV02. Rotary Experiment #03: Speed Control. SRV02 Speed Control using QuaRC. Student Manual Rotary Motion Servo Plant: SRV02 Rotary Experiment #03: Speed Control SRV02 Speed Control using QuaRC Student Manual Table of Contents 1. INTRODUCTION...1 2. PREREQUISITES...1 3. OVERVIEW OF FILES...2

More information

Lecture 7:Examples using compensators

Lecture 7:Examples using compensators Lecture :Examples using compensators Venkata Sonti Department of Mechanical Engineering Indian Institute of Science Bangalore, India, This draft: March, 8 Example :Spring Mass Damper with step input Consider

More information

GE420 Laboratory Assignment 8 Positioning Control of a Motor Using PD, PID, and Hybrid Control

GE420 Laboratory Assignment 8 Positioning Control of a Motor Using PD, PID, and Hybrid Control GE420 Laboratory Assignment 8 Positioning Control of a Motor Using PD, PID, and Hybrid Control Goals for this Lab Assignment: 1. Design a PD discrete control algorithm to allow the closed-loop combination

More information

ECE317 Homework 7. where

ECE317 Homework 7. where ECE317 Homework 7 Problem 1: Consider a system with loop gain, T(s), given by: where T(s) = 300(1+s)(1+ s 40 ) 1) Determine whether the system is stable by finding the closed loop poles of the system using

More information

Bode and Log Magnitude Plots

Bode and Log Magnitude Plots Bode and Log Magnitude Plots Bode Magnitude and Phase Plots System Gain and Phase Margins & Bandwidths Polar Plot and Bode Diagrams Transfer Function from Bode Plots Bode Plots of Open Loop and Closed

More information

LECTURE FOUR Time Domain Analysis Transient and Steady-State Response Analysis

LECTURE FOUR Time Domain Analysis Transient and Steady-State Response Analysis LECTURE FOUR Time Domain Analysis Transient and Steady-State Response Analysis 4.1 Transient Response and Steady-State Response The time response of a control system consists of two parts: the transient

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

Module 08 Controller Designs: Compensators and PIDs

Module 08 Controller Designs: Compensators and PIDs Module 08 Controller Designs: Compensators and PIDs Ahmad F. Taha EE 3413: Analysis and Desgin of Control Systems Email: ahmad.taha@utsa.edu Webpage: http://engineering.utsa.edu/ taha March 31, 2016 Ahmad

More information

JNTUWORLD. 6 The unity feedback system whose open loop transfer function is given by G(s)=K/s(s 2 +6s+10) Determine: (i) Angles of asymptotes *****

JNTUWORLD. 6 The unity feedback system whose open loop transfer function is given by G(s)=K/s(s 2 +6s+10) Determine: (i) Angles of asymptotes ***** Code: 9A050 III B. Tech I Semester (R09) Regular Eaminations, November 0 Time: hours Ma Marks: 70 (a) What is a mathematical model of a physical system? Eplain briefly. (b) Write the differential equations

More information

Laboratory PID Tuning Based On Frequency Response Analysis. 2. be able to evaluate system performance for empirical tuning method;

Laboratory PID Tuning Based On Frequency Response Analysis. 2. be able to evaluate system performance for empirical tuning method; Laboratory PID Tuning Based On Frequency Response Analysis Objectives: At the end, student should 1. appreciate a systematic way of tuning PID loop by the use of process frequency response analysis; 2.

More information

Bode Plots. Hamid Roozbahani

Bode Plots. Hamid Roozbahani Bode Plots Hamid Roozbahani A Bode plot is a graph of the transfer function of a linear, time-invariant system versus frequency, plotted with a logfrequency axis, to show the system's frequency response.

More information

Dr Ian R. Manchester Dr Ian R. Manchester Amme 3500 : Root Locus Design

Dr Ian R. Manchester Dr Ian R. Manchester Amme 3500 : Root Locus Design Week Content Notes 1 Introduction 2 Frequency Domain Modelling 3 Transient Performance and the s-plane 4 Block Diagrams 5 Feedback System Characteristics Assign 1 Due 6 Root Locus 7 Root Locus 2 Assign

More information

EC CONTROL SYSTEMS ENGINEERING

EC CONTROL SYSTEMS ENGINEERING 1 YEAR / SEM: II / IV EC 1256. CONTROL SYSTEMS ENGINEERING UNIT I CONTROL SYSTEM MODELING PART-A 1. Define open loop and closed loop systems. 2. Define signal flow graph. 3. List the force-voltage analogous

More information

Controller Algorithms and Tuning

Controller Algorithms and Tuning The previous sections of this module described the purpose of control, defined individual elements within control loops, and demonstrated the symbology used to represent those elements in an engineering

More information

TUTORIAL 9 OPEN AND CLOSED LOOP LINKS. On completion of this tutorial, you should be able to do the following.

TUTORIAL 9 OPEN AND CLOSED LOOP LINKS. On completion of this tutorial, you should be able to do the following. TUTORIAL 9 OPEN AND CLOSED LOOP LINKS This tutorial is of interest to any student studying control systems and in particular the EC module D7 Control System Engineering. On completion of this tutorial,

More information

Integrator windup and PID controller design

Integrator windup and PID controller design Integrator windup and PID controller design by Ania Bae*ca 11/19/2015 Ania Bae*ca, CDS Caltech 1 Integrator windup mechanism Windup = When the controller reaches the actuator limit, then the actuator becomes

More information

This manuscript was the basis for the article A Refresher Course in Control Theory printed in Machine Design, September 9, 1999.

This manuscript was the basis for the article A Refresher Course in Control Theory printed in Machine Design, September 9, 1999. This manuscript was the basis for the article A Refresher Course in Control Theory printed in Machine Design, September 9, 1999. Use Control Theory to Improve Servo Performance George Ellis Introduction

More information

CDS 101/110: Lecture 9.1 Frequency DomainLoop Shaping

CDS 101/110: Lecture 9.1 Frequency DomainLoop Shaping CDS /: Lecture 9. Frequency DomainLoop Shaping November 3, 6 Goals: Review Basic Loop Shaping Concepts Work through example(s) Reading: Åström and Murray, Feedback Systems -e, Section.,.-.4,.6 I.e., we

More information

Andrea Zanchettin Automatic Control 1 AUTOMATIC CONTROL. Andrea M. Zanchettin, PhD Winter Semester, Linear control systems design Part 1

Andrea Zanchettin Automatic Control 1 AUTOMATIC CONTROL. Andrea M. Zanchettin, PhD Winter Semester, Linear control systems design Part 1 Andrea Zanchettin Automatic Control 1 AUTOMATIC CONTROL Andrea M. Zanchettin, PhD Winter Semester, 2018 Linear control systems design Part 1 Andrea Zanchettin Automatic Control 2 Step responses Assume

More information

(1) Identify individual entries in a Control Loop Diagram. (2) Sketch Bode Plots by hand (when we could have used a computer

(1) Identify individual entries in a Control Loop Diagram. (2) Sketch Bode Plots by hand (when we could have used a computer Last day: (1) Identify individual entries in a Control Loop Diagram (2) Sketch Bode Plots by hand (when we could have used a computer program to generate sketches). How might this be useful? Can more clearly

More information

Introduction to PID Control

Introduction to PID Control Introduction to PID Control Introduction This introduction will show you the characteristics of the each of proportional (P), the integral (I), and the derivative (D) controls, and how to use them to obtain

More information

Loop Design. Chapter Introduction

Loop Design. Chapter Introduction Chapter 8 Loop Design 8.1 Introduction This is the first Chapter that deals with design and we will therefore start by some general aspects on design of engineering systems. Design is complicated because

More information

Different Controller Terms

Different Controller Terms Loop Tuning Lab Challenges Not all PID controllers are the same. They don t all use the same units for P-I-and D. There are different types of processes. There are different final element types. There

More information

Analog Circuits Prof. Jayanta Mukherjee Department of Electrical Engineering Indian Institute of Technology-Bombay

Analog Circuits Prof. Jayanta Mukherjee Department of Electrical Engineering Indian Institute of Technology-Bombay Analog Circuits Prof. Jayanta Mukherjee Department of Electrical Engineering Indian Institute of Technology-Bombay Week -02 Module -01 Non Idealities in Op-Amp (Finite Gain, Finite Bandwidth and Slew Rate)

More information

SECTION 7: FREQUENCY DOMAIN ANALYSIS. MAE 3401 Modeling and Simulation

SECTION 7: FREQUENCY DOMAIN ANALYSIS. MAE 3401 Modeling and Simulation SECTION 7: FREQUENCY DOMAIN ANALYSIS MAE 3401 Modeling and Simulation 2 Response to Sinusoidal Inputs Frequency Domain Analysis Introduction 3 We ve looked at system impulse and step responses Also interested

More information

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

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

More information

ME 375. HW 7 Solutions. Original Homework Assigned 10/12, Due 10/19.

ME 375. HW 7 Solutions. Original Homework Assigned 10/12, Due 10/19. ME 375. HW 7 Solutions. Original Homework Assigned /2, Due /9. Problem. Palm 8.2 a-b Part (a). T (s) = 5 6s+2 = 5 2 3s+. Here τ = 3 and the multiplicative factor 5/2 shifts the magnitude curve up by 2log5/2

More information

Classical Control Design Guidelines & Tools (L10.2) Transfer Functions

Classical Control Design Guidelines & Tools (L10.2) Transfer Functions Classical Control Design Guidelines & Tools (L10.2) Douglas G. MacMartin Summarize frequency domain control design guidelines and approach Dec 4, 2013 D. G. MacMartin CDS 110a, 2013 1 Transfer Functions

More information

SAR (successive-approximation-register) ADCs

SAR (successive-approximation-register) ADCs By Miro Oljaca and Bonnie C Baker Texas Instruments Start with the right op amp when driving SAR ADCs Using the right operational amplifier in front of your data converter will give you good performance.

More information

and using the step routine on the closed loop system shows the step response to be less than the maximum allowed 20%.

and using the step routine on the closed loop system shows the step response to be less than the maximum allowed 20%. Phase (deg); Magnitude (db) 385 Bode Diagrams 8 Gm = Inf, Pm=59.479 deg. (at 62.445 rad/sec) 6 4 2-2 -4-6 -8-1 -12-14 -16-18 1-1 1 1 1 1 2 1 3 and using the step routine on the closed loop system shows

More information

Hands-on Lab. PID Closed-Loop Control

Hands-on Lab. PID Closed-Loop Control Hands-on Lab PID Closed-Loop Control Adding feedback improves performance. Unity feedback was examined to serve as a motivating example. Lectures derived the power of adding proportional, integral and

More information

ME451: Control Systems. Course roadmap

ME451: Control Systems. Course roadmap ME451: Control Systems Lecture 20 Root locus: Lead compensator design Dr. Jongeun Choi Department of Mechanical Engineering Michigan State University Fall 2008 1 Modeling Course roadmap Analysis Design

More information

EE 370/L Feedback and Control Systems Lab Section Post-Lab Report. EE 370L Feedback and Control Systems Lab

EE 370/L Feedback and Control Systems Lab Section Post-Lab Report. EE 370L Feedback and Control Systems Lab EE 370/L Feedback and Control Systems Lab Post-Lab Report EE 370L Feedback and Control Systems Lab LABORATORY 10: LEAD-LAG COMPENSATOR DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING UNIVERSITY OF NEVADA,

More information

EE Experiment 8 Bode Plots of Frequency Response

EE Experiment 8 Bode Plots of Frequency Response EE16:Exp8-1 EE 16 - Experiment 8 Bode Plots of Frequency Response Objectives: To illustrate the relationship between a system frequency response and the frequency response break frequencies, factor powers,

More information

of harmonic cancellation algorithms The internal model principle enable precision motion control Dynamic control

of harmonic cancellation algorithms The internal model principle enable precision motion control Dynamic control Dynamic control Harmonic cancellation algorithms enable precision motion control The internal model principle is a 30-years-young idea that serves as the basis for a myriad of modern motion control approaches.

More information

ANNA UNIVERSITY :: CHENNAI MODEL QUESTION PAPER(V-SEMESTER) B.E. ELECTRONICS AND COMMUNICATION ENGINEERING EC334 - CONTROL SYSTEMS

ANNA UNIVERSITY :: CHENNAI MODEL QUESTION PAPER(V-SEMESTER) B.E. ELECTRONICS AND COMMUNICATION ENGINEERING EC334 - CONTROL SYSTEMS ANNA UNIVERSITY :: CHENNAI - 600 025 MODEL QUESTION PAPER(V-SEMESTER) B.E. ELECTRONICS AND COMMUNICATION ENGINEERING EC334 - CONTROL SYSTEMS Time: 3hrs Max Marks: 100 Answer all Questions PART - A (10

More information

Lecture 48 Review of Feedback HW # 4 Erickson Problems Ch. 9 # s 7 &9 and questions in lectures I. Review of Negative Feedback

Lecture 48 Review of Feedback HW # 4 Erickson Problems Ch. 9 # s 7 &9 and questions in lectures I. Review of Negative Feedback Lecture 48 Review of Feedback HW # 4 Erickson Problems Ch. 9 # s 7 &9 and questions in lectures I. Review of Negative Feedback A. General. Overview 2. Summary of Advantages 3. Disadvantages B. Buck Converter

More information

CHAPTER 6 INPUT VOLATGE REGULATION AND EXPERIMENTAL INVESTIGATION OF NON-LINEAR DYNAMICS IN PV SYSTEM

CHAPTER 6 INPUT VOLATGE REGULATION AND EXPERIMENTAL INVESTIGATION OF NON-LINEAR DYNAMICS IN PV SYSTEM CHAPTER 6 INPUT VOLATGE REGULATION AND EXPERIMENTAL INVESTIGATION OF NON-LINEAR DYNAMICS IN PV SYSTEM 6. INTRODUCTION The DC-DC Cuk converter is used as an interface between the PV array and the load,

More information

[ á{tå TÄàt. Chapter Four. Time Domain Analysis of control system

[ á{tå TÄàt. Chapter Four. Time Domain Analysis of control system Chapter Four Time Domain Analysis of control system The time response of a control system consists of two parts: the transient response and the steady-state response. By transient response, we mean that

More information

STABILITY IMPROVEMENT OF POWER SYSTEM BY USING PSS WITH PID AVR CONTROLLER IN THE HIGH DAM POWER STATION ASWAN EGYPT

STABILITY IMPROVEMENT OF POWER SYSTEM BY USING PSS WITH PID AVR CONTROLLER IN THE HIGH DAM POWER STATION ASWAN EGYPT 3 rd International Conference on Energy Systems and Technologies 16 19 Feb. 2015, Cairo, Egypt STABILITY IMPROVEMENT OF POWER SYSTEM BY USING PSS WITH PID AVR CONTROLLER IN THE HIGH DAM POWER STATION ASWAN

More information

EE152 F13 Midterm 1. Before starting, please check to make sure that you have all 6 pages Total 100. V0.

EE152 F13 Midterm 1. Before starting, please check to make sure that you have all 6 pages Total 100. V0. EE152 F13 Midterm 1 Name: (please print) Solution In recognition of and in the spirit of the Stanford University Honor Code, I certify that I will neither give nor receive unpermitted aid on this exam.

More information

EE 560 Electric Machines and Drives. Autumn 2014 Final Project. Contents

EE 560 Electric Machines and Drives. Autumn 2014 Final Project. Contents EE 560 Electric Machines and Drives. Autumn 2014 Final Project Page 1 of 53 Prof. N. Nagel December 8, 2014 Brian Howard Contents Introduction 2 Induction Motor Simulation 3 Current Regulated Induction

More information

Figure 1: Unity Feedback System. The transfer function of the PID controller looks like the following:

Figure 1: Unity Feedback System. The transfer function of the PID controller looks like the following: Islamic University of Gaza Faculty of Engineering Electrical Engineering department Control Systems Design Lab Eng. Mohammed S. Jouda Eng. Ola M. Skeik Experiment 3 PID Controller Overview This experiment

More information

DESIGN AND ANALYSIS OF FEEDBACK CONTROLLERS FOR A DC BUCK-BOOST CONVERTER

DESIGN AND ANALYSIS OF FEEDBACK CONTROLLERS FOR A DC BUCK-BOOST CONVERTER DESIGN AND ANALYSIS OF FEEDBACK CONTROLLERS FOR A DC BUCK-BOOST CONVERTER Murdoch University: The Murdoch School of Engineering & Information Technology Author: Jason Chan Supervisors: Martina Calais &

More information

JUNE 2014 Solved Question Paper

JUNE 2014 Solved Question Paper JUNE 2014 Solved Question Paper 1 a: Explain with examples open loop and closed loop control systems. List merits and demerits of both. Jun. 2014, 10 Marks Open & Closed Loop System - Advantages & Disadvantages

More information

International Journal of Research in Advent Technology Available Online at:

International Journal of Research in Advent Technology Available Online at: OVERVIEW OF DIFFERENT APPROACHES OF PID CONTROLLER TUNING Manju Kurien 1, Alka Prayagkar 2, Vaishali Rajeshirke 3 1 IS Department 2 IE Department 3 EV DEpartment VES Polytechnic, Chembur,Mumbai 1 manjulibu@gmail.com

More information

Homework Assignment 13

Homework Assignment 13 Question 1 Short Takes 2 points each. Homework Assignment 13 1. Classify the type of feedback uses in the circuit below (i.e., shunt-shunt, series-shunt, ) Answer: Series-shunt. 2. True or false: an engineer

More information

Equipment and materials from stockroom:! DC Permanent-magnet Motor (If you can, get the same motor you used last time.)! Dual Power Amp!

Equipment and materials from stockroom:! DC Permanent-magnet Motor (If you can, get the same motor you used last time.)! Dual Power Amp! University of Utah Electrical & Computer Engineering Department ECE 3510 Lab 5b Position Control Using a Proportional - Integral - Differential (PID) Controller Note: Bring the lab-2 handout to use as

More information

Application Note #2442

Application Note #2442 Application Note #2442 Tuning with PL and PID Most closed-loop servo systems are able to achieve satisfactory tuning with the basic Proportional, Integral, and Derivative (PID) tuning parameters. However,

More information

Readings: FC: p : lead compensation. 9/9/2011 Classical Control 1

Readings: FC: p : lead compensation. 9/9/2011 Classical Control 1 MM0 Frequency Response Design Readings: FC: p389-407: lead compensation 9/9/20 Classical Control What Have We Talked about in MM9? Control design based on Bode plot Stability margins (Gain margin and phase

More information

CONTROLLER DESIGN FOR POWER CONVERSION SYSTEMS

CONTROLLER DESIGN FOR POWER CONVERSION SYSTEMS CONTROLLER DESIGN FOR POWER CONVERSION SYSTEMS Introduction A typical feedback system found in power converters Switched-mode power converters generally use PI, pz, or pz feedback compensators to regulate

More information

Position Control of DC Motor by Compensating Strategies

Position Control of DC Motor by Compensating Strategies Position Control of DC Motor by Compensating Strategies S Prem Kumar 1 J V Pavan Chand 1 B Pangedaiah 1 1. Assistant professor of Laki Reddy Balireddy College Of Engineering, Mylavaram Abstract - As the

More information

Pole, zero and Bode plot

Pole, zero and Bode plot Pole, zero and Bode plot EC04 305 Lecture notes YESAREKEY December 12, 2007 Authored by: Ramesh.K Pole, zero and Bode plot EC04 305 Lecture notes A rational transfer function H (S) can be expressed as

More information

EECE488: Analog CMOS Integrated Circuit Design Set 7 Opamp Design

EECE488: Analog CMOS Integrated Circuit Design Set 7 Opamp Design EECE488: Analog CMOS Integrated Circuit Design Set 7 Opamp Design References: Analog Integrated Circuit Design by D. Johns and K. Martin and Design of Analog CMOS Integrated Circuits by B. Razavi All figures

More information

Experiment 9. PID Controller

Experiment 9. PID Controller Experiment 9 PID Controller Objective: - To be familiar with PID controller. - Noting how changing PID controller parameter effect on system response. Theory: The basic function of a controller is to execute

More information

Testing Power Sources for Stability

Testing Power Sources for Stability Keywords Venable, frequency response analyzer, oscillator, power source, stability testing, feedback loop, error amplifier compensation, impedance, output voltage, transfer function, gain crossover, bode

More information

Foundations (Part 2.C) - Peak Current Mode PSU Compensator Design

Foundations (Part 2.C) - Peak Current Mode PSU Compensator Design Foundations (Part 2.C) - Peak Current Mode PSU Compensator Design tags: peak current mode control, compensator design Abstract Dr. Michael Hallworth, Dr. Ali Shirsavar In the previous article we discussed

More information

Lecture 10. Lab next week: Agenda: Control design fundamentals. Proportional Control Proportional-Integral Control

Lecture 10. Lab next week: Agenda: Control design fundamentals. Proportional Control Proportional-Integral Control 264 Lab next week: Lecture 10 Lab 17: Proportional Control Lab 18: Proportional-Integral Control (1/2) Agenda: Control design fundamentals Objectives (Tracking, disturbance/noise rejection, robustness)

More information

Magnetic Levitation System

Magnetic Levitation System Magnetic Levitation System Electromagnet Infrared LED Phototransistor Levitated Ball Magnetic Levitation System K. Craig 1 Magnetic Levitation System Electromagnet Emitter Infrared LED i Detector Phototransistor

More information

EE 482 : CONTROL SYSTEMS Lab Manual

EE 482 : CONTROL SYSTEMS Lab Manual University of Bahrain College of Engineering Dept. of Electrical and Electronics Engineering EE 482 : CONTROL SYSTEMS Lab Manual Dr. Ebrahim Al-Gallaf Assistance Professor of Intelligent Control and Robotics

More information

LESSON 21: METHODS OF SYSTEM ANALYSIS

LESSON 21: METHODS OF SYSTEM ANALYSIS ET 438a Automatic Control Systems Technology LESSON 21: METHODS OF SYSTEM ANALYSIS 1 LEARNING OBJECTIVES After this presentation you will be able to: Compute the value of transfer function for given frequencies.

More information

Microelectronic Circuits II. Ch 9 : Feedback

Microelectronic Circuits II. Ch 9 : Feedback Microelectronic Circuits II Ch 9 : Feedback 9.9 Determining the Loop Gain 9.0 The Stability problem 9. Effect on Feedback on the Amplifier Poles 9.2 Stability study using Bode plots 9.3 Frequency Compensation

More information

VECTOR CONTROL SCHEME FOR INDUCTION MOTOR WITH DIFFERENT CONTROLLERS FOR NEGLECTING THE END EFFECTS IN HEV APPLICATIONS

VECTOR CONTROL SCHEME FOR INDUCTION MOTOR WITH DIFFERENT CONTROLLERS FOR NEGLECTING THE END EFFECTS IN HEV APPLICATIONS VECTOR CONTROL SCHEME FOR INDUCTION MOTOR WITH DIFFERENT CONTROLLERS FOR NEGLECTING THE END EFFECTS IN HEV APPLICATIONS M.LAKSHMISWARUPA 1, G.TULASIRAMDAS 2 & P.V.RAJGOPAL 3 1 Malla Reddy Engineering College,

More information

The Discussion of this exercise covers the following points: Angular position control block diagram and fundamentals. Power amplifier 0.

The Discussion of this exercise covers the following points: Angular position control block diagram and fundamentals. Power amplifier 0. Exercise 6 Motor Shaft Angular Position Control EXERCISE OBJECTIVE When you have completed this exercise, you will be able to associate the pulses generated by a position sensing incremental encoder with

More information

Homework Assignment 13

Homework Assignment 13 Question 1 Short Takes 2 points each. Homework Assignment 13 1. Classify the type of feedback uses in the circuit below (i.e., shunt-shunt, series-shunt, ) 2. True or false: an engineer uses series-shunt

More information

Outline. Digital Control. Lecture 3

Outline. Digital Control. Lecture 3 Outline Outline Outline 1 ler Design 2 What have we talked about in MM2? Sampling rate selection Equivalents between continuous & digital Systems Outline ler Design Emulation Method for 1 ler Design

More information

Compensation of a position servo

Compensation of a position servo UPPSALA UNIVERSITY SYSTEMS AND CONTROL GROUP CFL & BC 9610, 9711 HN & PSA 9807, AR 0412, AR 0510, HN 2006-08 Automatic Control Compensation of a position servo Abstract The angular position of the shaft

More information

Linear Regulators: Theory of Operation and Compensation

Linear Regulators: Theory of Operation and Compensation Linear Regulators: Theory of Operation and Compensation Introduction The explosive proliferation of battery powered equipment in the past decade has created unique requirements for a voltage regulator

More information

Homework Assignment 10

Homework Assignment 10 Homework Assignment 10 Question The amplifier below has infinite input resistance, zero output resistance and an openloop gain. If, find the value of the feedback factor as well as so that the closed-loop

More information

Methodology of Stable Probe Card Power Path Design for Wafer Level Testing

Methodology of Stable Probe Card Power Path Design for Wafer Level Testing Intel Test Operation Methodology of Stable Probe Card Power Path Design for Wafer Level Testing Sayed Mobin (sayed.h.mobin@intel.com) Intel Test Operation, Intel Corporation 2006 SouthWest Test Workshop

More information

Calculating the input-output dynamic characteristics. Analyzing dynamic systems and designing controllers.

Calculating the input-output dynamic characteristics. Analyzing dynamic systems and designing controllers. CHAPTER : REVIEW OF FREQUENCY DOMAIN ANALYSIS The long-term response of a proess is nown as the frequeny response whih is obtained from the response of a omplex-domain transfer funtion. The frequeny response

More information

Välkomna till TSRT15 Reglerteknik Föreläsning 5. Summary of lecture 4 Frequency response Bode plot

Välkomna till TSRT15 Reglerteknik Föreläsning 5. Summary of lecture 4 Frequency response Bode plot Välkomna till TSRT15 Reglerteknik Föreläsning 5 Summary of lecture 4 Frequency response Bode plot Summary of last lecture 2 Given a pole polynomial with a varying parameter P(s)+KQ(s)=0 We draw the location

More information

Scalar control synthesis 1

Scalar control synthesis 1 Lecture 4 Scalar control synthesis The lectures reviews the main aspects in synthesis of scalar feedback systems. Another name for such systems is single-input-single-output(siso) systems. The specifications

More information

CHAPTER 2 PID CONTROLLER BASED CLOSED LOOP CONTROL OF DC DRIVE

CHAPTER 2 PID CONTROLLER BASED CLOSED LOOP CONTROL OF DC DRIVE 23 CHAPTER 2 PID CONTROLLER BASED CLOSED LOOP CONTROL OF DC DRIVE 2.1 PID CONTROLLER A proportional Integral Derivative controller (PID controller) find its application in industrial control system. It

More information

PERSONALIZED EXPERIMENTATION IN CLASSICAL CONTROLS WITH MATLAB REAL TIME WINDOWS TARGET AND PORTABLE AEROPENDULUM KIT

PERSONALIZED EXPERIMENTATION IN CLASSICAL CONTROLS WITH MATLAB REAL TIME WINDOWS TARGET AND PORTABLE AEROPENDULUM KIT Eniko T. Enikov, University of Arizona Estelle Eke, California State University Sacramento PERSONALIZED EXPERIMENTATION IN CLASSICAL CONTROLS WITH MATLAB REAL TIME WINDOWS TARGET AND PORTABLE AEROPENDULUM

More information

PID Tuner (ver. 1.0)

PID Tuner (ver. 1.0) PID Tuner (ver. 1.0) Product Help Czech Technical University in Prague Faculty of Mechanical Engineering Department of Instrumentation and Control Engineering This product was developed within the subject

More information

COMPARISON OF TUNING METHODS OF PID CONTROLLER USING VARIOUS TUNING TECHNIQUES WITH GENETIC ALGORITHM

COMPARISON OF TUNING METHODS OF PID CONTROLLER USING VARIOUS TUNING TECHNIQUES WITH GENETIC ALGORITHM JOURNAL OF ELECTRICAL ENGINEERING & TECHNOLOGY Journal of Electrical Engineering & Technology (JEET) (JEET) ISSN 2347-422X (Print), ISSN JEET I A E M E ISSN 2347-422X (Print) ISSN 2347-4238 (Online) Volume

More information

BUCK Converter Control Cookbook

BUCK Converter Control Cookbook BUCK Converter Control Cookbook Zach Zhang, Alpha & Omega Semiconductor, Inc. A Buck converter consists of the power stage and feedback control circuit. The power stage includes power switch and output

More information

CHAPTER 9 FEEDBACK. NTUEE Electronics L.H. Lu 9-1

CHAPTER 9 FEEDBACK. NTUEE Electronics L.H. Lu 9-1 CHAPTER 9 FEEDBACK Chapter Outline 9.1 The General Feedback Structure 9.2 Some Properties of Negative Feedback 9.3 The Four Basic Feedback Topologies 9.4 The Feedback Voltage Amplifier (Series-Shunt) 9.5

More information

PID Controller Design for Two Tanks Liquid Level Control System using Matlab

PID Controller Design for Two Tanks Liquid Level Control System using Matlab International Journal of Electrical and Computer Engineering (IJECE) Vol. 5, No. 3, June 2015, pp. 436~442 ISSN: 2088-8708 436 PID Controller Design for Two Tanks Liquid Level Control System using Matlab

More information

PROCEEDINGS OF THE SECOND INTERNATIONAL CONFERENCE ON SCIENCE AND ENGINEERING

PROCEEDINGS OF THE SECOND INTERNATIONAL CONFERENCE ON SCIENCE AND ENGINEERING POCEEDINGS OF THE SECOND INTENATIONAL CONFEENCE ON SCIENCE AND ENGINEEING Organized by Ministry of Science and Technology DECEMBE -, SEDONA HOTEL, YANGON, MYANMA Design and Analysis of PID Controller for

More information

EC6405 - CONTROL SYSTEM ENGINEERING Questions and Answers Unit - II Time Response Analysis Two marks 1. What is transient response? The transient response is the response of the system when the system

More information

Välkomna till TSRT15 Reglerteknik Föreläsning 8

Välkomna till TSRT15 Reglerteknik Föreläsning 8 Välkomna till TSRT15 Reglerteknik Föreläsning 8 Summary of lecture 7 More Bode plot computations Lead-lag design Unstable zeros - frequency plane interpretation Summary of last lecture 2 W(s) H(s) R(s)

More information

Gain From Using One of Process Control's Emerging Tools: Power Spectrum

Gain From Using One of Process Control's Emerging Tools: Power Spectrum Gain From Using One of Process Control's Emerging Tools: Power Spectrum By Michel Ruel (TOP Control) and John Gerry (ExperTune Inc.) Process plants are starting to get big benefits from a widely available

More information

Spacecraft Pitch PID Controller Tunning using Ziegler Nichols Method

Spacecraft Pitch PID Controller Tunning using Ziegler Nichols Method IOR Journal of Electrical and Electronics Engineering (IOR-JEEE) e-in: 2278-1676,p-IN: 2320-3331, Volume 9, Issue 6 Ver. I (Nov Dec. 2014), PP 62-67 pacecraft Pitch PID Controller Tunning using Ziegler

More information

BSNL TTA Question Paper Control Systems Specialization 2007

BSNL TTA Question Paper Control Systems Specialization 2007 BSNL TTA Question Paper Control Systems Specialization 2007 1. An open loop control system has its (a) control action independent of the output or desired quantity (b) controlling action, depending upon

More information

Closed-Loop Position Control, Proportional Mode

Closed-Loop Position Control, Proportional Mode Exercise 4 Closed-Loop Position Control, Proportional Mode EXERCISE OBJECTIVE To describe the proportional control mode; To describe the advantages and disadvantages of proportional control; To define

More information

Closed-Loop Speed Control, Proportional-Plus-Integral-Plus-Derivative Mode

Closed-Loop Speed Control, Proportional-Plus-Integral-Plus-Derivative Mode Exercise 7 Closed-Loop Speed Control, EXERCISE OBJECTIVE To describe the derivative control mode; To describe the advantages and disadvantages of derivative control; To describe the proportional-plus-integral-plus-derivative

More information