Pid Manual
Pid Manual
HAPTER
PID LOOP OPERATION
8
In This Chapter...
DL06 PID Control . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–2
Introduction to PID Control . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–4
Introducing DL06 PID Control . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–6
PID Loop Operation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–9
Ten Steps to Successful Process Control . . . . . . . . . . . . . . . . . . . . . . .8–16
PID Loop Setup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–18
PID Loop Tuning . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–40
Using the Special PID Features . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–53
Ramp/Soak Generator . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–58
DirectSOFT Ramp/Soak Example . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–63
Cascade Control . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–65
Time-Proportioning Control . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–68
Feedforward Control . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–70
PID Example Program . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–72
Troubleshooting Tips . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–75
Glossary of PID Loop Terminology . . . . . . . . . . . . . . . . . . . . . . . . . . .8–77
Bibliography . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .8–79
Chapter 8: PID Loop Operation
11 DL06
PID Loop Calculations
12
13
14
Manufacturing Process
A
B Analog Output
DirectSOFT programming software, release 5, or later, is used for configuring analog control
C loops in the DL06. DirectSOFT 5 uses dialog boxes to help you set up the individual loops.
After completing the setup, you can use DirectSOFT’s PID Trend View to tune each loop.
The configuration and tuning selections you make are stored in the DL06’s V-memory
D (RAM). The loop parameters also may be saved to disk for recall later.
14 69° SETPOINT
A 67°
ON ON ON
B TIME
The ON-OFF controller is used in some industrial control applications, but is not practical
C in the majority of industrial control processes.
The most common process controller that is used in industry is the PID controller.
D
The PID controller controls a continuous feedback loop that keeps the process output
(control variable) flowing normally by taking corrective action whenever there is a deviation
from the desired value (setpoint) of the process variable (PV) such as, rate of flow,
1
temperature, voltage, etc. An error occurs when an operator manually changes the setpoint or
when an event (valve opened, closed, etc.) or a disturbance (cold water, wind, etc.) changes 2
the load, thus causing a change in the process variable.
The PID controller receives signals from sensors and computes corrective action to the 3
actuator from a computation based on the error (Proportional), the sum of all previous errors
(Integral) and the rate of change of the error (Derivative). 4
We can look at the PID controller in more simple terms. Take the cruise control on an
automobile as an example. Let’s say that we are cruising on an interstate highway in a car
equipped with cruise control. The driver decides to engage the cruise control by turning it
5
ON, then he manually brings the car to the desired cruising speed, say 70 miles per hour.
Once the cruise speed is reached, the SET button is pushed fixing the speed at 70 mph, the 6
setpoint. Now, the car is cruising at a steady 70 mph until it comes to a hill to go up. As the
car goes up the hill, it tends to slow down. The speed sensor senses this and causes the throttle
to increase the fuel to the engine. The vehicle speeds up to maintain 70 mph without jerking
7
the car and it reaches the top at the set speed. When the car levels out after reaching the top
of the hill it will speed up. The speed sensor senses this and signals the throttle to provide less 8
fuel to the engine, thus, the engine slows down allowing the car to maintain the 70 mph
speed. How does this application apply to PID control? Lets look at the function of P, I and
D terms:
9
• Proportional - is commonly referred to as Proportional Gain. The proportional term is
the corrective action which is proportional to the error, that is, the change of the 10
manipulated variable is equal to the proportional gain multiplied by the error (the
activating signal). In mathematical terms: 11
Proportional action = proportional gain X error
Error = Setpoint (SP) - Process Variable (PV)
Applying this to the cruise control, the speed was set at 70 mph which is the Setpoint.
12
The speed sensor senses the actual speed of the car and sends this signal to the cruise
controller as the Process Variable (PV). When the car is on a level highway, the speed is 13
maintained at 70 mph, thus, no error since the error would be SP - PV = 0. When the car
goes up the hill, the speed sensor detected a slow down of the car, SP-PV = error. The
proportional gain would cause the output of the speed controller to bring the car back to 14
the setpoint of 70 mph. This would be the Controlled Output.
• Integral - this term is often referred to as Reset action. It provides additional
compensation to the control output, which causes a change in proportion to the value of
A
the error over a period of time. In other words, the reset term is the integral sum of the
error values over a period of time. B
• Derivative - this term is referred to as rate. The Rate action adds compensation to the
control output, which causes a change in proportion to the rate of change of error. Its job
is to anticipate the probable growth of the error and generate a contribution to the output
C
in advance.
D
The analog input module receives the process variable in analog form along with an operator
A entered setpoint; the CPU computes the error. The error is used in the algorithm
computation to provide corrective action at the control output. The function of the control
B action is based on an output control, which is proportional to the instantaneous error value.
The integral control action (reset action) provides additional compensation to the control
C output, which causes a change in proportion to the value of the change of error over a period
of time. The derivative control action (rate change) adds compensation to the control output,
which causes a change in proportion to the rate of change of error. These three modes are
D used to provide the desired control action in Proportional (P), Proportional-Integral (PI), or
Proportional-Integral-Derivative (PID) control fashion.
Standard DL05/06 analog input modules are used to interface to field transmitters to obtain
the PV. These transmitters normally provide a 4-20mA current or an analog voltage of various
ranges for the control loop.
1
For temperature control, thermocouple or RTD can be connected directly to the appropriate
module. The PID control algorithm, residing in the CPU memory, receives information from 2
the user program, primarily control parameters and setpoints. Once the CPU makes the PID
calculation, the result may be used to directly control an actuator connected to a 4-20mA 3
current output module to control a valve.
With DirectSOFT, additional ladder logic programming, both time proportioning (eg.,
heaters for temperature control) and position actuator (eg., reversible motor on a valve) type
4
of control schemes can be easily implemented. This chapter will explain how to set up the
PID control loop, how to implement the software and how to tune the loop. 5
The following block diagram shows the key parts of a PID control loop. The path from the
PLC to the manufacturing process and back to the PLC is the closed loop control. 6
7
Loop Configuring External
PLC System
and Monitoring Disturbances 8
Setpoint Value
+ k
Error Term Loop
Calculation
Control Output Manufacturing
Process
9
–
Process Variable 10
11
12
13
14
A
B
C
D
This form of the PID equation is referred to as the position form since the actual actuator
14
position is computed. The velocity form of the PID equation computes the change in
actuator position. The CPU modifies the standard equation slightly to use the derivative of A
the process variable instead of the error as follows:
n
B
Mn = Kc * en + Ki 兺 ei + Kr (PVn - PVn-1) + Mo
i=1
C
These two forms are equivalent unless the setpoint is changed. In the original equation, a
large step change in the setpoint will cause a correspondingly large change in the error D
resulting in a bump to the process due to derivative action. This bump is not present in the
second form of the equation.
The DL06 also combines the integral sum and the initial output into a single term called the
1 bias (Mx). This results in the following set of equations:
Mxo = Mo
2 Mx = Ki * en + Mxn-1
Mn = Kc * en - Kr(PVn-PVn-1) + Mxn
3 The DL06 by default will keep the normalized output M in the range of 0.0 to 1.0. This is
done by clamping M to the nearer of 0.0 or 1.0 whenever the calculated output falls outside
this range. The DL06 also allows you to specify the minimum and maximum output limit
4 values (within the range 0 to 4095 in BCD if using 12 bit unipolar).
NOTE: The equations and algorithms, or parts of, in this chapter, are only for references. Analysis of
5 these equations can be found in most good text books about process control.
14
A
B
C
D
Freeze Bias
If the “Freeze Bias” option is selected when setting up the PID loop (discussed later) then the 1
CPU simply stops changing the bias (Mx) whenever the computed normalized output (M)
goes outside the interval 0.0 to 1.0.
Mx = Ki * en + Mxn-1
2
M = Kc * en - Kr(PVn - PVn-1) + Mx
3
Mn = 0 if M < 0
4
Mn = M if 0 ⭐ M ⭐ 1
Mn = 1 if M > 1 5
Mxn = Mx if 0 ⭐ M ⭐ 1 6
Mxn = Mxn-1 otherwise
Thus in this example, the bias will probably not go all the way to zero so that, when the PV
does begin to come down, the loop will begin to open the valve sooner than it would have if
7
the bias had been allowed to go all the way to zero. This action has the effect of reducing the
amount of overshoot. 8
Adjusting the Bias 9
The normal action of the CPU is to adjust the bias term when the output goes out of range as
shown below.
Mx = Ki * en + Mxn-1 10
M = Kc * en - Kr(PVn - PVn-1) + Mx
11
Mn = 0 if M < 0
Mn = M if 0 ⭐ M ⭐ 1 12
Mn = 1 if M > 1
13
Mxn = Mx if 0 ⭐ M ⭐ 1
Mxn = Mn - Kc * en - Kr(PVn - PVn-1) otherwise
By adjusting the bias, the valve will begin to open as soon as the PV begins to come down. If
14
the loop is properly tuned, overshoot can be eliminated entirely. If the output went out of
range due to a setpoint change, then the loop probably will oscillate because we must wait for A
the bias term to stabilize again.
The choice of whether to use the default loop action or to freeze the bias is dependent on the B
application. If large, step changes to the setpoint are anticipated, then it is probably better
to select the freeze bias option (see page 8-34). C
D
Bumpless Transfer
The DL06 loop controller provides for bumpless mode changes. A bumpless transfer from 1
manual mode to automatic mode is achieved by preventing the control output from changing
immediately after the mode change.
When a loop is switched from Manual mode to Automatic mode, the setpoint and Bias are
2
initialized as follows:
Position PID Algorithm Velocity PID Algorithm
3
SP = PV SP = PV
Mx = M
4
The bumpless transfer feature of the DL06 is available in two types: Bumpless I and Bumpless
II (see page 8-26). The transfer type is selected when the loop is set up.
5
Loop Alarms 6
The DL06 allows the user to specify alarm conditions that are to be monitored for each loop.
Alarm conditions are reported to the CPU by setting up the alarms in DirectSOFT using the
PID setup alarm dialog when the loop is setup. The alarm features for each loop are: 7
• PV Limit – Specify up to four PV alarm points.
High-High PV rises above the programmed High-High Alarm Limit. 8
High PV rises above the programmed High Alarm Limit.
Low
Low-Low
PV fails below the Low Alarm Limit.
PV fails below the Low-Low Limit.
9
• PV Deviation Alarm – Specify an alarm for High and Low PV deviation from the
setpoint (Yellow Deviation). An alarm for High High and Low Low PV deviation 10
from the setpoint (Orange Deviation) may also be specified. When the PV is further
from the setpoint than the programmed Yellow or Orange Deviation Limit the
corresponding alarm bit is activated.
11
• Rate of Change – This alarm is set when the PV changes faster than a specified rate-of-
change limit. 12
• PV Alarm Hysteresis – The PV Limit Alarms and PV Deviation Alarms are programmed
using threshold values. When the absolute value or deviation exceeds the threshold,
the alarm status becomes true. Real-world PV signals have some noise on them, which
13
can cause some fluctuation in the PV value in the CPU. As the PV value crosses an
alarm threshold, its fluctuations will cause the alarm to be intermittent and annoy 14
process operators. The solution is to use the PV Alarm Hysteresis feature.
A
B
C
D
Y n = Yn-1 +
Ts 7
* (PV n - Y n-1 )
Ts + ( Td )
Kd 8
Position Algorithm 9
Mx = Ki * en + Mxn-1
M = Kc * en - Kr * (Yn-Yn-1) + Mx 10
Velocity Algorithm
⌬M = Kc * (en - en-1) + Ki * en - Kr * (Yn - 2 * Yn-1 + Yn-2) 11
12
13
14
A
B
C
D
C Automationdirect offers DL06 analog input modules with 4 channels per module that accept
0 – 20mA or 4 – 20mA signals. Also, analog input and output combination modules are now
available. Thermocouple and RTD modules can also be used to maintain temperatures to a
D 10th of a degree. Refer to the sales catalog for further information on these modules, or find
the modules on our website, www.automationdirect.com.
DL06 CPU
Input V-memory Digital
Module Output
Channel 1 PV
Loop 1 Data
SP
Loop 2 Data
OUT Channel 1 Process 1 1
Channel 2 PV SP OUT Channel 2 Process 2
Channel 3
2
Channel 4
3
Step 5: Wiring and Installation
After selection and procurement of all loop components and I/O module(s), you can
4
perform the wiring and installation. Refer to the wiring guidelines in Chapter 2 of this
manual, and to the D0–OPTIONS–M manual. The most common wiring errors when
installing PID loop controls are:
5
• Reversing the polarity of sensor or actuator wiring connections.
• Incorrect signal ground connections between loop components.
6
Step 6: Loop Parameters 7
After wiring and installation, choose the loop setup parameters. The easiest method for
programming the loop tables is using DirectSOFT (5.0 or later). This software provides PID
Setup using dialog boxes to simplify the task. Note: It is important to understand the
8
meaning of all loop parameters mentioned in this chapter before choosing values to enter.
Step 7: Check Open Loop Performance
9
With the sensor and actuator wiring done, and loop parameters entered, we must manually
and carefully check out the new control system using the Manual mode. 10
• Verify that the PV value from the sensor is correct.
• If it is safe to do so, gradually increase the control output up above 0%, and see if the PV 11
responds (and moves in the correct direction!).
Step 8: Loop Tuning 12
If the Open Loop Test (page 8–40) shows the PV reading is correct and the control output
has the proper effect on the process; you can follow the closed loop tuning procedure (see 13
page 8–45). In this step, the loop is tuned so the PV automatically follows the SP.
Step 9: Run Process Cycle 14
If the closed loop test shows the PV will follow small changes in the SP, consider running an
actual process cycle. You will need to have completed the programming which will generate
the desired SP in real time. In this step, you may want to run a small test batch of product
A
through the machine, watching the SP change according to the recipe.
WARNING: Be sure the Emergency Stop and power-down provision is readily accessible, in case
B
the process goes out of control. Damage to equipment and/or serious injury to personnel can
result from loss of control of some processes. C
Step 10: Save Parameters D
When the loop tests and tuning sessions are complete, be sure to save all loop setup
parameters to disk.
does this by setting the appropriate bits in V7642 on program-to-run mode transitions.
10 If you use the DirectSOFT loop setup dialog box, its automatic range checking prohibits
possible setup errors. However, the setup parameters may be written using other methods
11 such as RLL, so the error flag register may be helpful in those cases. The following table lists
the errors reported in V7642.
As a quick check, if the CPU is in Run mode and V7642=0000, there are no programming
12 errors.
Bit Error Description (0 = no error, 1 = error)
13 0 The starting address (in V7640) is out of the lower V-memory range.
1 The starting address (in V7640) is out of the upper V-memory range.
14 2
3
The number of loops selected (in V7641) is greater than 8.
The loop table extends past (straddles) the boundary at V7377. Use an address closer to V1200.
D Ladder
Program
READ/
WRITE
User Data
LOOP
DATA
CONFIGURE/
MONITOR
PID Loop
Task
Setup Parameters
READ V7640, V7641
(at powerup)
DirectSOFT32 Programming Software
NOTE: The DL06 CPU’s PID algorithm requires DirectSOFT Version 5.0 (or later) and firmware
version 2.1 (or later). See our website for more information: www.automationdirect.com. 1
The Loop Table contains data for only the number of loops
that are selected. The address for the table is stored in V7641.
V–Memory User Data
2
Each loop configuration occupies 32 words (0 to 37 octal) in
the loop table.
V2000
V2037
LOOP #1
32 words
3
For example, consider an application with 4 loops, and V2000 V2040 LOOP #2
has been chosen as the starting location. The Loop Parameter
will occupy V2000 – V2037 for loop 1, V2040 – V2077 for
V2077 32 words
LOOP #3
4
32 words
loop 2 and so on. Loop 4 occupies V2140 - V2177.
Determine the block of V-memory to be used for each PID
LOOP #4
32 words
5
loop. Besides being the beginning of the PID parameter memory block, the first address will
be the start of loop 1 parameters. Remember, there are 32 words (0 to 37 octal) needed for 6
each loop. Once you have determined the beginning V-memory address to be used, you can
setup and store the PID parameters either directly in your RLL program or by the using PID
Setup in DirectSOFT.
7
NOTE: Whether one or more loops are being setup, this block of V-memory will only be used for the
PID loop parameters, do not use this block of memory for anything else in your program.
8
Using DirectSOFT is the simplest way to setup the parameters. To setup the PID parameters, 9
the DL06 must be powered up and connected to the programming computer. The parameters
can only be entered in PID setup when the PLC is in the Program mode. Once the
parameters have been entered and saved for each loop, changes made through the PID setup
10
can be made, but only in Program Mode. You can type the beginning address in the PID
Table Address dialog found when the PID Setup is opened in DirectSOFT. This can be seen 11
in the diagram below. After the address has been entered, the memory range will appear. Also,
entering the number of PID loops (1 to 8) will set the total V-memory range for the number
of loops entered. After the V-memory address has been entered, the necessary PID parameters
12
for a basic loop operation for each loop can be setup with the dialogs made available.
13
14
A
B
C
NOTE: Have an edited program open, then click on PLC > Setup > PID to access the Setup PID
dialog.
D
6 5
6
Addr + 4
Addr + 5
Bias (Integrator) Value
Control Output Value
word/binary
word/binary
Yes
Yes
7 Addr + 6 Loop Mode and Alarm Status bits –
7 8
9
Addr + 7
Addr + 10
Sample Rate Setting
Gain (Proportional) Setting
word/BCD
word/BCD
Yes
Yes
8 10
11
Addr + 11
Addr + 12
Reset (Integral) Time Setting
Rate (Derivative) Time Setting
word/BCD
word/BCD
Yes
Yes
12 Addr + 13 PV Value, Low-low Alarm word/binary No*
9 13
14
Addr + 14
Addr + 15
PV Value, Low Alarm
PV Value, High Alarm
word/binary
word/binary
No*
No*
10 15
16
Addr + 16
Addr + 17
PV Value, High-high Alarm
PV Value, deviation alarm (YELLOW)
word/binary
word/binary
No*
No*
17 Addr + 20 PV Value, deviation alarm (RED) word/binary No*
11 18
19
Addr + 21
Addr + 22
PV Value, rate-of-change alarm
PV Value, alarm hysteresis setting
word/binary
word/binary
No*
No*
12 20
21
Addr + 23
Addr + 24
PV Value, error deadband setting
PV low-pass filter constant
word/binary
word/BCD
Yes
Yes
22 Addr + 25 Loop derivative gain limiting factor setting word/BCD No**
13 23
24
Addr + 26
Addr + 27
SP value lower limit setting
SP value upper limit setting
word/binary
word/binary
Yes
Yes
14 25
26
Addr + 30
Addr + 31
Control output value lower limit setting
Control output value upper limit setting
word/binary
word/binary
No**
No**
27 Addr + 32 Remote SP Value V-Memory Address Pointer word/hex Yes
A 28
29
Addr + 33
Addr + 34
Ramp/Soak Setting Flag
Ramp/Soak Programming Table Starting Address
bit
word/hex
Yes
No**
B 30
31
Addr + 35
Addr + 36
Ramp/Soak Programming Table Error Flags
PV auto transfer, channel number
bits
word/hex
No**
Yes
32 Addr + 37 Control output auto transfer, channel number word/hex Yes
C * Read data only when alarm enable bit transitions from 0 to 1.
** Read data only on PLC Mode change.
D *** Read on-the-fly means that the content of V-memory can be changed while the PID loop is in
operation.
13 NOTE 3: If the value in bit 10 is 0, then the values in bits 0, 1 and 9 define the input and output
ranges and data formats (the values in bits 11, 12, and 13 are not read). If the value in bit 10 is 1,
14 then the values in bits 0, 1, and 9 define only the input range and data format, and bits 11, 12, and
13 are read and define the output range and data format.
A NOTE 4: If bit 10 has a value of 1 and bit 13 has a value of 0, then bits 11 and 12 are read and define
the output range and data format. If bit 10 and bit 13 each have a value of 1, then bits 11 and 12 are
B not read, and bit 13 defines the data format, (the output range is automatically unipolar).
C
D
3 In the loop table, the Ramp/Soak Table Pointer at Addr+34 must point to the start of the
ramp/soak data for that loop. This may be anywhere in user memory, and does not have to
adjoin to the Loop Parameter table, as shown to the left. Each R/S table requires 32 words,
4 regardless of the number of segments programmed.
The ramp/soak table parameters are defined in the table below. Further details are in the
5 section on Ramp/Soak Operation in this chapter.
6 Addr
Offset Step Description Addr
Offset Step Description
+ 00 1 Ramp End SP Value + 20 9 Ramp End SP Value
7 V–Memory Space
User Data
+ 01 1 Ramp Slope + 21 9 Ramp Slope
+ 02 2 Soak Duration + 22 10 Soak Duration
8 V2000
V2037
LOOP #1
32 words
+ 03
+ 04
2
3
Soak PV Deviation
Ramp End SP Value
+ 23
+ 24
10
11
Soak PV Deviation
Ramp End SP Value
LOOP #2
32 words + 05 3 Ramp Slope + 25 11 Ramp Slope
9 + 06 4 Soak Duration + 26 12 Soak Duration
V3000 Ramp/Soak #1
+ 07 4 Soak PV Deviation + 27 12 Soak PV Deviation
10 32 words + 10
+ 11
5
5
Ramp End SP Value
Ramp Slope
+ 30
+ 31
13
13
Ramp End SP Value
Ramp Slope
+ 12 6 Soak Duration + 32 14 Soak Duration
11 V2034 = 3000 Octal + 13 6 Soak PV Deviation + 33 14 Soak PV Deviation
Pointer to R/S table + 14 7 Ramp End SP Value + 34 15 Ramp End SP Value
12 + 15
+ 16
7
8
Ramp Slope
Soak Duration
+ 35
+ 36
15
16
Ramp Slope
Soak Duration
+ 17 8 Soak PV Deviation + 37 16 Soak PV Deviation
13
Ramp/Soak Table Programming Error Flags (Addr + 35)
14 The individual bit definitions of the Ramp/Soak Table Programming Error Flags word
(Addr+35) are listed in the following table. Further details are given in the PID Loop Mode
A section and in the PV Alarm section later in chapter 8.
Select Forward/Reverse
It is important to know which direction the control output will respond to the error (SP-PV),
1 either forward or reverse. A forward (direct) acting control loop means that whenever the
control output increases, the process variable will also increase. The control outputs of most
2 PID loops are forward acting, such as a heating control loop. An increase in heat applied will
increase the PV (temperature).
3 A reverse acting control loop is one where an increase in the control output results in a
decrease in the PV. A common example of this would be a refrigeration system, where an
increase in the cooling input causes a decrease in the PV (temperature).
4 The Transfer Mode
Choose either Bumpless I or Bumpless II to provide a smooth transition of the control output
5 from Manual Mode to Auto Mode. Choosing Bumpless I will set the SP equal to the PV
when the control output is switched from Manual to Auto. If this is not desired, choose
6 BumplessII.
The characteristics of Bumpless I and II transfer types are listed in the chart below. Note that
7 their operation also depends on which PID algorithm you are using, the position or velocity
form of the PID equation. Note that you must use Bumpless Transfer type I when using the
velocity form of the PID algorithm.
8 Transfer Manual-to-Auto Auto-to-Cascade
Transfer Type Select PID Algorithm
Bit 3 Transfer Action Transfer Action
9 Bumpless
Position Forces Bias = Control Output Forces Major Loop Output =
Forces SP = PV Minor Loop PV
Transfer I 0
Forces Major Loop Output =
10 Velocity
Position
Forces SP = PV
Forces Bias = Control Output
Minor Loop PV
none
Bumpless 1
Transfer II
11 Velocity none none
The transfer type can also be selected in an RLL program by setting bit 3 of PID Mode 1,
12 V+00 setting as shown.
Select data
00 12 bit unipolar 0 to 0FFF (0 to 4095)
The data format determines the numerical interface between the PID loop and the PV sensor,
7
and the control output device. This selects the data format for both the SP and the PV.
Loop Mode 8
Loop Mode is a special feature that allows the PID loop controller to perform closed-loop
control while the CPU is in the Program Mode. Careful thought must be taken before using 9
this feature called Independent of CPU mode in the dialog. Before continuing with the PID
setup, a knowledge of the three PID loop modes will be helpful. 10
The DL06 provides the three standard control modes: Manual, Automatic, and Cascade. The
sources of the three basic variables SP, PV and control output are different for each mode. 11
In Manual Mode, the loop is not executing PID calculations (however, loop alarms are still
active). With regard to the loop table, the CPU stops writing values to location V+05 (control
output) for that loop. It is expected that an operator or other intelligent source is manually
12
controlling the output by observing the PV and writing data to the control output as
necessary to keep the process under control. The drawing below shows the equivalent 13
schematic diagram of manual mode operation.
Input from Operator Manual 14
Control Output V+05
Loop
Calculation
A
Auto
In Automatic Mode, the loop operates normally and generates new control output values. It B
calculates the PID equation and writes the result in location V+05 every sample period of that
loop. The equivalent schematic diagram is shown below. C
Input from Operator Manual
Control Output V+05 D
Loop
Calculation
Auto
In Cascade Mode, the loop operates as it does in Automatic Mode, with one important
1 difference. The data source for the SP changes from its normal location at V+02 to using the
control output value, V+05, from another loop. So in Auto or Manual modes, the loop
calculation uses the data at V+02. In Cascade Mode, the loop calculation reads the control
2 output from another loop’s parameter table, V+05.
Another loop Cascaded loop
3 Control Output V+05 Cascade
Loop
Calculation Control Output
4 Normal SP V+02
Setpoint
+ k
Loop
Calculation
–
Auto/Manual
5 Process Variable
As pictured below, a loop can be changed from one mode to another, but cannot go from
6 Manual Mode directly to Cascade, or vice versa. This mode change is prohibited because a loop
would be changing two data sources at the same time, and could cause a loss of control.
7 Manual Automatic Cascade
8 Once the CPU is operating in the Run Mode, the normal operation of the PID loop
controller is to read the loop data and perform calculations on each scan of the RLL program.
9 When the CPU is placed in the Program Mode, the RLL program halts operation and all PID
loops are automatically put into the Manual Mode. The PID parameters can then be changed
if desired. Similarly, by placing the CPU in the Run mode, the PID loops are returned to the
10 operational mode which they were previously in, i.e., Manual, Automatic and Cascade. With
this selection you automatically affect the modes by changing the CPU mode.
11 CPU Modes:
12 Program
Mode change
Run
Loop
Modes:
A Manual
Mode change
Automatic
Mode change
Cascade
B
If bit 15 is set to one, then the loops will run independently of the CPU mode. It is like
C having two independent processors in the CPU... one is running the RLL program and the
other is running the process loops.
Having the ability to run loops independently of the RLL program makes it feasible to make
a ladder logic change while the process is still running. This is especially beneficial for large-
mass continuous processes that are difficult or costly to interrupt. The independent of CPU is
1
the feature used for this.
If you need to operate the PID loops while the RLL program is halted, in Program Mode,
2
either select the Independent of CPU mode in the dialog or edit your program to set and
reset bit 15 of PID Mode 1 word (V+00) in your RLL program. If the bit is set to a zero, the 3
loop will follow the CPU mode; then, when the CPU is placed in the Program Mode, all
loops will be forced into the Manual Mode. 4
When Independent of CPU mode is used, you should also set the PV to be read directly from
an analog input module. This can easily be done in the PID setup dialog, SP/PV.
The SP/PV dialog has a block entitled Process
5
Variable. There is a block within this block called
Auto Transfer From (from analog input) with the 6
information grayed out. Checking the box to the left
of the Auto Transfer From will highlight the 7
information. Select I/O Module then enter the slot
number in which the input module resides. Next,
select the analog input channel of your choice.
8
The second choice is V-Memory. When this is
selected, the V-memory address from where the PV 9
is transferred must be specified.
Whichever method of auto transfer is used, it is 10
recommended to check the Enable Filter Factor (a
low pass filter) and specify the coefficient. 11
You should also select the analog output for the control output to 12
be transferred to. This is done in the PID setup Output dialog
shown here. The block of information in this dialog is grayed-out
until the box next to Auto transfer to I/O module is checked. Once
13
checked, enter the slot number where the output module is
residing and then enter the analog output channel number. 14
A
NOTE: To make changes to any loop table parameters, the PID loop must be in Manual mode and the
PLC must be stopped. If you have selected to operate the PID loop independent of the CPU mode, B
then you must take certain steps to make it possible to make loop parameter changes. You can
temporarily make the loops follow the CPU mode by changing bit 15 to 0. Then, you will be able to
place the loop into Manual Mode using DirectSOFT. After you change the loop’s parameter settings,
C
restore bit 15 to a value of 1 to re-establish PID operation independent of CPU.
D
You may optionally configure each loop to access its analog I/O (PV and control output) by
1 placing proper values in the associated loop table registers in your RLL program. The
following figure shows the loop table parameters at V+36 and V+37 and their auto transfer
role to access the analog values directly.
2
3 Setpoint V +02
k
Error Loop
Calculation
Control output V+05
5 V2036
Loop Table
0X XX Base/Slot /Channel number for PV
V2037 0X XX Base/Slot/Channel number for Output
6 XX 0X
Channel number 1 to 4
7 Slot number 1 to 4
Base 0
8 When these loop table parameters are programmed directly, a value of 0102 in register V2036
directs the loop controller to read the PV data from channel 1 of the analog input. A value of
9 0000 in either register tells the loop controller not to access the corresponding analog value
directly. In that case, ladder logic must be used to transfer the value between the analog input
and the loop table.
10 NOTE: When auto transfer to/from I/O is used, the analog data for all of the channels on the analog
module cannot be accessed by any other method, i.e., pointer or multiplex.
11
SP/PV Addresses
12 An SP/PV dialog will be made available to setup how the setpoint (SP) and the process
variable (PV) will be used in the loop. If this loop is the minor loop of a cascaded pair, enter
13 that control output address in the Remote SP from Cascaded Loop Output area. It is sometimes
desirable to limit the range of setpoint values allowed to be entered. To activate this feature,
check the box next to Enable Limiting. This will activate the Upper and Lower fields for the
14 values to be entered. Set the limits around the SP value to prevent an operator from entering a
A
B
C
D
setpoint value outside of a safe range. The Square root box is only checked for certain PID
loops, such as a flow control loop. If the Auto transfer from I/O module is selected, a first-order
low-pass filter can be used by checking the Enable Filter box. The filter coefficient is user
1
specified. The use of this filter is recommended during closed loop auto-tuning. If the
Independent format had been checked previously, make the Data format selections here. 2
NOTE: The SP/PV dialog can be left as it first appears for basic PID operation.
3
Set Control Output Limits
Another dialog that will be available in the PID setup will be the Output dialog. The control 4
output address, V+05, (determined by the PID loop table beginning address) will be in view.
Enter the output range limits, Upper Limit and Lower Limit, that will meet the requirement
of the process and which will agree with the data format that has been selected. For a basic
5
PID operation using a 12-bit output module, set the Upper Limit to 4095 and leave the
6
7
8
9
10
Lower Limit set to 0. Check the box next for Auto transfer to I/O module if there is a need to
11
send the control output to a certain analog output module, as in the case of using the Loop
Mode independent of CPU Mode; otherwise, the PID output signal cannot control the 12
analog output when the PLC is not in RUN Mode. If the Auto transfer to I/O module feature
is checked, all channels of the module must be used for PID control outputs. If Independent
format has been previously chosen, the Output Data Format will need to be setup here, that
13
is, select Unipolar or Bipolar format and the bit structure. This area is not available and is
grayed out if Common format has been chosen (see page 8-26). 14
WARNING: If the Upper Limit is set to zero, the output will never get above zero. In effect, there
A
will be no control output.
B
C
D
12 The P, I and D gains are 4-digit BCD numbers with values from 0000 to 9999. They contain
an implied decimal point in the middle, so the values are actually 00.00 to 99.99. Some gain
values have units – Proportional gain has no unit, Integral gain may be selected in seconds or
13 in minutes, and Derivative gain is in seconds.
Gain (Proportional Gain) – This is the most basic gain of the three. Values range from 0000
14 to 9999, but they are used internally as xx.xx. An entry of “0000” effectively removes the
proportional term from the PID equation. This accommodates applications which need
A integral-only loops.
Reset (Integral Gain) – Values range from 0001 to 9998, but they are used internally as
B xx.xx. An entry of “0000” or “9999” causes the integral gain to be⬁⬁, effectively removing the
integrator term from the PID equation. This accommodates applications which need
proportional-only loops. The units of integral gain may be either seconds or minutes, as
C shown in the above dialog.
Rate (Derivative Gain) – Values which can be entered range from 0001 to 9999, but they are
D used internally as XX.XX. An entry of “0000” allows removal of the derivative term from the
PID equation (a common practice). This accommodates applications which require only
proportional and/or integral loops. Most control loops will operate as a PI loop.
NOTE: You may elect to leave the tuning dialog blank and enter the tuning parameters in the
DirectSOFT PID View. 1
Loop Calculation
P
Proportional
Control
2
Setpoint Error T erm + Output
k Integral
k
+
–
I
D
Derivative
0
+
+ 3
Process Variable
Derivative,
gain-limited
1
4
Loop Table
5
P ID Mode 1 Setting V+00
V+25 00XX Derivative Gain Limit
Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
6
Derivative gain limit select
Enable Deadband – When selected, the enable deadband function takes a range of small error
1 values near zero, and simply substitutes zero as the value of the error. If the error is larger than
the deadband range, then the error value is used normally.
2 Freeze Bias
The term reset windup refers to an undesirable characteristic of integrator behavior which
3 occurs naturally under certain conditions. Refer to the figure below. Suppose the PV signal
becomes disconnected, and the PV value goes to zero. While this is a serious loop fault, it is
made worse by reset windup. Notice the bias (reset) term keeps integrating normally during
4 the PV disconnect, until its upper limit is reached. When the PV signal returns, the bias value
is saturated (windup) and takes a long time to return to normal. The loop output
5 consequently has an extended recovery time. Until recovery, the output level is wrong and
causes further problems.
6 PV
PV loss PV loss
0
7 Reset windup Freeze bias enabled
Bias
8
9 Output
A
B
C
D
If the process remains out of control for some time, the PV will eventually cross one of the
1 outer alarm thresholds, named High-high alarm and Low-low alarm. Their threshold values
are programmed using the loop table registers listed above. A High-high or Low-low alarm
indicates a serious condition exists, and needs the immediate attention of the operator.
2 The PV Absolute Value Alarms are reported in the four bits in PID Mode and Alarm Status V+06
the PID Mode and Alarm Status word in the loop table, as
3 shown to the right. We highly recommend using ladder logic Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
to monitor these bits. The bit-of-word instructions make this High-high Alarm
4 easy to do. Additionally, you can monitor PID alarms using
DirectSOFT.
High Alarm
Low Alarm
Low-low Alarm
5 PV Deviation Alarms
The PV Deviation Alarms monitor the PV deviation with respect to the SP value. The
deviation alarm has two programmable thresholds, and each threshold is applied equally
6 above and below the current SP value. In the figure below, the smaller deviation alarm is
called the Yellow Deviation, indicating a cautionary condition for the loop. The larger
7 deviation alarm is called the Red Deviation, indicating a strong error condition for the loop.
The threshold values use the loop parameter table locations V+17 and V+20 as shown.
8 Red Deviation Alarm
Yellow Deviation Alarm
Red
Yellow Loop Table
9 SP Green V+17
V+20
XXXX
XXXX
Yellow Deviation Alarm
Red Deviation Alarm
Yellow Deviation Alarm Yellow
11 The thresholds define zones, which fluctuate with the SP value. The green zone which
surrounds the SP value represents a safe (no alarm) condition. The yellow zones lie outside
the green zone, and the red zones are beyond those.
12 The PV Deviation Alarms are reported in the two bits in the
PID Mode and Alarm Status V+06
PID Mode and Alarm Status word in the loop table, as
13 shown to the right. We highly recommend using ladder logic Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
to monitor these bits. The bit-of-word instructions make this Red Deviation
easy to do. Additionally, you can monitor PID alarms using Yellow Deviation
14 DirectSOFT.
The PV Deviation Alarm can be independently enabled and disabled from the other PV
A alarms, using bit 13 of the PID Mode 1 Setting V+00 word.
Remember the alarm hysteresis feature works in conjunction with both the deviation and
B absolute value alarms, and is discussed at the end of this section.
C
D
PV Rate-of-Change Alarm
An excellent way to get an early warning of a process fault is to monitor the rate-of-change of 1
the PV. Most batch processes have large masses and slowly-changing PV values. A relatively
fast-changing PV will result from a broken signal wire for either the PV or control output, a
SP value error, or other causes. If the operator responds to a PV Rate-of-Change Alarm
2
quickly and effectively, the PV absolute value will not reach the point where the material in
process would be ruined. 3
The DL06 loop controller provides a programmable PV Rate-of-Change Alarm, as shown
below. The rate-of-change is specified in PV units change per loop sample time. This value is 4
programmed into the loop table location V+21.
Loop Table
5
PV slope OK PV slope excessive
PV
V+21 XXXX PV Rate-of-Change Alarm
6
rate-of-change alarm
PID Mode and Alarm Status V+06
7
Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Sample time Sample time
PV Rate of
Change Alarm
8
As an example, suppose the PV is the temperature for your process, and you want an alarm 9
whenever the temperature changes faster than 15 degrees/minute. The PV counts per degree
and the loop sample rate must be known. Then, suppose the PV value (in V+03 location)
represents 10 counts per degree, and the loop sample rate is 2 seconds. Use the formula below
10
to convert our engineering units to counts/sample period:
15 degrees 10 counts / degree 150
11
Alarm Rate-of-Change = X = = 5 counts / sample period
1 minute 30 loop samples / min. 30
12
From the calculation result, you would program the value 5 in the loop table for the rate-of-
change. The PV Rate-of-Change Alarm can be independently enabled and disabled from the
other PV alarms, using bit 14 of the PID Mode 1 Setting V+00 word.
13
The alarm hysteresis feature (discussed next) does not affect the Rate-of-Change Alarm.
14
A
B
C
D
PV Alarm Hysteresis
1 The PV Absolute Value Alarm and PV Deviation Alarm are programmed using threshold
values. When the absolute value or deviation exceeds the threshold, the alarm status becomes
2 true. Real-world PV signals have some noise on them, which can cause some fluctuation in
the PV value in the CPU. As the PV value crosses an alarm threshold, its fluctuations cause
the alarm to be intermittent and annoy process operators. The solution is to use the PV
3 Alarm Hysteresis feature.
The PV Alarm Hysteresis amount is programmable from 1 to 200 (binary/decimal). When
4 using the PV Deviation Alarm, the programmed hysteresis amount must be less than the
programmed deviation amount. The figure below shows how the hysteresis is applied when
5 the PV value goes past a threshold and descends back through it.
6 Alarm threshold
Hysteresis
7 PV
V+22 XXXX
Loop Table
PV Alarm Hysteresis
Alarm 1
8 0
9 The hysteresis amount is applied after the threshold is crossed, and toward the safe zone. In
this way, the alarm activates immediately above the programmed threshold value. It delays
10 turning off until the PV value has returned through the threshold by the hysteresis amount.
Alarm Programming Error
11 The PV Alarm threshold values must have
certain mathematical relationships to be valid.
PID Mode and Alarm Status V+06
The requirements are listed below. If not met,
12 the Alarm Programming Error bit will be set, as Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
indicated to the right.
13 • PV Absolute Alarm value requirements:
Alarm Programming Error
NOTE: Overflow/underflow can be alarmed in PID View. The optional C-more operator interface panel
D (see the automationdirect.com website) can also be setup to read these error bits using the PID
Faceplate templates.
Ramp/Soak
R/S (Ramp/Soak) is the last dialog available in the PID setup. The basic PID does not require 1
any entries to be made in order to operate the PID loop. Ramp/Soak will be discussed in
another section.
2
3
4
5
6
7
Complete the PID Setup 8
Once you have filled in the necessary information for the basic PID setup, the configuration
should be saved. The icons on the Setup PID dialog will allow you to save the configuration 9
to the PLC and to disk. The save to icons have the arrow pointing to the PLC and disk. The
read from icons have the arrows pointing away from the PLC and disk.
An optional feature is available with the Doc tab in the Setup PID window. You enter a name
10
and description for the loop. This is useful if there is more than one PID loop in your
application. 11
12
13
Save to disk
14
Save to PLC A
B
NOTE: It is good practice to save your project after setting up the PID loop by selecting File from the C
menu toolbar, then Save project > to disk. In addition to saving your entire project, all the PID
parameters are also saved. D
Open-Loop Test
11 Whether you use manual or auto tuning, it is very important to verify basic characteristics of
a newly-installed process before attempting to tune it. With the loop in Manual Mode, verify
12 the following items for each new loop.
• Setpoint – verify that the SP source can generate a setpoint. Put the PLC in Run Mode and leave
13 the loop in Manual Mode, then monitor the loop table location V+02 to see the SP value(s). (If you
are using the ramp/soak generator, test it now).
• Process Variable – verify that the PV value is an accurate measurement, and the PV data arriving in
14 the loop table location V+03 is correct. If the PV signal is very noisy, consider filtering the input
either through hardware (RC low-pass filter), or using the filter in this chapter.
A • Control Output – if it is safe to do so, manually change the output a small amount (perhaps 10%)
and observe its affect on the process variable. Verify the process is direct-acting or reverse acting, and
check the setting for the control output (inverted or non-inverted). Make sure the control output
B upper and lower limits are not equal to each other.
• Sample Rate – while operating open-loop, this is a good time to find the ideal sample rate (see
C Configure the PID Loop on page 8-25). However, if you are going to use auto tuning, the auto
tuning procedure will automatically calculate the sample rate in addition to the PID gains.
• Adjust the gains so the Proportional Gain = 0.5 or 1.0 (1.0 is a good value based on experience),
5
Integral Gain = 9999 (this basically eliminates reset) and Derivative Gain = 0000. This disables the
integrator and derivative terms, and provides some proportional gain. 6
• Check the bias value in the PID View and set it to zero.
• Set the SP to a value equal to 50% of the full range. 7
• Now, select Auto Mode. If the loop will not stay in Auto Mode, check the
troubleshooting tips at the end of this chapter. Allow the PV to stabilize around the 50%
point of the range.
8
60% here error 9
10% of Over-damped PV response
10
SP range
SP 50% here 11
PV
12
• Change the SP to the 60% point of the range.
The response may take awhile, but you will see that there isn’t any oscillation. This response is 13
not desirable since it takes a long time to correct the error; also, there is a difference between
the SP and the PV. 14
60% here
A
10% of B
SP range
PV response
SP 50% here C
PV
D
• Increase the Proportional gain, for example to 2.0. The control output will be greater and the
response time will be quicker. The trend should resemble the figure below.
Error
60% here
1
2 50% here
SP
3 PV
4 • Now, return the Proportional gain to the stable response; for example, 9.7. The error, SP-PV, should
be small, but not at zero.
• Next, add a small amount of Integral gain (reset) in order for the error to reach zero. Begin by using
5 80 seconds (adjust in minutes if necessary). The error should get smaller.
• Set the Integral gain to a lower value, such as 50 for a different response. If there is no response,
6 continue to decrease the reset value until the response becomes unstable. See the figure below.
7 60% here
10% of
8 SP range
SP 50% here
9 PV Under-damped PV response
10 • For discussion, let us say that a reset value of 35 made the control output unstable. Return the reset
value to the stable value, such as 38. Be careful with this adjustment since the oscillation can
11 destroy the process.
• The control output response should be optimal now, without a Derivative gain. The example
12 recorded values are: Proportional gain = 9.7 and Integral gain = 38 seconds. Note that the error has
been minimized.
13 Minimum Oscillations
14
A Shortest response time
B The foregone method is the most common method used to tune a PID loop. Derivative
gain is almost never used in a temperature control loop. This method can also be used for
C other control loops, but other parameters may need to be added for a stable control output.
Test your loop for a high PV of 80% and again for a low PV of 20%, and correct the values if
D necessary. Small adjustments of the parameters can make the control output more precise or
more unstable. It is sometimes acceptable to have a small overshoot to make the control
output react quicker.
The derivative gain can be helpful for those control loops which are not controlling
temperature. For these loops, try adding a value of 0.5 for the derivative gain and see if this
improves the control output. If there is little or no response, increase the derivative by
1
increments of 0.5 until there is an improvement to the output trend. Recall that the derivative
gain reacts with a rate of change of the error. 2
3
4
5
6
7
8
9
10
11
12
13
14
A
B
C
D
Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
B
C
D
4 Auto Tuning
Control
Setpoint Value Error Term Output
5 + k
–
Loop
Calculation
Manufacturing
Process
Process Variable
6
NOTE: In theory, the SP value does not matter in this case, because the loop is not closed. However,
7 the requirement of the firmware is that the SP value must be more than 5% of the PV range from the
actual PV before starting the auto tune cycle (for the DL06, 12 bit PV should be 205 counts or more
8 below the SP for forward-acting loops, or 205 counts or more above the SP for reverse-acting
loops).
9 When auto tuning, the loop controller induces a step change on the output and simply
observes the response of the PV. From the PV response, the auto tune function calculates the
gains and the sample time. It automatically places the results in the corresponding registers in
10 the loop table.
The following timing diagram shows the events which occur in the open-loop auto tuning
11 cycle. The auto tune function takes control of the control output and induces a 10%-of-span
step change. If the PV change which the loop controller observes is less than 2%, then the
12 step change on the output is increased to 20%-of-span.
* When Auto Tune starts, step change output m=10%
13 * During Auto Tune, the controller output reached the full scale positive limit. Auto Tune stopped
and the Auto Tune Error bit in the Alarm word bit turned on.
14 * When PV change is under 2%, output is changed at 20%. Open Loop Auto Tune Cycle Wave: Step
PV
Rr = Slope
(%) Tangent
SP
A Process Wave
Base Line
LrRr
B (%)
Lr
(sec.)
Time (sec)
C Output Value
Step Change im=10%
(%)
D PID Cycle
Auto Tune Cycle
PID Cycle
When the loop tuning observations are complete, the loop controller computes Rr
(maximum slope in %/sec.) and Lr (dead time in sec). The auto tune function computes the
gains according to the Zeigler-Nichols equations, shown below:
1
PID Tuning
P=1.2*m/LrRr
PI Tuning
P=0.9*m/LrRr
2
I=2.0* Lr I=3.33* Lr
D=0.5* Lr D=0 3
Sample Rate = 0.056* Lr Sample Rate = 0.12*Lr
m = Output step change (10% = 0.1, 20% = 0.2) 4
We highly recommend using DirectSOFT for the auto tuning interface. The duration of each
auto tuning cycle will depend on the mass of the process. A slowly-changing PV will result in 5
a longer auto tune cycle time. When the auto tuning is complete, the proportional, integral,
and derivative gain values are automatically updated in loop table locations V+10, V+11, and
V+12 respectively. The sample time in V+07 is also updated automatically. You can test the
6
validity of the values the auto tuning procedure yields by measuring the closed-loop response
of the PV to a step change in the output. The instructions on how to do this are in the 7
section on the manual tuning procedure (located prior to this auto tuning section).
Closed-Loop Auto Tuning 8
During a closed-loop auto tuning cycle the loop controller operates as shown in the diagram
below. 9
PLC System
Process Variable
10
Response Limit cycle wave
Closed Loop
Auto Tuning 11
Setpoint V alue
+ k
Error T erm Loop
Calculation
Control
Output Manufacturing
Process
12
–
Process Variable 13
When auto tuning, the loop controller imposes a square wave on the output. Each transition 14
of the output occurs when the PV value crosses over/under the SP value. Therefore, the
frequency of the limit cycle is roughly proportional to the mass of the process. From the PV
response, the auto tune function calculates the gains and the sample time. It automatically
A
places the results in the corresponding registers in the loop table.
B
C
D
The following timing diagram shows the events which occur in the closed-loop auto tuning
1 cycle. The auto tune function examines the direction of the offset of the PV from the SP. The
auto tune function then takes control of the control output and induces a full-span step
2 change in the opposite direction. Each time the sign of the error (SP – PV) changes, the
output changes full-span in the opposite direction. This proceeds through three full cycles.
3 Process Wave
SP
Xo
PV
4 Output Value
5 M
6 To
PID Cycle PID Cycle
8
*Mmax = Output Value upper limit setting. Mmin = Output Value lower limit setting.
9 * This example is direct–acting.
When set to reverse–acting, the output will be inverted. When the loop tuning observations
10 are complete, the loop controller computes To (bump period) and Xo (amplitude of the PV).
Then it uses these values to compute Kpc (sensitive limit) and Tpc (period limit). From these
values, the loop controller auto tune function computes the PID gains and the sample rate
11 according to the Zeigler-Nichols equations shown below:
3
4
5
6
7
8
9
10 The PID View will open and appear over the Ladder View which can be brought into view by
clicking on its tab. When using the Data View and the PID View together, each view can be
11 sized for better use as shown on the facing page.
12
13
14
A
B
C
D
The two views are now ready to be used to tune your loop. You will be able to see where the
PID values have been set and see the process that it is controlling. 1
2
3
4
5
6
7
8
The diagram below illustrates how the to use the views to see the current SP, PV and Output
values, along with the other PID addresses. Refer to the Loop Table Definitions page 8-20 for
details of each word in the table. This is also a good data type reference for each word in the
9
table.
10
Scale the time axis of the viewing The trend can be cleared and
window by using this input box. restarted from the left at anytime. 11
Process Variable and
12
Setpoint trends are
color coded. 13
The loop name area 14
turns red whenever there
is an overflow error.
A
P
B
I C
D
D
With both windows positioned in this manner, you are able to see where the PID values have
1 been set and see the process that it is controlling. In the diagram below, you can see the
current SP, PV and Output values, along with the other PID addresses. Refer to the Loop
Table Word Definitions (page 8-20) for details for each word in the table. This is also a good
2 data type reference for each word in the table.
3
4
5
6
7
8
9
10
11
12
13
14
A
B
C
D
Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
3
bits are mode change requests, not commands (certain
conditions can prohibit a particular mode change – see next
page).
Cascade Manual 4
Automatic
The normal state of these mode request bits is “000.” To request a mode change, you must
SET the corresponding bit to a “1” using a one-shot. The PID loop controller automatically
5
resets the bits back to “000” after it reads the mode change request. Methods of requesting
mode changes are: 6
• DirectSOFT’s PID View – this is the easiest method. Use the pull-down menu, or click on one of
the radio buttons if using older DirectSOFT versions, and the appropriate bit will get set. 7
• Ladder program– ladder logic can request any loop mode when the PLC is in Run Mode. This will
be necessary after application startup if mode changes are part of the application.
Use the program shown to the right to SET the mode bit (do not
8
use an OUT coil). On a 0–1 transition of X0, the rung sets the Go to Auto Mode
Auto bit equal to 1. The loop controller resets it.
X0 B2000.1
SET
9
• Operator panel – interface the operator’s panel to ladder logic
using standard methods, then use the logic to the right to set the
mode bit.
10
Since mode changes can only be requested, the PID loop controller will decide when to permit
mode changes and provide the loop mode status. It reports the current mode on bits 0, 1, and
11
2 of the Loop Mode/Alarm Status word, location V+06 in the loop table. The parallel
request/monitoring functions are shown in the figure below. The figure also shows the two 12
possible mode-dependent SP sources, and the two possible Control Output sources.
Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
C
Mode Request Mode Monitoring
Cascade Manual
Automatic
Cascade Manual
Automatic D
Auto
6 Mode Request
Cascade
Mode Monitoring
Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Loop Mode and Alarm Status V+06
Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
PV Analog Filter
A noisy PV signal can make tuning difficult and can cause the control output to be more 1
extreme than necessary, as the output tries to respond to the peaks and valleys of the PV.
There are two equivalent methods of filtering the PV input to make the loop more stable.
The first method is accomplished using the DL06’s built-in filter. The second method
2
achieves a similar result using ladder logic.
The DL06 Built-in Analog Filter 3
The DL06 provides a selectable first-order low-pass PV input filter. We only recommend the
use of a filter during auto tuning or PID control if there is noise on the input signal. You 4
may disable the filter after auto tuning is complete, or continue to use it if the PV input
signal is noisy. 5
+ k
Loop
Calculation
Control Output 6
– Unfiltered
0
PV
7
Process Variable
1 Filtered
PV
8
P ID Mode 2 Setting V+01
Loop Table
9
Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
PV filter
enable/disable
V+24 XXXX FIlter constant
10
Bit 2 of PID Mode Setting 2 provides the enable/disable control for the low-pass PV filter 11
(0=disable, 1=enable). The roll-off frequency of the single-pole low-pass filter is controlled by
using register V+24 in the loop parameter table, the filter constant. The data format of the
filter constant value is BCD, with an implied decimal point 00X.X, as follows:
12
• The filter constant has a valid range of 000.1 to 001.0. The smaller the filter value, the greater the
filtering performed; for example, the value 001.0 provides no filtering.
13
• DirectSOFT converts values above the valid range to 001.0 and values below this range to 000.1
• Values close to 001.0 result in higher roll-off frequencies, while values closer to 000.1 result in lower
14
roll-off frequencies.
We highly recommend using DirectSOFT for the auto tuning interface. The duration of each A
auto tuning cycle will depend on the mass of your process. A slowly-changing PV will result
in a longer auto tune cycle time. B
When the auto tuning is complete, the proportional and integral gain values are automatically
updated in loop table locations V+10 and V+11 respectively. The derivative is calculated if
you autotune for PID and updated in loop table location V+12. The sample time in V+07 is
C
also updated automatically. You can test the validity of the values the auto tuning procedure
yields by measuring the closed-loop response of the PV to a step change in the output. The D
instructions on how to do this are in the section on the manual tuning procedure.
8 SP1
LD
Loads the analog signal, which is a BCD value
and has been loaded from V-memory location
V2000 V2000, into the accumulator. Contact SP1 is
9 BIN
always on.
Converts the BCD value in the accumulator
to binary. This instruction is not needed if the
analog value is originally brought in as a
10 BTOR
binary number.
11 SUBR
Subtracts the real number stored in location
V1400 from the real number in the
V1400 accumulator, and stores the result in the
12 MULR
accumulator. V1400 is the designated
workspace in this example.
Multiplies the real number in the
accumulator by 0.2 (the filter factor),
R0.2 and stores the result in the
13 ADDR
accumulator. This is the filtered value.
Adds the real number stored in
location V1400 to the real number
V1400 filtered value in the accumulator, and
C binary number).
1 Ramp/Soak Generator
Introduction
2 Our discussion of basic loop operation noted the setpoint for a loop will be generated in
various ways, depending on the loop operating mode and programming preferences. In the
3 figure below, the ramp/soak generator is one of the ways the SP may be generated. It is the
responsibility of your ladder program to ensure only one source attempts to write the SP value
at V+02 at any particular time.
4 Setpoint Sources:
Operator Input
5 Ramp/soak generator
Ladder Program
Setpoint V+02
k +
–
Loop
Calculation
Control Output
If the SP for your process rarely changes or can tolerate step changes, you probably will not
7 need to use the ramp/soak generator. However, some processes require precisely-controlled SP
value changes. The ramp/soak generator can greatly reduce the amount of programming required
8 for these applications.
The terms ramp and soak have special meanings in the SP
9 process control industry, and refer to desired setpoint (SP)
values in temperature control applications. In the figure to Soak
Ramp
the right, the setpoint increases during the ramp segment.
10 It remains steady at one value during the soak segment. slope
Complex SP profiles can be generated by specifying a series
11 of ramp/soak segments. The ramp segments are specified in
Time
SP units per second time. The soak time is also programmable in minutes.
12 It is instructive to view the ramp/soak generator as a dedicated function to generate SP values,
as shown below. It has two categories of inputs which determine the SP values generated. The
13 ramp/soak table must be programmed in advance, containing the values that will define the
ramp/soak profile. The loop reads from the table during each PID calculation as necessary.
The ramp/soak controls are bits in a special loop table word that control the real-time
14 start/stop functionality of the ramp/soak generator. The ladder program can monitor the
status of the ramp soak profile (current ramp/segment number).
A Ramp/soak table
Ramp/soak Setpoint Loop Control Output
k
B Ramp/soak controls Generator +
–
Calculation
Process Variable
C
D
Now that we have described the general ramp/soak generator operation, we list its specific
features:
• Each loop has its own ramp/soak generator (use is optional).
1
• You may specify up to eight ramp/soak steps (16 segments). 2
• The ramp soak generator can run any time the PLC is in Run mode. Its operation is independent of
the loop mode (Manual or Auto).
• Ramp/soak real-time controls include Start, Hold, Resume, and Jog.
3
• Ramp/soak monitoring includes Profile Complete, Soak Deviation (SP minus PV), and current
ramp/soak step number. 4
The following figure shows an SP profile consisting of ramp/soak segment pairs. The
segments are individually numbered as steps from 1 to 16. The slope of each of the ramp 5
segments may be either increasing or decreasing. The ramp/soak generator automatically
knows whether to increase or decrease the SP based on the relative values of a ramp’s end
points. These values come from the ramp/soak table.
6
15 16 7
13 14 Soak
5 6
Ramp
Soak
Ramp
8
3 4 Soak
Step 1 2
Ramp
Soak
Ramp
9
Soak
Ramp
SP 10
Ramp/Soak Table V–Memory Space
11
The parameters which define the ramp/soak
profile for a loop are in a ramp/soak table. Each User Data 12
loop may have its own ramp/soak table, but it is
optional. Recall the Loop Parameter table consists
of a 32-word block of memory for each loop, and
V2000
V2037
V2040
LOOP #1
32 words
V2034 =
3000 octal 13
LOOP #2
together they occupy one contiguous memory V2074 =
area. However, the ramp/soak table for a loop is
V2077 32 words
3600 octal 14
individually located, because it is optional for each
loop. An address pointer in location V+34 in the
loop table specifies the starting location of the
V3000 Ramp/Soak #1
32 words
A
ramp/soak table.
In the example to the right, the loop parameter
B
tables for Loop #1 and #2 occupy contiguous 32-
word blocks as shown. Each has a pointer to its V3600 Ramp/Soak #2
32 words
C
ramp/soak table, independently located elsewhere
in user V-memory. Of course, you may locate all
the tables in one group, as long as they do not
D
overlap.
The parameters in the ramp/soak table must be user-defined. the most convenient way is to
1 use DirectSOFT, which features a special editor for this table. Four parameters are required to
define a ramp and soak segment pair, as pictured below.
2 • Ramp End Value – specifies the destination SP value for the end of the ramp. Use the same data
format for this number as you use for the SP. It may be above or below the beginning SP value, so
the slope could be up or down (we don’t have to know the starting SP value for ramp #1).
3 • Ramp Slope – specifies the SP increase in counts (units) per second. It is a BCD number from
00.00 to 99.99 (uses implied decimal point).
4 • Soak Duration – specifies the time for the soak segment in minutes, ranging from 000.1 to 999.9
minutes in BCD (implied decimal point).
5 • Soak PV Deviation – (optional) specifies an allowable PV deviation above and below the SP value
during the soak period. A PV deviation alarm status bit is generated by the ramp/soak generator.
6 Ramp End
SP Value Ramp/Soak Table
Soak PV
7 deviation V+00
V+01
XXXX
XXXX
Ramp End SP Value
Ramp Slope
Slope Soak
SP V+02 XXXX Soak Duration
8 duration
segment becomes active
V+03 XXXX Soak PV Deviation
9 The ramp segment becomes active when the previous soak segment ends. If the ramp is the
first segment, it becomes active when the ramp/soak generator is started, and automatically
10 assumes the present SP as the starting SP.
Many applications do not require all 16 R/S steps. Use all zeros in the table for unused steps.
The R/S generator ends the profile when it finds ramp slope = 0. 1
Ramp/Soak Table Flags
The individual bit definitions of the Ramp/Soak Table Flag (Addr+33) word is listed in the
following table.
2
Bit Ramp/Soak Flag Bit Description Read/Write Bit=0 Bit=1 3
0 Start Ramp / Soak Profile write – 01 Start
1
2
Hold Ramp / Soak Profile
Resume Ramp / Soak Profile
write
write
–
–
01 Hold
01 Resume
4
3 Jog Ramp / Soak Profile write – 01 Jog
4
5
Ramp / Soak Profile Complete
PV Input Ramp / Soak Deviation
read
read
–
Off
Complete
On
5
6 Ramp / Soak Profile in Hold read Off On
7 Reserved read Off On 6
8–15 Current Step in R/S Profile read decode as byte (hex)
The normal state for the ramp/soak control bits is all zeros. Ladder logic must set only one
1 control bit at a time.
• Start – a 0 to 1 transition will start the ramp soak profile. The CPU must be in Run Mode, and the
2 loop can be in Manual or Auto Mode. If the profile is not interrupted by a Hold or Jog command,
it finishes normally.
• Hold – a 0 to 1 transition will stop the ramp/soak profile in its current state, and the SP value will
3 be frozen.
• Resume – a 0 to 1 transition cause the ramp/soak generator to resume operation if it is in the hold
4 state. The SP values will resume from their previous value.
• Jog – a 0 to 1 transition will cause the ramp/soak generator to truncate the current segment (step),
5 and go to the next segment.
Ramp/Soak Profile Monitoring
6 You can monitor the Ramp/Soak profile status using other bits
in the Ramp/Soak Settings V+33 word, shown to the right.
Ramp/Soak Settings V+33
Bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
monitor these to synchronize other parts of the program with Current Profile Step, 2–digit hex
11 the ramp/soak profile. Load this word to the accumulator and Value = 01 to 10 hex,
or 1 to 16 decimal
shift right 8 bits, and you have the step number.
12 Ramp/Soak Programming Errors
The starting address for the ramp/soak table must be a valid Ramp/Soak Table Error V+35
It’s a good idea to test your ramp/soak profile before using it to control the process. This is
B easy to do, because the ramp/soak generator will run even when the loop is in Manual Mode.
Using DirectSOFT’s PID View will be a real time-saver, because it will draw the profile on-
C screen for you. Be sure to set the trending timebase slow enough to display completed ramp-
soak segment pairs in the waveform window.
D
2
3
4
5
6
7
8
9
10
11
12
13
14
A
B
C
D
Cascade Control
1
Introduction
Using cascaded loops is an advanced control technique, superior to individual loop control in 2
certain situations. As the name implies, cascade means that one loop is connected to another
loop. In addition to Manual (open loop) and Auto (closed loop) Modes, the DL06 also
provides Cascaded Mode.
3
NOTE: Using cascaded loops is an advanced process control technique; therefore, we recommend
their use only for experienced process control engineers.
4
When a manufacturing process is complex and contains a lag time from control input to 5
process variable output, even the most perfectly tuned single loop around the process may
yield slow and inaccurate control. It may be the actuator operates on one physical property,
which eventually affects the process variable, measured by a different physical property.
6
Identifying the intermediate variable allows us to divide the process into two parts as shown
in 7
PROCESS the
Control input Process A
Intermediate
Variable Process B
Process
Variable (PV) 8
following figure. 9
The principle of cascaded loops is simply that we add another process loop to more precisely control
the intermediate variable! This separates the source of the control lag into two parts, as well. 10
The diagram below shows a cascade control system, showing that it is simply one loop nested
inside another. The inside loop is called the minor loop, and the outside loop is called the 11
major loop. For overall stability, the minor loop must be the fastest responding loop of the
two (try a factor of 10 for a better response time). We do have to add the additional sensor to
measure the intermediate variable (PV for process A). Notice the setpoint for the minor loop
12
is automatically generated for us, by using the output of the major loop. Once the cascaded
control is programmed and debugged, we only need to deal with the original setpoint and 13
process variable at the system level. The cascaded loops behave as one loop, but with
External
Disturbances
External
Disturbances
14
Output B/
Setpoint
+ k
Loop B
Calculation
Setpoint A
+ k
Loop A
Calculation
Output A Process A
(secondary)
Process B
(primary)
A
– –
Major
Minor
Loop
B
Loop PV, Process A
PV, Process B
C
improved performance over the previous single-loop solution.
One of the benefits to cascade control can be seen by examining its response to external D
disturbances. Remember the minor loop is faster acting than the major loop. Therefore, if a
3 NOTE: Technically, both major and minor loops are cascaded in strict process control terminology.
Unfortunately, we are unable to retain this convention when controlling loop modes. Remember that
all minor loops will be in Cascade Mode, and only the outer-most (major) loop will be in Auto Mode.
4
You can cascade together as many loops as necessary on the DL06, and you may have
5 multiple groups of cascaded loops. For proper operation on cascaded loops you must use the
same data range (12/15 bit) and unipolar/bipolar settings on the major and minor loop.
6 To prepare a loop for Cascade Mode operation as a minor loop, you must program its remote
Setpoint Pointer in its loop parameter table location V+32, as shown below. The pointer must
be the address of the V+05 location (control output) of the major loop. In Cascade Mode, the
7 minor loop will ignore the its local SP register (V+02), and read the major loop’s control
output as its SP instead.
8 Major Loop (Auto mode) Minor Loop (Cascade Mode)
Loop Table Loop Table
When using DirectSOFT’s PID View to watch the SP value of the minor loop, DirectSOFT
12 automatically reads the major loop’s control output and displays it for the minor loop’s SP.
The minor loop’s normal SP location, V+02, remains unchanged.
13 Now, we use the loop parameter arrangement above and draw its equivalent loop diagram,
shown below.
14
Major loop Minor Cascaded loop
A Loop Control Output V+05 Cascade
Control
Calculation
Remote Setpoint Loop Output
B SP + k Calculation
Local SP
–
V+02 Auto/Manual Process Variable
C
D Remember that a major loop goes to Manual Mode automatically if its minor loop is taken
out of Cascade Mode.
1 Time-Proportioning Control
The PID loop controller in the DL06 CPU generates a smooth control output signal across a
numerical range. The control output value is suitable to drive an analog output module,
2 which connects to the process. In the process control field, this is called continuous control,
because the output is on (at some level) continuously.
3 While continuous control can be smooth and robust, the cost of the loop components (such
as actuator, heater amplifiers) can be expensive. A simpler form of control is called time-
4 proportioning control. This method uses actuators which are either on or off (no in-between).
Loop components for on/off-based control systems are lower cost than their continuous
control counterparts.
5 In this section, we will show you how to convert the control output of a loop to time-
proportioning control for the applications that need it. Let’s take a moment to review how
6
7
8
9
10
11 alternately turning a load on and off can control a process. The diagram below shows a hot-air
balloon following a path across some mountains. The desired path is the setpoint. The balloon
pilot turns the burner on and off alternately, which is his control output. The large mass of air
12 in the balloon effectively averages the effect of the burner, converting the bursts of heat into a
continuous effect: slowly changing balloon temperature and ultimately the altitude, which is
13 the process variable.
Time-proportioning control approximates continuous control by virtue of its duty-cycle – the
14 ratio of ON time to OFF time. The following figure shows an example of how duty-cycle
approximates a continuous level when it is averaged by a large process mass.
A period
Desired
B Effect
On/Off On
Control Off
C If we were to plot the on/off times of the burner in the hot-air balloon, we would probably
see a very similar relationship to its effect on balloon temperature and altitude.
D
DIVR
R4.095
Dividing the control output by 4.095, converts the
0 – 4095 range to 0 – 1000, which “matchs” the
13
number of ticks in the 10 second timer range.
T0
V1400
The second fast timer also counts in increments of .01
B
TMRF T1 seconds, so its range is variable from 0 to a maximum
V1400 of 1000 ticks, or 10 seconds. This timer’s output, T1,
T1 TA1 K0
turns off the output coil, Y0, when the preset is reached.
1 Feedforward Control
Feedforward control is an enhancement to standard closed-loop control. It is most useful for
diminishing the effects of a quantifiable and predictable loop disturbance or sudden change in
2 setpoint. Use of this feature is an option available to you on the DL06. However, it’s best to
implement and tune a loop without feedforward, and adding it only if better loop
3 performance is still needed. The term feedforward refers to the control technique involved,
shown in the diagram below. The incoming setpoint value is fed forward around the PID
equation, and summed with the output.
4 Feedforward path
kf
5
+
6 Setpoint
k
Loop
Calculation
+ k
Control Output
+
–
7 Process Variable
In the previous section on the bias term, we said that “the bias term value establishes a
8 working region or operating point for the control output. When the error fluctuates around its
zero point, the output fluctuates around the bias value.” Now, when there is a change in
setpoint, an error is generated and the output must change to a new operating point. This
9 also happens if a disturbance introduces a new offset in the loop. The loop does not really
know its way to the new operating point... the integrator (bias) must increment/decrement
10 until the error disappears, and then the bias has found the new operating point.
Suppose that we are able to know a sudden setpoint change is about to occur (common in
11 some applications). We can avoid much of the resulting error in the first place, if we can
quickly change the output to the new operating point. If we know (from previous testing)
what the operating point (bias value) will be after the setpoint change, we can artificially
12 change the output directly (which is feedforward). The benefits of using feedforward are:
• The SP–PV error is reduced during predictable setpoint changes or loop offset disturbances.
13 • Proper use of feedforward will allow us to reduce the integrator gain. Reducing integrator gain gives
us an even more stable control system.
14 Feedforward is very easy to use in the DL06 loop controller, as shown below. The bias term
has been made available to the user in a special read/write location, at PID Parameter Table
A location V+04.
Loop Calculation
C kp P
V+04
Setpoint Error T erm + Control Output
k ki XXXX k
Bias Term
D +
–
I +
+
Process Variable kd D
To change the bias (operating point), ladder logic only has to write the desired value to V+04.
The PID loop calculation first reads the bias value from V+04 and modifies the value based
on the current integrator calculation. Then it writes the result back to location V+04. This
1
arrangement creates a sort of transparent bias term. All you have to do to implement feed
forward control is write the correct value to the bias term at the right time (see the following 2
example).
NOTE: When writing the bias term, one must be careful to design ladder logic to write the value only
3
once, at the moment when the new bias operating point is to occur. If ladder logic writes the bias
value on every scan, the loop’s integrator is effectively disabled. 4
Feedforward Example
How do we know when to write to the bias term, and what value to write? Suppose we have
5
an oven temperature control loop, and we have already tuned the loop for optimal
performance. Refer to the figure below. We notice that when the operator opens the oven 6
door, the temperature sags a bit while the loop bias adjusts to the heat loss. Then, when the
door closes, the temperature rises above the SP until the loop adjusts again. Feedforward
control can help diminish this effect.
7
Oven Closed
Open Closed
8
door
PV PV sags
9
PV excess
10
Bias
11
First, we record the amount of bias change the loop controller generates when the door opens
or closes. Then, we write a ladder program to monitor the position of an oven door limit 12
switch. When the door opens, our ladder program reads the current bias value from V+04,
adds the desired change amount, and writes it back to V+04. When the door closes, we
duplicate the procedure, but subtracting desired change amount instead. The following figure
13
shows the results.
Oven Closed
14
Open Closed
door
A
PV
Feed-forward Feed-forward
B
Bias
C
The step changes in the bias are the result of our two feed-forward writes to the bias term. We
can see the PV variations are greatly reduced. The same technique may be applied for changes
D
in setpoint.
7
8
Note: The inputs will be read in binary format 0-4095 only if the temperature does not
9 go above 409.5 degrees. Full range is 65535, which equates to 6,553.5 degrees, since the
RTD card reads directly in tenths of a degree. The input resolution of the PID loop needs
to be set based on the max. temperature of the application since the RTD card is always
10 16 bit resolution.
11
12
13
14 Set to read degrees F and select up scale burnout.
A
B
C
D
Program continued on next page
Note that the modules used in the PID loop example program were set up for binary format.
1 They could have been set up for BCD format. In the latter case, the BCD data would have to
be converted to binary format before being stored to the setpoint and process variable, and
the control output would have to be converted from BCD to binary before being stored to
2 the analog output.
By following the steps outlined in this chapter, you should be able to set up workable PID
3 control loops. The DirectSOFT Programming Software Manual provides more information
for the use of PID View.
4 For a step-by-step tutorial, go to the Technical Support section located on our website,
www.automationdirect.com. Once you are at the website, click on Technical Support Home.
5 After this page opens, find and select Guided Tutorials located under the Using Your
Products column. An Animated Tutorial page will open. Under Available Tutorials, find
PID Trainer and select View the Powerpoint slide show and begin viewing the tutorial. The
6 Powerpoint Viewer can be downloaded if your computer does not have Powerpoint installed.
7
8
9
10
11
12
13
14
A
B
C
D
Troubleshooting Tips
1
Q. The loop will not go into Automatic Mode.
A. Check the following for possible causes: 2
• A PV alarm exists, or a PV alarm programming error exists.
• The loop is the major loop of a cascaded pair, and the minor loop is not in Cascade Mode. 3
Q. The Control Output stays at zero constantly when the loop is in Automatic
Mode. 4
A. Check the following for possible causes:
• The Control Output upper limit in loop table location V+31 is zero. 5
• The loop is driven into saturation, because the error never goes to zero value and changes (algebraic)
sign. 6
Q. The Control Output value is not zero, but it is incorrect.
A. Check the following for possible causes: 7
• The gain values are entered improperly. Remember, gains are entered in the loop table in BCD,
while the SP and PV are in binary. If you are using DirectSOFT, it displays the SP, PV, Bias and
Control output in decimal (BCD), converting it to binary before updating the loop table.
8
Q. The Ramp/Soak Generator does not operate when I activate the Start bit. 9
A. Check the following for possible causes:
• The Ramp/Soak enable bit is off. Check the status of bit 11 of loop parameter table location V+00.
It must be set =1.
10
• The hold bit or other bits in the Ramp/Soak control are on.
• The beginning SP value and the first ramp ending SP value are the same, so first ramp segment has
11
no slope and consequently has no duration. The ramp/soak generator moves quickly to the soak
segment, giving the illusion the first ramp is not working. 12
• The loop is in Cascade Mode, and is trying to get the SP remotely.
• The SP upper limit value in the loop table location V+27 is too low. 13
• Check your ladder program to verify it is not writing to the SP location (V+02 in the loop table). A
quick way to do this is to temporarily place an end coil at the beginning of your program, then go
to PLC Run Mode, and manually start the ramp/soak generator.
14
Q. The PV value in the table is constant, even though the analog module receives A
the PV signal.
A. Your ladder program must read the analog value from the module successfully and write it
into the loop table V+03 location. Verify the analog module is generating the value, and
B
the ladder is working.
Q. The Derivative gain doesn’t seem to have any affect on the output.
C
A. The derivative limit is probably enabled (see section on derivative gain limiting). D
4 Q. The SP and PV values I enter with DirectSOFT work okay, but these values
do not work properly when the ladder program writes the data.
5 A. The PID View in DirectSOFT lets you enter SP, PV, and Bias values in decimal, and
displays them in decimal for your convenience. For example, when the data format is 12
bit unipolar, the values range from 0 to 4095. However, the loop table actually requires
6 these in hex, so DirectSOFT converts them for you. The values in the table range from 0
to FFF, for 12-bit unipolar format.
7 Q. The loop seems unstable and impossible to tune, no matter what gains I use.
A. Check the following for possible causes:
8 • The loop sample time is set too long. Refer to the section near the front of this chapter on selecting
the loop update time.
9 • The gains are too high. Start out by reducing the derivative gain to zero. Then reduce the integral
gain, and the proportional gain if necessary.
10 • There is too much transfer lag in your process. This means the PV reacts sluggishly to control
output changes. There may be too much “distance” between actuator and PV sensor, or the actuator
may be weak in its ability to transfer energy into the process.
11 • There may be a process disturbance that is over-powering the loop. Make sure the PV is relatively
steady when the SP is not changing.
12
13
14
A
B
C
D
PID Loop A mathematical method of closed-loop control involving the sum of three terms based on
1 proportional, integral, and derivative error values. The three terms have independent gain constants,
allowing one to optimize (tune) the loop for a particular physical system.
2 Position Algorithm The control output is calculated so it responds to the displacement (position) of the
PV from the SP (error term)
3 Process A manufacturing procedure which adds value to raw materials. Process control particularly
refers to inducing chemical changes to the material in process.
Process Variable (PV) A quantitative measurement of a physical property of the material in process,
4 which affects final product quality and is important to monitor and control.
Proportional Gain A constant that determines the magnitude of the PID proportional term in response
5 to the current error.
PV Absolute Alarm A programmable alarm that compares the PV value to alarm threshold values.
6 PV Deviation Alarm A programmable alarm that compares the difference between the SP and PV
values to a deviation threshold value.
7 Ramp/Soak Profile A set of SP values called a profile, which is generated in real time upon each loop
calculation. The profile consists of a series of ramp and soak segment pairs, greatly simplifying the task
8 of programming the PLC to generate such SP sequences.
Rate Also called differentiator, the rate term responds to the changes in the error term.
9 Remote Setpoint The location where a loop reads its setpoint when it is configured as the minor loop in
a cascaded loop topology.
10 Reset Also called integrator, the reset term adds each sampled error to the previous, maintaining a
running total called the bias.
11 Reset Windup A condition created when the loop is unable to find equilibrium, and the persistent error
causes the integrator (reset) sum to grow excessively (windup). Reset windup causes an extra recovery
delay when the original loop fault is remedied.
12 Reverse-Acting Loop A loop in which the PV increases in response to a control output decrease. In
other words, the process has a negative gain.
13 Sampling time The time between PID calculations. The CPU method of process control is called a
sampling controller, because it samples the SP and PV only periodically.
14 Setpoint (SP) The desired value for the process variable. The setpoint (SP) is the input command to the
loop controller during closed loop operation.
A Soak Deviation The soak deviation is a measure of the difference between the SP and PV during a soak
segment of the Ramp/Soak profile, when the Ramp/Soak generator is active.
B Step Response The behavior of the process variable in response to a step change in the SP (in closed
loop operation), or a step change in the control output (in open loop operation)
C Transfer To change from one loop operational mode to another (between Manual, Auto, or Cascade).
The word “transfer” probably refers to the transfer of control of the control output or the SP,
D depending on the particular mode change.
Velocity Algorithm The control output is calculated to represent the rate of change (velocity) for the PV
to become equal to the SP.
Bibliography
1
Fundamentals of Process Control Theory, Second Edition Application Concepts of Process Control
Author: Paul W. Murrill
Publisher: Instrument Society of America
Author: Paul W. Murrill
Publisher: Instrument Society of America 2
ISBN 1–55617–297–4 ISBN 1–55617–080–7
PID Controllers: Theory, Design, and Tuning, 2nd Edition Author:
K. Astrom and T Hagglund
Fundamentals of Temperature, Pressure, and Flow Measurements,
Third edition 3
Publisher: Instrument Society of America Author: Robert P. Benedict
ISBN 1–55617–516–7 Publisher: John Wiley and Sons