Trang chủ Liên hệ

Cách điều khiển PID ON/OFF bằng đầu ra số

CÔNG TY TNHH THIẾT BỊ ĐO LƯỜNG VÀ ĐIỀU KHIỂN 19/06/2023

Cách điều khiển PID ON/OFF bằng đầu ra số

Q: How to program an ON-Off (digital) PID control loop with PLC?

A: Use the “On/Off Time (0.00 – 60.00)” parameter in the PID Special Program.

1. Configure the “On/Off Time (0.00 – 60.00)” parameter as a non-zero value. (in the unit of second)

2. The value of the “On/Off Time (0.00 – 60.00)” parameter should be configured as 10 times or more of the “Sampling Time” value.

3. Add a sequence program which checks the control output value (MV) as described in the following line: If the MV output was the same value of “MV High Limit,” then make the digital output point as ON. Otherwise, put the digital output point as OFF

This document describes a PID loop which has a digital control output – ON/OFF controlled PID. Although the ON/OFF controlled PID does not have an analog output, the basic concept and parameters are exactly the same as the standard one (PID control by the analog output).

All parameters in the above dialog box have the same meanings. Only one parameter needed to consider for a digital output PID is the “On/Off Time”. Normally this parameter is configured as zero in an analog output PID. If this item was configured as any non-zero value, the configured PID loop will perform a digital output control. The “On/Off Time” parameter decides the duty cycle of digital output as shown in the following picture.

During the ON/Off PID control mode, the PLC CPU controls the ON duration within the boundary of defined “On/Off Time”. And the output signal state (ON or OFF) is decided at every sampling time period. Because of that, the “On/Off Time” duration is recommended to be configured as at least ten times of the “Sampling Time”.

As previously described, the final control output (MV: Management Value, D00102 in the above example PID) will have just two possible output values. One is “MV Low Limit” which imply the OFF output state, and the other is “MV High Limit” which imply the ON output state. However, since the actual control output is a digital output, the programmer has to add a line of sequence program which converts the MV to a digital output signal, as shown in the following picture.

This one sequence program line can be inserted to anywhere of normal scan program type sequence program. In this example, the output actuator assumes to be allocated on the Y0030 point, and there is just one comparison. If the calculated MV has the same value as predefined “MV High Limit”, then turn on the control output. Otherwise, it turns off the control output.

[PLC] How to Control PID ON and OFF by Digital Output

Bài viết liên quan