When you configure a PID loop in iocontrol, choose one of the following algorithms: Velocity ISA Parallel Interacting

Size: px
Start display at page:

Download "When you configure a PID loop in iocontrol, choose one of the following algorithms: Velocity ISA Parallel Interacting"

Transcription

1 When you configure a PID loop in iocontrol, choose one of the following algorithms: Velocity ISA Parallel Interacting The ISA, Parallel and Interacting algorithms are functionally equivalent; the only difference is the way the tuning constants are factored. The identical and differing equations for all algorithms are shown in the following sections. Key to Terms Used in Equations PV Process variable; the input to the PID TuneD Derivative tuning parameter. In units of seconds. Increasing magnitude increases influence on output. SP Setpoint Output Output from the PID InLo, InHi Range of the input Err_1 The Error (PV SP) from the previous scan OutLo, OutHi Range of the output Integral Integrator. Anti-windup is applied after the output is determined to be within bounds. Gain Proportional tuning parameter. Unitless. May be negative. PvIn_1, PvIn_2 PV from the previous scan and the scan before that. TuneI Integral tuning parameter. In units of 1 seconds. Increasing magnitude increases influence on output. ScanTime Actual scan time (time since previous scan)

2 Equations Common to All Algorithms Err = PV - SP Span = (OutHi - OutLo) / (InHi - InLo) Output = Output + FeedForward * TuneFF Velocity Algorithm The velocity algorithm is similar to the algorithm used in OptoControl for Mistic I/O except that the derivative does not act on setpoint changes. TermP = ( Err - Err_1 ) TermI = TuneI * ScanTime * Err TermD = TuneD / ScanTime * ( PvIn - 2 * PvIn_1 + PvIn_2 ) ΔOutput = Span * Gain * ( ΔTermP + ΔTermI + ΔTermD ) Non-velocity Algorithms These equations were derived from the article A Comparison of PID Control Algorithms by John P. Gerry in Control Engineering (March 1987). These three equations are the same except for the tuning coefficients; converting from one equation to another is merely a matter of converting the tuning coefficients. Equations common to all but the velocity algorithm: Integral += Err TermP = Err TermI = TuneI * ScanTime * Integral TermD = TuneD / ScanTime * ( PvIn - PvIn_1 ) Ideal or ISA Algorithm: Output = Span * Gain * ( TermP + TermI + TermD ) Parallel Algorithm: Output = Span * ( Gain * TermP + TermI + TermD ) Interacting Algorithm: Output = Span * Gain * ( TermP + TermI ) * ( 1 + TermD )

3 The PID algorithm used with mistic protocol brains, such as the serial B3000 and the G4A8R, is the velocity PID algorithm. It is an interacting type with a reverse output. Interacting means that the gain is distributed to each term in the equation. Therefore, if you double the gain, you also double the integral and derivative terms. Reverse output means that the output increases as the input decreases. The reverse output mode is used for pump-up control, such as maintaining level, pressure, and flow as well as heating. For cooling or pump-down control, direct output is required. To switch to direct, simply reverse the sign of the gain. For example, a gain of 1.28 would become Note that this is not negative gain. The minus sign only serves to change the type of PID output from reverse to direct. This velocity PID algorithm (also referred to as the incremental PID algorithm) is inherently anti-windup since it has no summation in the integral term to saturate. The algorithm is described on pages of the book Microprocessors in Instruments and Control by Robert J. Bibbero, published by John Wiley and Sons.

4 Gain (P) For those familiar with the term proportional band, gain is simply the inverse. Gain acts directly on the change in error since the last scan. (Error is the setpoint minus the input value in engineering units.) Therefore, in the case of steady-state error (that is, change in error = 0), gain alone has no effect on the output. For this reason, gain cannot be used alone. Gain is also used as a multiplier on the integral and derivative. The velocity PID algorithm uses gain much as it is used in the Honeywell type A PID and the Bailey error input type PID. Higher gain results in increased output change. Too much gain results in output oscillation. Too little gain results in very slow performance. Integral (I) This term acts only on the current error. It is used to reduce the current error to zero. Note that during steady-state conditions, integral multiplied by current error multiplied by gain is the only thing affecting the output. The larger the integral value, the larger the change in output. A positive integral value is required. Integral that is too low will result in undershoot. Integral that is too high will result in overshoot.

5 Derivative (D) This term acts only on the change in slope of the input signal. Its purpose is to anticipate where the input will be on the next scan based on a change in the rate of change of the input value. In other words, it changes the output as the input gets near the setpoint to prevent overshooting or undershooting. Derivative is used in feed forward applications and in systems where the loop dead time is long. Its action type is unlimited (that is, it has no filtering). If the input signal is noisy and the derivative value is greater than zero, the input value must be filtered. See Input Filtering on page for details. If the slope of the input signal has remained unchanged for the last two scans, the derivative has no effect. Judging by the change in direction of the input, the derivative contributes an appropriate value to the output that is consistent with where the input will be at the next scan if it continues at its current rate of change. The derivative is very useful in loops with a long dead time and long time constants. To disable it, set it to zero. Integral-Derivative Interaction Integral and derivative can try to move the output in opposite directions. When this is the case, the derivative should be large enough to overcome the integral. Since the derivative is looking ahead based on the change in slope, it has a bigger picture than the integral does. This interaction can be observed when the input is below the setpoint and is rising fast. The integral tries to increase the output (which only makes things worse), while the derivative tries to decrease the output. The derivative does this because at the current rate of change of the input, there will be an input overshoot if the output is increased. Therefore, the derivative needs to be large enough to counteract the integral when necessary.

6 Solving Tuning Problems Oscillations Oscillations can be caused either by gain that is too high or integral that is too high. If the process variable oscillates below the setpoint, it is probably caused by the gain being too high. If it oscillates at the setpoint, it is not possible to know by looking at the graphs which tuning parameter is causing the problem. Try cutting either the gain or integral, but not both at the same time, to find out which one is causing the problem. Overshoot Overshoot is usually caused by the integral being too high. Gain that is too high can also cause overshoot, but that is usually in conjunction with the integral being too high. Any PID loop can be made to not overshoot and not oscillate if the gain and integral are set low enough, but the response will be slow. Performance There is a limit on how fast a good, stable response can be. The middle chart is the best that can be done with no overshoot and no oscillation. The ones with the gain and integral too high move toward the setpoint faster, but they overshoot and oscillate. There will be a point that is the best the PID loop can be tuned, and it will not be possible to get a faster stable response. There are trade-offs between having a fast response and having a stable PID loop that does not overshoot the setpoint.

7

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

SxWEB PID algorithm experimental tuning

SxWEB PID algorithm experimental tuning SxWEB PID algorithm experimental tuning rev. 0.3, 13 July 2017 Index 1. PID ALGORITHM SX2WEB24 SYSTEM... 2 2. PID EXPERIMENTAL TUNING IN THE SX2WEB24... 3 2.1 OPEN LOOP TUNING PROCEDURE... 3 2.1.1 How

More information

6.4 Adjusting PID Manually

6.4 Adjusting PID Manually Setting Display Parameter Setting Display Operation Display > PARAMETER or PARA key for 3 seconds (to [MODE] Menu Display) > Right arrow key (to [PID] Menu Display ) > SET/ENTER key (The setting parameter

More information

A M E M B E R O F T H E K E N D A L L G R O U P

A M E M B E R O F T H E K E N D A L L G R O U P A M E M B E R O F T H E K E N D A L L G R O U P Basics of PID control in a Programmable Automation Controller Technology Summit September, 2018 Eric Paquette Definitions-PID A Proportional Integral Derivative

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

-binary sensors and actuators (such as an on/off controller) are generally more reliable and less expensive

-binary sensors and actuators (such as an on/off controller) are generally more reliable and less expensive Process controls are necessary for designing safe and productive plants. A variety of process controls are used to manipulate processes, however the most simple and often most effective is the PID controller.

More information

PID. What is PID and how does it work? Auto tuning PID with the 5400 Controller. Visit our website at:

PID. What is PID and how does it work? Auto tuning PID with the 5400 Controller. Visit our website at: PID What is PID and how does it work? Auto tuning PID with the 5400 Controller What is PID? PID control (pronounced P-eye-Dee) stands for Proportional-Integral-Derivative, and is a mathematical method

More information

Linear Control Systems Lectures #5 - PID Controller. Guillaume Drion Academic year

Linear Control Systems Lectures #5 - PID Controller. Guillaume Drion Academic year Linear Control Systems Lectures #5 - PID Controller Guillaume Drion Academic year 2018-2019 1 Outline PID controller: general form Effects of the proportional, integral and derivative actions PID tuning

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

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

PROCESS DYNAMICS AND CONTROL

PROCESS DYNAMICS AND CONTROL Objectives of the Class PROCESS DYNAMICS AND CONTROL CHBE320, Spring 2018 Professor Dae Ryook Yang Dept. of Chemical & Biological Engineering What is process control? Basics of process control Basic hardware

More information

PROCESS DYNAMICS AND CONTROL

PROCESS DYNAMICS AND CONTROL PROCESS DYNAMICS AND CONTROL CHBE306, Fall 2017 Professor Dae Ryook Yang Dept. of Chemical & Biological Engineering Korea University Korea University 1-1 Objectives of the Class What is process control?

More information

Application Note. Renu Electronics Private Limited. PID Instruction In IEC. Page 1

Application Note. Renu Electronics Private Limited. PID Instruction In IEC.   Page 1 Application Note PID Instruction In IEC This document explains about PID Instruction in IEC. This application note is applicable for FP and FL products (IEC Supported). www.renuelectronics.com Page 1 Contents

More information

MM7 Practical Issues Using PID Controllers

MM7 Practical Issues Using PID Controllers MM7 Practical Issues Using PID Controllers Readings: FC textbook: Section 4.2.7 Integrator Antiwindup p.196-200 Extra reading: Hou Ming s lecture notes p.60-69 Extra reading: M.J. Willis notes on PID controler

More information

Procidia Control Solutions Dead Time Compensation

Procidia Control Solutions Dead Time Compensation APPLICATION DATA Procidia Control Solutions Dead Time Compensation AD353-127 Rev 2 April 2012 This application data sheet describes dead time compensation methods. A configuration can be developed within

More information

PID Control Technical Notes

PID Control Technical Notes PID Control Technical Notes General PID (Proportional-Integral-Derivative) control action allows the process control to accurately maintain setpoint by adjusting the control outputs. In this technical

More information

Process Control Laboratory Using Honeywell PlantScape

Process Control Laboratory Using Honeywell PlantScape Process Control Laboratory Using Honeywell PlantScape Christi Patton Luks, Laura P. Ford University of Tulsa Abstract The University of Tulsa has recently revised its process controls class from one 3-hour

More information

Closed-loop System, PID Controller

Closed-loop System, PID Controller Closed-loop System, PID Controller M. Fikar Department of Information Engineering and Process Control Institute of Information Engineering, Automation and Mathematics FCFT STU in Bratislava TAR MF (IRP)

More information

Basic Tuning for the SERVOSTAR 400/600

Basic Tuning for the SERVOSTAR 400/600 Basic Tuning for the SERVOSTAR 400/600 Welcome to Kollmorgen s interactive tuning chart. The first three sheets of this document provide a flow chart to describe tuning the servo gains of a SERVOSTAR 400/600.

More information

Level control drain valve tuning. Walter Bischoff PE Brunswick Nuclear Plant

Level control drain valve tuning. Walter Bischoff PE Brunswick Nuclear Plant Level control drain valve tuning Walter Bischoff PE Brunswick Nuclear Plant Tuning Introduction Why is it important PI and PID controllers have been accepted throughout process design and all forms of

More information

PID CONFIGURATION AND TUNING: SNAP ULTIMATE I/O LEARNING CENTER SUPPLEMENT

PID CONFIGURATION AND TUNING: SNAP ULTIMATE I/O LEARNING CENTER SUPPLEMENT PID CONFIGURATION AND TUNING: SNAP ULTIMATE I/O LEARNING CENTER SUPPLEMENT Form 1410-050103 January 2004 43044 Business Park Drive Temecula CA 92590-3614 Phone: 800-321-OPTO(6786) or 951-695-3000 Fax:

More information

Embedded Control Project -Iterative learning control for

Embedded Control Project -Iterative learning control for Embedded Control Project -Iterative learning control for Author : Axel Andersson Hariprasad Govindharajan Shahrzad Khodayari Project Guide : Alexander Medvedev Program : Embedded Systems and Engineering

More information

NZQA unit standard version 2 Page 1 of 5. Demonstrate and apply intermediate knowledge of instrumentation and control system engineering

NZQA unit standard version 2 Page 1 of 5. Demonstrate and apply intermediate knowledge of instrumentation and control system engineering Page 1 of 5 Title Demonstrate and apply intermediate knowledge of instrumentation and control system engineering Level 5 Credits 15 Purpose This unit standard covers intermediate knowledge of the concepts

More information

Think About Control Fundamentals Training. Terminology Control. Eko Harsono Control Fundamental - Con't

Think About Control Fundamentals Training. Terminology Control. Eko Harsono Control Fundamental - Con't Think About Control Fundamentals Training Terminology Control Eko Harsono eko.harsononus@gmail.com; 1 Contents Topics: Slide No: Advance Control Loop 3-10 Control Algorithm 11-25 Control System 26-32 Exercise

More information

Introduction To Temperature Controllers

Introduction To Temperature Controllers Introduction To Temperature Controllers The Miniature CN77000 is a full featured microprocessor-based controller in a 1/16 DIN package. How Can I Control My Process Temperature Accurately and Reliably?

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

Chapter 5. Tracking system with MEMS mirror

Chapter 5. Tracking system with MEMS mirror Chapter 5 Tracking system with MEMS mirror Up to now, this project has dealt with the theoretical optimization of the tracking servo with MEMS mirror through the use of simulation models. For these models

More information

Servo Closed Loop Speed Control Transient Characteristics and Disturbances

Servo Closed Loop Speed Control Transient Characteristics and Disturbances Exercise 5 Servo Closed Loop Speed Control Transient Characteristics and Disturbances EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with the transient behavior of a servo

More information

PL420 PROGRAMMABLE LOGIC CONTROLLER

PL420 PROGRAMMABLE LOGIC CONTROLLER PL420 PROGRAMMABLE LOGIC CONTROLLER USER MANUAL 12/01/2007 V02 P.O.Box 24 STANFIELD 3613 SOUTH AFRICA Tel: +27 (031) 7028033 Fax: +27 (031) 7028041 Email: proconel@proconel.com Web: www.proconel.com TABLE

More information

CHBE320 LECTURE XI CONTROLLER DESIGN AND PID CONTOLLER TUNING. Professor Dae Ryook Yang

CHBE320 LECTURE XI CONTROLLER DESIGN AND PID CONTOLLER TUNING. Professor Dae Ryook Yang CHBE320 LECTURE XI CONTROLLER DESIGN AND PID CONTOLLER TUNING Professor Dae Ryook Yang Spring 2018 Dept. of Chemical and Biological Engineering 11-1 Road Map of the Lecture XI Controller Design and PID

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

F. Greg Shinskey. "PID Control." Copyright 2000 CRC Press LLC. <

F. Greg Shinskey. PID Control. Copyright 2000 CRC Press LLC. < F. Greg Shinskey. "PID Control." Copyright 2000 CRC Press LLC. . PID Control F. Greg Shinskey Process Control Consultant 97.1 Introduction 97.2 Open and Closed Loops Open-Loop

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

SINGLE SENSOR LINE FOLLOWER

SINGLE SENSOR LINE FOLLOWER SINGLE SENSOR LINE FOLLOWER One Sensor Line Following Sensor on edge of line If sensor is reading White: Robot is too far right and needs to turn left Black: Robot is too far left and needs to turn right

More information

Find, read or write documentation which describes work of the control loop: Process Control Philosophy. Where the next information can be found:

Find, read or write documentation which describes work of the control loop: Process Control Philosophy. Where the next information can be found: 1 Controller uning o implement continuous control we should assemble a control loop which consists of the process/object, controller, sensors and actuators. Information about the control loop Find, read

More information

Automatic Controller Dynamic Specification (Summary of Version 1.0, 11/93)

Automatic Controller Dynamic Specification (Summary of Version 1.0, 11/93) The contents of this document are copyright EnTech Control Engineering Inc., and may not be reproduced or retransmitted in any form without the express consent of EnTech Control Engineering Inc. Automatic

More information

PID-CONTROL FUNCTION AND APPLICATION

PID-CONTROL FUNCTION AND APPLICATION PID-CONTROL FUNCTION AND APPLICATION Hitachi Inverters SJ1 and L1 Series Deviation - P : Proportional operation I : Integral operation D : Differential operation Inverter Frequency command Fan, pump, etc.

More information

C C1 C2 AL1 AL2 AL3. Micro-controller X. Model: PXR SEL PXR-4. Operation Manual. ECNO:406a

C C1 C2 AL1 AL2 AL3. Micro-controller X. Model: PXR SEL PXR-4. Operation Manual. ECNO:406a C C1 C2 AL1 AL2 AL3 Micro-controller X Model: PXR PXR-4 SEL Operation Manual ECNO:406a Table of Contents 1 Part Names and Functions... 4 2 Operations... 5 2-1 Parameter list... 5 2-2 Basic operations...

More information

QuickBuilder PID Reference

QuickBuilder PID Reference QuickBuilder PID Reference Doc. No. 951-530031-006 2010 Control Technology Corp. 25 South Street Hopkinton, MA 01748 Phone: 508.435.9595 Fax: 508.435.2373 Thursday, March 18, 2010 2 QuickBuilder PID Reference

More information

Instrumentation and Control Systems

Instrumentation and Control Systems Unit 16: Unit Instrumentation and Control Systems D/615/1490 Unit level 4 Credit value 15 Introduction Instrumentation and control can also be described as measurement automation, which is a very important

More information

Automationdirect.com. D i r e c t L o g i c L o o p P I D C o p r o c e s s o r F P I D

Automationdirect.com. D i r e c t L o g i c L o o p P I D C o p r o c e s s o r F P I D Automationdirect.com D i r e c t L o g i c 4 0 5 1 6 L o o p P I D C o p r o c e s s o r F 4-1 6 P I D Order Number: F4-16PID-M TRADEMARKS Automationdirect.com is a Trademark of Automationdirect.com CoProcessor

More information

CONVENIENT INSTRUCTION OF PID TEMPERATURE CONTROL. Control warning

CONVENIENT INSTRUCTION OF PID TEMPERATURE CONTROL. Control warning Execution control Heating/Cooling Operand EN H/C Range Ladder symbol 86. Md : ERR Parameter error Yn : ALM Temperature Sn : Control warning Zn : Sv : Os : PR : IR : DR : OR : WR : Y HR ROR DR K Y0 Y255

More information

Abstract. I. Introduction

Abstract. I. Introduction Proceedings of the 17 th Conference on Recent Advances in Robotics (FCRAR 24) Orlando, Florida, May 6-7 24 Autotune of PID Cryogenic Temperature Control Based on Closed-Loop Step Response Tests David Sheats

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

Conic Systems Inc. INSTRUCTION MANUAL FOR DATATRAN C2844 PID CONTROLLER WITH FEED FORWARD COMPENSATION

Conic Systems Inc. INSTRUCTION MANUAL FOR DATATRAN C2844 PID CONTROLLER WITH FEED FORWARD COMPENSATION Conic Systems Inc. INSTRUCTION MANUAL FOR DATATRAN C2844 PID CONTROLLER WITH FEED FORWARD COMPENSATION FOR TECHNICAL OR SALES ASSISTANCE CONTACT CONIC SYSTEMS INC. AT TEL: 845.856.4053 OR FAX: 845.858.2824

More information

TODO add: PID material from Pont slides Some inverted pendulum videos Model-based control and other more sophisticated

TODO add: PID material from Pont slides Some inverted pendulum videos Model-based control and other more sophisticated TODO add: PID material from Pont slides Some inverted pendulum videos Model-based control and other more sophisticated controllers? More code speed issues perf with and w/o FP on different processors Last

More information

Logic Developer Process Edition Function Blocks

Logic Developer Process Edition Function Blocks GE Intelligent Platforms Logic Developer Process Edition Function Blocks Delivering increased precision and enabling advanced regulatory control strategies for continuous process control Logic Developer

More information

Servo Tuning. Dr. Rohan Munasinghe Department. of Electronic and Telecommunication Engineering University of Moratuwa. Thanks to Dr.

Servo Tuning. Dr. Rohan Munasinghe Department. of Electronic and Telecommunication Engineering University of Moratuwa. Thanks to Dr. Servo Tuning Dr. Rohan Munasinghe Department. of Electronic and Telecommunication Engineering University of Moratuwa Thanks to Dr. Jacob Tal Overview Closed Loop Motion Control System Brain Brain Muscle

More information

Discretised PID Controllers. Part of a set of study notes on Digital Control by M. Tham

Discretised PID Controllers. Part of a set of study notes on Digital Control by M. Tham Discretised PID Controllers Part of a set of study notes on Digital Control by M. Tham CONTENTS Time Domain Design Laplace Domain Design Positional and Velocity Forms Implementation and Performance Choice

More information

Understanding PID Control

Understanding PID Control 1 of 5 2/20/01 1:15 PM Understanding PID Control Familiar examples show how and why proportional-integral-derivative controllers behave the way they do. Keywords: Process control Control theory Controllers

More information

A SOFTWARE-BASED GAIN SCHEDULING OF PID CONTROLLER

A SOFTWARE-BASED GAIN SCHEDULING OF PID CONTROLLER A SOFTWARE-BASED GAIN SCHEDULING OF PID CONTROLLER Hussein Sarhan Department of Mechatronics Engineering, Faculty of Engineering Technology, Amman, Jordan ABSTRACT In this paper, a scheduled-gain SG-PID

More information

CHAPTER 4 PID CONTROLLER BASED SPEED CONTROL OF THREE PHASE INDUCTION MOTOR

CHAPTER 4 PID CONTROLLER BASED SPEED CONTROL OF THREE PHASE INDUCTION MOTOR 36 CHAPTER 4 PID CONTROLLER BASED SPEED CONTROL OF THREE PHASE INDUCTION MOTOR 4.1 INTRODUCTION Now a day, a number of different controllers are used in the industry and in many other fields. In a quite

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

1. To study the influence of the gain on the transient response of a position servo. 2. To study the effect of velocity feedback.

1. To study the influence of the gain on the transient response of a position servo. 2. To study the effect of velocity feedback. KING FAHD UNIVERSITY OF PETROLEUM & MINERALS Electrical Engineering Department EE 380 - Control Engineering Experiment # 6 Servo Motor Position Control Using a Proportional Controller OBJECTIVES: 1. To

More information

Introduction To Temperature Controllers

Introduction To Temperature Controllers Introduction To Temperature Controllers The Miniature CN77000 is a full featured microprocessor-based controller in a 1/16 DIN package. How Can I Control My Process Temperature Accurately and Reliably?

More information

Robot Autonomous and Autonomy. By Noah Gleason and Eli Barnett

Robot Autonomous and Autonomy. By Noah Gleason and Eli Barnett Robot Autonomous and Autonomy By Noah Gleason and Eli Barnett Summary What do we do in autonomous? (Overview) Approaches to autonomous No feedback Drive-for-time Feedback Drive-for-distance Drive, turn,

More information

EE 308 Spring Preparation for Final Lab Project Simple Motor Control. Motor Control

EE 308 Spring Preparation for Final Lab Project Simple Motor Control. Motor Control Preparation for Final Lab Project Simple Motor Control Motor Control A proportional integral derivative controller (PID controller) is a generic control loop feedback mechanism (controller) widely used

More information

Chapter 4 PID Design Example

Chapter 4 PID Design Example Chapter 4 PID Design Example I illustrate the principles of feedback control with an example. We start with an intrinsic process P(s) = ( )( ) a b ab = s + a s + b (s + a)(s + b). This process cascades

More information

Micro-controller X SV C1 C2 AL1 AL2 SEL. Model: PXR3. Operation Manual TN5A2704-E

Micro-controller X SV C1 C2 AL1 AL2 SEL. Model: PXR3. Operation Manual TN5A2704-E C1 C2 AL1 AL2 SEL Micro-controller X Model: PXR3 Operation Manual TN5A2704-E Table of Contents 1 Part Names and Functions... 5 2 Operations... 6 2-1 Parameter list... 6 2-2 Basic operations... 11 2-3 Parameter

More information

Getting the Best Performance from Challenging Control Loops

Getting the Best Performance from Challenging Control Loops Getting the Best Performance from Challenging Control Loops Jacques F. Smuts - OptiControls Inc, League City, Texas; jsmuts@opticontrols.com KEYWORDS PID Controls, Oscillations, Disturbances, Tuning, Stiction,

More information

Configuration Example of Temperature Control

Configuration Example of Temperature Control Controllers Technical Information Configuration Example of Control controllers The following is an example of the configuration of temperature control. Controller Relay Voltage Current SSR Cycle controller

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

Optimal Control System Design

Optimal Control System Design Chapter 6 Optimal Control System Design 6.1 INTRODUCTION The active AFO consists of sensor unit, control system and an actuator. While designing the control system for an AFO, a trade-off between the transient

More information

Feedback Systems in HVAC ASHRAE Distinguished Lecture Series Jim Coogan Siemens Building Technologies

Feedback Systems in HVAC ASHRAE Distinguished Lecture Series Jim Coogan Siemens Building Technologies Feedback Systems in HVAC ASHRAE Distinguished Lecture Series Jim Coogan Siemens Building Technologies ASHRAE, Madison Chapter October, 2014 Agenda Definitions: feedback and closed-loop control Types of

More information

TECHNICAL DOCUMENT EPC SERVO AMPLIFIER MODULE Part Number L xx EPC. 100 Series (1xx) User Manual

TECHNICAL DOCUMENT EPC SERVO AMPLIFIER MODULE Part Number L xx EPC. 100 Series (1xx) User Manual ELECTRONIC 1 100 Series (1xx) User Manual ELECTRONIC 2 Table of Contents 1 Introduction... 4 2 Basic System Overview... 4 3 General Instructions... 5 3.1 Password Protection... 5 3.2 PC Interface Groupings...

More information

Introduction to Servo Control & PID Tuning

Introduction to Servo Control & PID Tuning Introduction to Servo Control & PID Tuning Presented to: Agenda Introduction to Servo Control Theory PID Algorithm Overview Tuning & General System Characterization Oscillation Characterization Feed-forward

More information

Compensation of Dead Time in PID Controllers

Compensation of Dead Time in PID Controllers 2006-12-06 Page 1 of 25 Compensation of Dead Time in PID Controllers Advanced Application Note 2006-12-06 Page 2 of 25 Table of Contents: 1 OVERVIEW...3 2 RECOMMENDATIONS...6 3 CONFIGURATION...7 4 TEST

More information

Solar Photovoltaic System Modeling and Control

Solar Photovoltaic System Modeling and Control University of Denver Digital Commons @ DU Electronic Theses and Dissertations Graduate Studies 1-1-2012 Solar Photovoltaic System Modeling and Control Qing Xia University of Denver Follow this and additional

More information

Mercury technical manual

Mercury technical manual v.1 Mercury technical manual September 2017 1 Mercury technical manual v.1 Mercury technical manual 1. Introduction 2. Connection details 2.1 Pin assignments 2.2 Connecting multiple units 2.3 Mercury Link

More information

PALO VERDE NUCLEAR GENERATING STATION

PALO VERDE NUCLEAR GENERATING STATION PALO VERDE NUCLEAR GENERATING STATION Instrumentation & Controls Training Classroom Lesson I&C Program Date: 5/8/2007 LP Number: NIA02L000401 Rev Author: Christopher A. Mahar Title: Loop Control Technical

More information

Closed Loop Control System. Controllers. Analog Controller. Prof. Dr. M. Zahurul Haq

Closed Loop Control System. Controllers. Analog Controller. Prof. Dr. M. Zahurul Haq Closed Loop Control System Prof. Dr. M. Zahurul Haq http://teacher.buet.ac.bd/zahurul/ Department of Mechanical Engineering Bangladesh University of Engineering & Technology ME 6401: Advanced Mechatronics

More information

Nonlinear Control Lecture

Nonlinear Control Lecture Nonlinear Control Lecture Just what constitutes nonlinear control? Control systems whose behavior cannot be analyzed by linear control theory. All systems contain some nonlinearities, most are small and

More information

ChE 4162 Control Laboratory Methodologies Fall Control Laboratory Methodologies

ChE 4162 Control Laboratory Methodologies Fall Control Laboratory Methodologies Control Laboratory Methodologies Edited by: HJT from Material by DBM 1/11 9/23/2016 1. Introduction There seem to be about as many ways to study and tune control systems as there are control engineers.

More information

Servo Tuning Tutorial

Servo Tuning Tutorial Servo Tuning Tutorial 1 Presentation Outline Introduction Servo system defined Why does a servo system need to be tuned Trajectory generator and velocity profiles The PID Filter Proportional gain Derivative

More information

Elmo HARmonica Hands-on Tuning Guide

Elmo HARmonica Hands-on Tuning Guide Elmo HARmonica Hands-on Tuning Guide September 2003 Important Notice This document is delivered subject to the following conditions and restrictions: This guide contains proprietary information belonging

More information

Report on Dynamic Temperature control of a Peltier device using bidirectional current source

Report on Dynamic Temperature control of a Peltier device using bidirectional current source 19 May 2017 Report on Dynamic Temperature control of a Peltier device using bidirectional current source Physics Lab, SSE LUMS M Shehroz Malik 17100068@lums.edu.pk A bidirectional current source is needed

More information

Design Of PID Controller In Automatic Voltage Regulator (AVR) System Using PSO Technique

Design Of PID Controller In Automatic Voltage Regulator (AVR) System Using PSO Technique Design Of PID Controller In Automatic Voltage Regulator (AVR) System Using PSO Technique Vivek Kumar Bhatt 1, Dr. Sandeep Bhongade 2 1,2 Department of Electrical Engineering, S. G. S. Institute of Technology

More information

AVR221: Discrete PID Controller on tinyavr and megaavr devices. Introduction. AVR 8-bit Microcontrollers APPLICATION NOTE

AVR221: Discrete PID Controller on tinyavr and megaavr devices. Introduction. AVR 8-bit Microcontrollers APPLICATION NOTE AVR 8-bit Microcontrollers AVR221: Discrete PID Controller on tinyavr and megaavr devices APPLICATION NOTE Introduction This application note describes a simple implementation of a discrete Proportional-

More information

LESSON 2: ELECTRONIC CONTROL

LESSON 2: ELECTRONIC CONTROL Module 1: Control Concepts LESSON 2: ELECTRONIC CONTROL MODULE 1 Control Concepts OBJECTIVES: At the end of this module, you will be able to: 1. Sketch an open tank level application and state the mass

More information

PLC Water Pump Control

PLC Water Pump Control The University of Akron IdeaExchange@UAkron Honors Research Projects The Dr. Gary B. and Pamela S. Williams Honors College Spring 2016 PLC Water Pump Control Kevin Logsdon kal62@zips.uakron.edu Please

More information

Application sheet for Green 300 series controllers. Title. Purpose. Application Controller Loop Configuration: Wiring: Explanation :

Application sheet for Green 300 series controllers. Title. Purpose. Application Controller Loop Configuration: Wiring: Explanation : Furnace temperature control with Solid State Relay(SSR) AP35001 Control a furnace temperature by using UT350 temperature controller. Model UT350 can drive SSR as an actuator directly. Electrical Furnace

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

TC LV-Series Temperature Controllers V1.01

TC LV-Series Temperature Controllers V1.01 TC LV-Series Temperature Controllers V1.01 Electron Dynamics Ltd, Kingsbury House, Kingsbury Road, Bevois Valley, Southampton, SO14 OJT Tel: +44 (0) 2380 480 800 Fax: +44 (0) 2380 480 801 e-mail support@electrondynamics.co.uk

More information

Effective Teaching Learning Process for PID Controller Based on Experimental Setup with LabVIEW

Effective Teaching Learning Process for PID Controller Based on Experimental Setup with LabVIEW Effective Teaching Learning Process for PID Controller Based on Experimental Setup with LabVIEW Komal Sampatrao Patil & D.R.Patil Electrical Department, Walchand college of Engineering, Sangli E-mail :

More information

Appendix F: PID Control...F 1 PID Control...F 2

Appendix F: PID Control...F 1 PID Control...F 2 Appendix PID Control F Table of Contents Appendix F: PID Control........................................F 1 PID Control................................................F 2 PID Control Overview.............................................

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

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

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

ADAM-4022T Serial Base Dual Loops PID Controller User s Manual

ADAM-4022T Serial Base Dual Loops PID Controller User s Manual ADAM-422T Serial Base Dual Loops PID Controller User s Manual Warning Message : The ADAM-422T is recommended to be used in general purposed air conditioning application. When using this product in applications

More information

PID Tuning Case Study Tuning Level controller using a priori knowledge 1

PID Tuning Case Study Tuning Level controller using a priori knowledge 1 1 1. Introduction Tuning level controllers can be a challenging task. When you have identified a proper ramp model, this this task becomes much easier when using Aptitune. Identifying a good ramp model

More information

Model Based Predictive Peak Observer Method in Parameter Tuning of PI Controllers

Model Based Predictive Peak Observer Method in Parameter Tuning of PI Controllers 23 XXIV International Conference on Information, Communication and Automation Technologies (ICAT) October 3 November, 23, Sarajevo, Bosnia and Herzegovina Model Based Predictive in Parameter Tuning of

More information

Advanced Servo Tuning

Advanced Servo Tuning Advanced Servo Tuning Dr. Rohan Munasinghe Department of Electronic and Telecommunication Engineering University of Moratuwa Servo System Elements position encoder Motion controller (software) Desired

More information

Chapter 10 Digital PID

Chapter 10 Digital PID Chapter 10 Digital PID Chapter 10 Digital PID control Goals To show how PID control can be implemented in a digital computer program To deliver a template for a PID controller that you can implement yourself

More information

TelePACE PID Controllers

TelePACE PID Controllers TelePACE PID Controllers User and Reference Manual CONTROL MICROSYSTEMS SCADA products... for the distance 28 Steacie Drive Telephone: 613-591-1943 Kanata, Ontario Facsimile: 613-591-1022 K2K 2A9 Technical

More information

Reducing wear of sticky pneumatic control valves using compensation pulses with variable amplitude

Reducing wear of sticky pneumatic control valves using compensation pulses with variable amplitude Preprint, 11th IFAC Symposium on Dynamics and Control of Process Systems, including Biosystems June 6-8, 216. NTNU, Trondheim, Norway Reducing wear of sticky pneumatic control valves using compensation

More information

VI. SET-UP PARAMETER. Input filter

VI. SET-UP PARAMETER. Input filter VI. SET-UP PARAMETER Input filter Input filter When a PV value becomes unstable due to effects of noise, the filter helps suppress the unstable status. (input filter constant) Set the filter time constant

More information

Model 392. Continuous-trace circular-chart recorder. Controller and Setpoint Generator Manual EUROT H ERM

Model 392. Continuous-trace circular-chart recorder. Controller and Setpoint Generator Manual EUROT H ERM Model 392 Continuous-trace circular-chart recorder EUROT H ERM Controller and Setpoint Generator Manual CONTROLLER AND SETPOINT GENERATOR MANUAL LIST OF CONTENTS Section Page 1 INTRODUCTION... 3 2 INSTALLATION...

More information

OVEN INDUSTRIES, INC. Model 5C7-362

OVEN INDUSTRIES, INC. Model 5C7-362 OVEN INDUSTRIES, INC. OPERATING MANUAL Model 5C7-362 THERMOELECTRIC MODULE TEMPERATURE CONTROLLER TABLE OF CONTENTS Features... 1 Description... 2 Block Diagram... 3 RS232 Communications Connections...

More information

High-speed Serial Interface

High-speed Serial Interface High-speed Serial Interface Lect. 9 PLL (Introduction) 1 Block diagram Where are we today? Serializer Tx Driver Channel Rx Equalizer Sampler Deserializer PLL Clock Recovery Tx Rx 2 Clock Clock: Timing

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