ET 438a Automatic Control Systems Technology Lesson 17: Combined Mode Control 1 lesson17et438a.pptx.

Slides:



Advertisements
Similar presentations
Lecture 2 Operational Amplifiers
Advertisements

Polynomial Inequalities in One Variable
Discrete Controller Design
Operational Amplifiers 1. Copyright  2004 by Oxford University Press, Inc. Microelectronic Circuits - Fifth Edition Sedra/Smith2 Figure 2.1 Circuit symbol.
Lecture 4: Signal Conditioning
Experiment 17 A Differentiator Circuit
دکتر حسين بلندي- دکتر سید مجید اسما عیل زاده
Nyquist Plot – First Order Lag
The Proportional-Integral-Derivative Controller
CHE 185 – PROCESS CONTROL AND DYNAMICS
Quiz: Find an expression for in terms of the component symbols.
Department of EECS University of California, Berkeley EECS 105 Fall 2003, Lecture 2 Lecture 2: Transfer Functions Prof. Niknejad.
1 ECE 3336 Introduction to Circuits & Electronics MORE on Operational Amplifiers Spring 2015, TUE&TH 5:30-7:00 pm Dr. Wanda Wosik Set #14.
VARIABLE-FREQUENCY NETWORK
ME 6405 Operational Amplifiers 10/2/12
LECTURE#11 PID CONTROL AUTOMATION & ROBOTICS
ME 270 Final Project Presentation Operational Amplifiers.
IDEAL OPERATIONAL AMPLIFIER AND OP-AMP CIRCUITS
Experiment 17 A Differentiator Circuit
Inverting Amplifier. Introduction An inverting amplifier is a type of electrical circuit that reverses the flow of current passing through it. This reversal.
Differential Amplifier
Ch. 6 Single Variable Control
Agenda and Notes Today, during class! 9:30 a.m. Boeing Space and Intelligence Systems (Matt and Matt) 4 extra credit assignments available at the bottom.
OPA348 High Pass Filter Tim Green, MGTS Precision Linear Analog Applications July 9,
Chapter 13 1 Frequency Response Analysis Sinusoidal Forcing of a First-Order Process For a first-order transfer function with gain K and time constant,
Chapter 3 mathematical Modeling of Dynamic Systems
1 Chapter 5 Sinusoidal Input. 2 Chapter 5 Examples: 1.24 hour variations in cooling water temperature Hz electrical noise (in USA!) Processes are.
University of Virginia PID Controllers Jack Stankovic University of Virginia Spring 2015.
Feedback Controllers Chapter 8
Module 2 Operational Amplifier Basics
SKEE 3143 Control Systems Design Chapter 2 – PID Controllers Design
 The differentiator or differentiating amplifier is as shown in figure.  This circuit will perform the mathematical operation of differentiation.
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.
Operational Amplifiers Chapter 10 Boylestad Electronic Devices and Circuit Theory.
Lesson 19: Process Characteristics- 1 st Order Lag & Dead-Time Processes ET 438a Automatic Control Systems Technology lesson19et438a.pptx 1.
ET 438a Automatic Control Systems Technology 1lesson4et438a.pptx.
ET 438a Automatic Control Systems Technology Lesson 1: Introduction to Control Systems Technology 1 lesson1et438a.pptx.
Lesson 14: Transfer Functions of Dc Motors
OPERATIONAL AMPLIFIER
Ch7 Operational Amplifiers and Op Amp Circuits
Lesson 3: Operational Amplifier Circuits in Analog Control
Figure 5.1 The eight-lead DIP package (top view).
Lesson 8: Modeling Physical systems with Linear differential equations
Lesson 21: Methods of System Analysis
Lesson 16: Basic Control Modes
Lesson 22: Determining Control Stability Using Bode Plots
Operational Amplifiers
BIOELECTRONICS 1 Lec 9: Op Amp Applications By
Chapter 10: Operational Amplifiers
Lesson 13: Effects of Negative Feedback on System disturbances
Lesson 20: Process Characteristics- 2nd Order Lag Process
Lesson 12: Transfer Functions In The Laplace Domain
Lesson 15: Bode Plots of Transfer Functions
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.
Lesson 2: Performance of Control Systems
What is an Op-Amp Low cost integrating circuit consisting of:
TOPIC 3: FREQUENCY SELECTIVE CIRCUITS
Lesson 18: Integral Process Characteristics
Feedback Amplifiers.
Digital Control Systems Waseem Gulsher
Chapter 11 Amplifiers: Specifications and External Characteristics
Digital Control Systems (DCS)
Frequency Response Analysis
Lesson 12: Analog Signal Conditioning
Operational Amplifier (Op-Amp)-μA741
Mathematical Models of Control Systems
Frequency Response Analysis
CHAPTER 59 TRANSISTOR EQUIVALENT CIRCUITS AND MODELS
Frequency response I As the frequency of the processed signals increases, the effects of parasitic capacitance in (BJT/MOS) transistors start to manifest.
Presentation transcript:

ET 438a Automatic Control Systems Technology Lesson 17: Combined Mode Control 1 lesson17et438a.pptx

Learning Objectives lesson17et438a.pptx 2 After this presentation you will be able to:  Describe the common control mode combinations used in analog control systems  List the characteristics of combined control modes  Write the time, Laplace and transfer functions of combined control modes  Identify the Bode plots of combined control modes  Design OP AMP circuits that realize theoretical combined control mode performance.

Proportional-Integral Control lesson17et438a.pptx 3 Control Mode Characteristics: 1. Proportional action produces fast response to large load changes. 2. Integral action drives output to zero steady-state error. 3. Adds one pole and one zero to system transfer function. 4. Used on systems that have large load changes and where proportional only action fails to reduce steady-state error to acceptable limits.

Proportional-Integral Control lesson17et438a.pptx 4 Mathematical Representations Time Function: Laplace Function: Transfer Function: Proportional-Integral (PI) Controllers add a pole at s=0 and zero at s=0 to system transfer function zero pole All initial conditions set to zero in transfer function

Proportional-Integral Control Response lesson17et438a.pptx 5 Time plots of PI controller output for piece-wise linear error input Proportional mode gives instantaneous response to error while integral mode decrease error over time. Constant error produces linearly increasing controller output

OP AMP Realization of PI Controller lesson17et438a.pptx 6 PI Controller Circuit Derive the transfer function from the generalized gain formula for inverting OP AMP circuits Simplify Controller introduces a pole at s=0 and zero at s=-1/R f C

Bode Plot of PI Controller lesson17et438a.pptx 7 Let R i = 10 k , R f = 100 k  and C=0.01  F then produce Bode plot ri=input('Enter value of input resistance: '); c=input('Enter value of capacitance: '); rf=input('Enter value of feedback resistance: '); % compute transfer function model parameters for % PI controller % compute numerator parameter tau=rf*c; % compute parameter for denominator tau1 = ri*c; % build transfer function % denominator form a1*s^2+a2s+a3 Av=tf([tau 1],[tau1 0]) %plot graph bode(Av); MatLAB Code

Bode Plot of PI Controller lesson17et438a.pptx 8 Proportional Action Integral Action Integral action is below 1000 rad/sec. 1/R f C set break point

PI Controller Design lesson17et438a.pptx 9 Example 17-1: Design a PI OP AMP controller with K p = 100 and an integral break frequency of 100 rad/sec. R i = 10k  Answer

Proportional-Derivative Control Mode lesson17et438a.pptx 10 Proportional-Derivative (PD) Control combines proportional and derivative actions. Used in processes that have sudden load changes that proportional only cannot handle. Mathematical Representations Time Function: Laplace Function: Transfer Function:

OP AMP Realization of PD Controller lesson17et438a.pptx 11 OP AMP PD circuit Note: 1/K d = the derivative action break point frequency 1/  K d = limiter action break point frequency 0≤  ≤1

PD Controller Design lesson17et438a.pptx 12 Example 17-2: Design a PD control that has a proportional gain of 10 a derivative action break point of 100 rad/sec and a limiter frequency break point of 1000 rad/sec. C = 0.1  F. Draw the OP AMP circuit and place all values on the schematic. Example 17-2 Solution Answer

Example 17-2 Solution (2) lesson17et438a.pptx 13 Now compute the alpha value from the rate limit break frequency Answer

Example 17-2 Solution (3) lesson17et438a.pptx 14 Now find the value of R I From previous calculations R d = 100 k  and  0.1 Answer

Example 17-2 Solution (4) lesson17et438a.pptx 15 Find R f and R o use proportional gain and previously computed values Answer

Example 17-2 Solution (5) lesson17et438a.pptx 16 Draw OP AMP Schematic and label components Transfer function Negative sign causes 180 degree phase shift due to inverting configuration. Add Inverting OP AMP circuit with gain of -1 to remove this

PD Bode Plot lesson17et438a.pptx 17 Use MatLAB to generate the Bode plot of the PD controller designed in Example 17-2 ri=11.11e3; c=0.1e-6; rf=1.111e6; rd=1e5; % compute transfer function model parameters for % PD controller % compute parameters kd=rd*c; alpha=ri./(ri+rd); kp=-rf./(ri+rd); % build transfer function % denominator form a1*s^2+a2s+a3 % numerator for b1*s^2+b2s+b3 Av1=kp*tf([kd 1],[alpha*kd 1]) %plot graph bode(Av1); MatLAB Code Define variables Compute parameters Generate transfer function and plot response

PD Bode Plot lesson17et438a.pptx 18 Computed transfer function -0.1 s s + 1 Derivative Break f Rate limit Break f

Proportional + Integral + Derivative Controllers lesson17et438a.pptx 19 Proportional-Integral-Derivative (PID) Controller Characteristics: 1.Proportional mode provides fast response to large process load changes 2.Integral mode removes the steady-state (offset) error from the output 3.Derivative mode improves system stability and improves response to rapid load changes. 4.Widely used in industry

Mathematical Relationships for PID Controllers lesson17et438a.pptx 20 Time Function: Laplace Function: Transfer Function:

OP AMP Realization of PID Controller lesson17et438a.pptx 21 Single OP AMP realization of PID control Notice that the parameters are dependent on each other. Changing alpha will also change K p. Modify system response by changing the values of K p, K d, K I and .

OP AMP Realization of PID Controller lesson17et438a.pptx 22 Multiple OP AMPs allow independent adjustment of PID parameters.

OP AMP Realization of PID Controller lesson17et438a.pptx 23 Multiple OP AMP Realization Compute common denominator Define the follow relationships between components and parameters

Multiple OP AMP PID Realization lesson17et438a.pptx 24 Divide numerator and denominator by R I C I and make defined substitutions Where Controller adds two zeros and two poles to System. Change system response by changing Parameters K p K I, K d .

PID Controller Design lesson17et438a.pptx 25 Example 17-3: Design a PID controller using the circuit above. Proportional gain is 5. The derivative time constant is 0.5 seconds. The integral gain is and  =0.1. The capacitor for the integrator C i =10  F and the differentiator, C d = 1  F R f = 1 M . Find values for all other components. Example 17-3 Solution Define parameters Answer

Example 17-3 Solution (2) lesson17et438a.pptx 26 Find the feedback resistor value for the differentiator Answer Now find the input resistor values for the summing amplifier Answer

Example 17-3 Solution (3) lesson17et438a.pptx 27 Find the input resistor value for the differentiator Solve for R id and substitute in all known values Answer

End Lesson 17: Combined Mode Control ET 438a Automatic Control Systems Technology lesson17et438a.pptx 28