The Design of Feedback Control Systems

Slides:



Advertisements
Similar presentations
Unit 4 The Performance of Second Order System Open Loop & Close Loop Open Loop: Close Loop:
Advertisements

The Performance of Feedback Control Systems
PID Controllers and PID tuning
Modern Control Systems (MCS)
Design with Root Locus Lecture 9.
Chapter 4: Basic Properties of Feedback
PID CONTROLLER. Click to edit the outline text format  Second Outline Level Third Outline Level  Fourth Outline Level Fifth Outline Level Sixth Outline.
PID Control -1 + Professor Walter W. Olson
LECTURE#10 PID CONTROLLER
PID a11 CENG4480_A4 DC motor Control Using PID (proportional-integral-derivative) control.
CHE 185 – PROCESS CONTROL AND DYNAMICS
Chapter 10 – The Design of Feedback Control Systems
Chapter 10 – The Design of Feedback Control Systems PID Compensation Networks.
ECE 4951 Lecture 5: PID Control of Processes. PID Control A closed loop (feedback) control system, generally with Single Input-Single Output (SISO) A.
Control Theory (2) Jeremy Wyatt School of Computer Science University of Birmingham.
Process Control Instrumentation II
Lecture 9: Compensator Design in Frequency Domain.
Examples of Control Systems Application. Modeling the Ball and Beam Experiment.
PID Control & ACS550 and ACH550
LECTURE#11 PID CONTROL AUTOMATION & ROBOTICS
PID Control and Root Locus Method
Proportional/Integral/Derivative Control
Lecture 5: PID Control.
Robot Sensors Kevin Watson and Rich Petras. Overview ➲ Sensors ● Micro Switch ● Gyro ● Encoders ➲ Command Sequencing ➲ PID Control.
INC341 Design with Root Locus
Proportional control Consider forward path gain A Feedback and Control If the size of the loop gain is large, that is if |A  >> 1, then or.
CS 478: Microcontroller Systems University of Wisconsin-Eau Claire Dan Ernst Feedback Control.
Low Level Control. Control System Components The main components of a control system are The plant, or the process that is being controlled The controller,
Feedback Control system
PID. The proportional term produces an output value that is proportional to the current error value. Kp, called the proportional gain constant.
Modern Control System EKT 308
MESB374 System Modeling and Analysis PID Controller Design
PID CONTROLLERS By Harshal Inamdar.
Lecture 17: Introduction to Control (part III)
Modern Control System EKT 308 Root Locus and PID controllers.
Control 3 Keypoints: PID control
Chapter 4 A First Analysis of Feedback Feedback Control A Feedback Control seeks to bring the measured quantity to its desired value or set-point (also.
Controller design by R.L. Typical setup: C(s)G p (s) Root Locus Based Controller Design Goal: 1.Select poles and zero of C(s) so that R.L. pass through.
SKEE 3143 Control Systems Design Chapter 2 – PID Controllers Design
BIRLA VISHWAKARMA MAHAVIDHYALAYA ELECTRONICS & TELECOMUNICATION DEPARTMENT o – ANKUR BUSA o – KHUSHBOO DESAI UNDER THE GUIDENCE.
Vision Lab System VISION SYSTEM Chapter 9. Design via Root Locus Youngjoon Han
CIS 540 Principles of Embedded Computation Spring Instructor: Rajeev Alur
Exercise 1 Suppose we have a simple mass, spring, and damper problem. Find The modeling equation of this system (F input, x output). The transfer function.
Page : PID Controller Chapter 3 Design of Discrete- Time control systems PID C ontroller.
Modern Control Systems 10th Edition
PID Control for Embedded Systems
Salman Bin Abdulaziz University
PID Control Systems (Proportional, Integral, Derivative)
Chapter 7 The Root Locus Method The root-locus method is a powerful tool for designing and analyzing feedback control systems The Root Locus Concept The.
Control engineering and signal processing
PID Controllers Jordan smallwood.
Design via Root Locus (Textbook Ch.9).
Lecture 20: Root Locus for Design
Lec 14. PID Controller Design
Examples on Compensator Design Spring 2011
Modern Control Systems (MCS)
PID Controller.
Control Systems Lect. 4 PID Basil Hamed.
Basic Design of PID Controller
Chapter 9 Design via Root Locus <<<4.1>>>
Chapter 9 Design via Root Locus <<<4.1>>>
Beyond p-only control via root locus
What damping ratio range do we typically want?___0.4~1____
Controller design by R.L.
Compensators.
E(s): Laplace transform of the error e(t)
Dynamical Systems Basics
Design via Root Locus Techniques
Modern Control Systems (MCS)
x points: -7, -4+3i HW- 05 Problem:05-01
Presentation transcript:

The Design of Feedback Control Systems PID Compensation Networks

Different Types of Feedback Control On-Off Control This is the simplest form of control.  

Proportional Control A proportional controller attempts to perform better than the On-off type by applying power in proportion to the difference in temperature between the measured and the set-point. As the gain is increased the system responds faster to changes in set-point but becomes progressively underdamped and eventually unstable. The final temperature lies below the set-point for this system because some difference is required to keep the heater supplying power.  

Proportional, Derivative Control   The stability and overshoot problems that arise when a proportional controller is used at high gain can be mitigated by adding a term proportional to the time-derivative of the error signal. The value of the damping can be adjusted to achieve a critically damped response.  

Proportional+Integral+Derivative Control Although PD control deals neatly with the overshoot and ringing problems associated with proportional control it does not cure the problem with the steady-state error. Fortunately it is possible to eliminate this while using relatively low gain by adding an integral term to the control function which becomes

The Characteristics of P, I, and D controllers A proportional controller (Kp) will have the effect of reducing the rise time and will reduce, but never eliminate, the steady-state error. An integral control (Ki) will have the effect of eliminating the steady-state error, but it may make the transient response worse. A derivative control (Kd) will have the effect of increasing the stability of the system, reducing the overshoot, and improving the transient response.

Proportional Control By only employing proportional control, a steady state error occurs. Proportional and Integral Control The response becomes more oscillatory and needs longer to settle, the error disappears. Proportional, Integral and Derivative Control All design specifications can be reached.

The Characteristics of P, I, and D controllers CL RESPONSE RISE TIME OVERSHOOT SETTLING TIME S-S ERROR Kp Decrease Increase Small Change Ki Eliminate Kd

Tips for Designing a PID Controller 1. Obtain an open-loop response and determine what needs to be improved 2. Add a proportional control to improve the rise time 3. Add a derivative control to improve the overshoot 4. Add an integral control to eliminate the steady-state error Adjust each of Kp, Ki, and Kd until you obtain a desired overall response. Lastly, please keep in mind that you do not need to implement all three controllers (proportional, derivative, and integral) into a single system, if not necessary. For example, if a PI controller gives a good enough response (like the above example), then you don't need to implement derivative controller to the system. Keep the controller as simple as possible.

Open-Loop Control - Example num=1; den=[1 10 20]; step(num,den)

Proportional Control - Example The proportional controller (Kp) reduces the rise time, increases the overshoot, and reduces the steady-state error. MATLAB Example   Kp=300; num=[Kp]; den=[1 10 20+Kp]; t=0:0.01:2; step(num,den,t) K=100 K=300

Proportional - Derivative - Example The derivative controller (Kd) reduces both the overshoot and the settling time. MATLAB Example Kp=300; Kd=10; num=[Kd Kp]; den=[1 10+Kd 20+Kp]; t=0:0.01:2; step(num,den,t) Kd=10 Kd=20

Proportional - Integral - Example The integral controller (Ki) decreases the rise time, increases both the overshoot and the settling time, and eliminates the steady-state error MATLAB Example Kp=30; Ki=70; num=[Kp Ki]; den=[1 10 20+Kp Ki]; t=0:0.01:2; step(num,den,t) Ki=70 Ki=100

RLTOOL Syntax rltool rltool(sys) rltool(sys,comp)

RLTOOL

RLTOOL

RLTOOL

RLTOOL

Example - Practice Consider the following configuration:

Example - Practice The design a system for the following specifications: · Zero steady state error · Settling time within 5 seconds · Rise time within 2 seconds · Only some overshoot permitted