Last modified by Iris on 2026/03/30 11:52

From version 4.7
edited by Iris
on 2025/10/21 14:58
Change comment: There is no comment for this version
To version 12.1
edited by Iris
on 2026/03/30 11:52
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -31,17 +31,18 @@
31 31  
32 32  This instruction is to complete the PID operation and is used to control the parameters of the closed-loop control system. PID control has a wide range of applications in mechanical equipment, pneumatic equipment, constant pressure water supply and electronic equipment, etc. among them:
33 33  
34 -[[image:11_html_1c6bb88c06ac24cf.png]] is the target value of PID control;
34 +[[image:11_html_1c6bb88c06ac24cf.png||height="18" width="32"]] is the target value of PID control;
35 35  
36 -[[image:11_html_fb5122fb6e3a43d5.png]] is the measured feedback value;
36 +[[image:11_html_fb5122fb6e3a43d5.png||height="19" width="34"]] is the measured feedback value;
37 37  
38 -[[image:11_html_6c3fad4a32a3db43.png]] The starting address of the buffer area for setting parameters required for PID operation and saving intermediate results, occupies a total of 26 variable units in the subsequent addresses, the value range is D0 to D7974, it is best to specify the power failure retention area, which will remain after the power is OFF Set the value, otherwise the buffer area needs to be assigned value before starting the operation for the first time. The function and parameter description of each unit are described in this section;
38 +[[image:11_html_6c3fad4a32a3db43.png||height="19" width="34"]] The starting address of the buffer area for setting parameters required for PID operation and saving intermediate results, occupies a total of 26 variable units in the subsequent addresses, the value range is D0 to D7974, it is best to specify the power failure retention area, which will remain after the power is OFF Set the value, otherwise the buffer area needs to be assigned value before starting the operation for the first time. The function and parameter description of each unit are described in this section;
39 39  
40 -[[image:11_html_b126b1b2673dc1f4.png]] is the storage unit of the PID calculation result. Please designate [[image:11_html_d47cd1f59b766ed3.png]] as a non-battery holding area, otherwise it needs to be initialized and cleared before starting the calculation for the first time.
40 +[[image:11_html_b126b1b2673dc1f4.png||height="22" width="39"]] is the storage unit of the PID calculation result. Please designate [[image:11_html_d47cd1f59b766ed3.png||height="24" width="47"]] as a non-battery holding area, otherwise it needs to be initialized and cleared before starting the calculation for the first time.
41 41  
42 42  **Programming example**
43 43  
44 -[[image:1758108900843-990.png]]
44 +(% style="text-align:center" %)
45 +[[image:1758108900843-990.png||height="24" width="396"]]
45 45  
46 46  The parameter description is as follows:
47 47  
... ... @@ -51,34 +51,34 @@
51 51  
52 52  The D130 unit is used to store the calculated control output value to control the execution of the action.
53 53  
54 -The function and setting method of the parameter value of each unit about starting of [[image:11_html_6c3fad4a32a3db43.png]] are described in the following table:
55 +The function and setting method of the parameter value of each unit about starting of [[image:11_html_6c3fad4a32a3db43.png||height="27" width="48"]] are described in the following table:
55 55  
56 56  |**Unit**|**Features**|**Setting instructions**
57 -|[[image:11_html_6c3fad4a32a3db43.png]]|Sampling time (TS)|The setting range is 1 to 32767 (ms), but it needs to be greater than the PLC program scan period
58 -|[[image:11_html_6c3fad4a32a3db43.png]] +1|Action direction (ACT)|(((
58 +|[[image:11_html_6c3fad4a32a3db43.png||height="24" width="43"]]|Sampling time (TS)|The setting range is 1 to 32767 (ms), but it needs to be greater than the PLC program scan period
59 +|[[image:11_html_6c3fad4a32a3db43.png||height="22" width="39"]] +1|Action direction (ACT)|(((
59 59  bit0: 0 = positive action; 1 = reverse action bit3: 0 = unidirectional; 1 = bidirectional
60 60  
61 61  bit4: 0 = auto-tuning does not work; 1 = auto-tuning is executed, others cannot be used.
62 62  )))
63 -|[[image:11_html_6c3fad4a32a3db43.png]] +2|Maximum ascent rate (DeltaT)|Setting range 0 to 32000 is the threshold of integral increment
64 -|[[image:11_html_6c3fad4a32a3db43.png]] +3|Proportional gain (Kp)|Setting range 0 to 32767, note that this value is enlarged by 256 times, the actual value is Kp/256
65 -|[[image:11_html_6c3fad4a32a3db43.png]] +4|Integral gain (Ki)|Setting range 0 to 32767, Ki=16384Ts/Ti, Ti is the integral time
66 -|[[image:11_html_6c3fad4a32a3db43.png]] +5|Differential gain (Kd)|Setting range 0 to 32767, Kd≈Td/Ts, Td is the derivative time
67 -|[[image:11_html_6c3fad4a32a3db43.png]] +6|Filtering (C0)|Setting range 0 to 1023, integral part filtering
68 -|[[image:11_html_6c3fad4a32a3db43.png]] +7|Output lower limit|(((
64 +|[[image:11_html_6c3fad4a32a3db43.png||height="24" width="43"]] +2|Maximum ascent rate (DeltaT)|Setting range 0 to 32000 is the threshold of integral increment
65 +|[[image:11_html_6c3fad4a32a3db43.png||height="24" width="43"]] +3|Proportional gain (Kp)|Setting range 0 to 32767, note that this value is enlarged by 256 times, the actual value is Kp/256
66 +|[[image:11_html_6c3fad4a32a3db43.png||height="24" width="43"]] +4|Integral gain (Ki)|Setting range 0 to 32767, Ki=16384Ts/Ti, Ti is the integral time
67 +|[[image:11_html_6c3fad4a32a3db43.png||height="23" width="41"]] +5|Differential gain (Kd)|Setting range 0 to 32767, Kd≈Td/Ts, Td is the derivative time
68 +|[[image:11_html_6c3fad4a32a3db43.png||height="23" width="41"]] +6|Filtering (C0)|Setting range 0 to 1023, integral part filtering
69 +|[[image:11_html_6c3fad4a32a3db43.png||height="24" width="43"]] +7|Output lower limit|(((
69 69  Recommended setting range -2000 to 2000
70 70  
71 71  {{id name="OLE_LINK630"/}}When bit3 of S3+1=0, set to 0; When bit3 of S3+1=1, set to -2000;
72 72  )))
73 -|[[image:11_html_6c3fad4a32a3db43.png]] +8|Output upper limit|Recommended setting value 2000
74 -|[[image:11_html_6c3fad4a32a3db43.png]] +9|Reserved|Reserved
74 +|[[image:11_html_6c3fad4a32a3db43.png||height="23" width="41"]] +8|Output upper limit|Recommended setting value 2000
75 +|[[image:11_html_6c3fad4a32a3db43.png||height="25" width="44"]] +9|Reserved|Reserved
75 75  |︙|︙|︙
76 -|[[image:11_html_6c3fad4a32a3db43.png]] +25|Reserved|Reserved
77 +|[[image:11_html_6c3fad4a32a3db43.png||height="22" width="39"]] +25|Reserved|Reserved
77 77  
78 78  **Auto tuning example**
79 79  
80 80  (% style="text-align:center" %)
81 -[[image:11_html_c64303b9c6a47ae9.png||class="img-thumbnail"]]
82 +[[image:11_html_c64303b9c6a47ae9.png||height="583" width="567" class="img-thumbnail"]]
82 82  
83 83  **✎Note:**
84 84  
... ... @@ -315,7 +315,7 @@
315 315  **Content, range and data type**
316 316  
317 317  |**Name**|**Features**|**Bits (bits)**|**Whether pulse type**|**Instruction format**|**Step count**
318 -|CCPID|PID Operation|16|No|CCPID [[image:11_html_253eb1176b58e989.png]] [[image:11_html_80fccb1046bf8776.png]] [[image:11_html_8760537828f7beaf.png]] [[image:11_html_8b4fbd61f8ea9808.png]]|9
319 +|CCPID|PID Operation|16|No|CCPID [[image:11_html_253eb1176b58e989.png||height="23" width="44"]] [[image:11_html_80fccb1046bf8776.png||height="25" width="44"]] [[image:11_html_8760537828f7beaf.png||height="26" width="49"]] [[image:11_html_8b4fbd61f8ea9808.png||height="27" width="51"]]|9
319 319  
320 320  |(% rowspan="2" %)**Instruction**|(% rowspan="2" %)**Parameter**|(% colspan="3" %)**Devices**|**Offset modification**|**Pulse extension**
321 321  |**D**|**R**|**SD**|**[D]**|**XXP**
... ... @@ -614,276 +614,6 @@
614 614  (% style="text-align:center" %)
615 615  [[image:11_html_74a7527eace55103.gif||class="img-thumbnail"]]
616 616  
617 -== ** CCPIN_SHT operation** ==
618 -
619 -**CCPIN_SHT**
620 -
621 -This instruction is used to perform PID control that changes the output value according to the variation of the input.
622 -
623 --[CCPID_SHT (s1) (s2)  (s3) (d)]
624 -
625 -**Content, range and data type**
626 -
627 -|**Parameter**|**Content**|**Range**|**Data type**|**Data type (label)**
628 -|(s1)|The device number that stores the target value (SV)|-32767 to 32767|Signed BIN 16 bit|ANY16
629 -|(s2)|The device number that stores the measured value (SV)|-32767 to 32767|Signed BIN 16 bit|ANY16
630 -|(s3)|The device number that stores parameters|1 to 32767|Signed BIN 16 bit|ANY16
631 -|(d)|The device number that stores the output value (SV)|-32767 to 32767|Signed BIN 16 bit|ANY16
632 -
633 -**Device used**
634 -
635 -|(% rowspan="2" %)**Instruction**|(% rowspan="2" %)**Parameter**|(% colspan="3" %)**Devices**|(((
636 -**Offset**
637 -
638 -**modification**
639 -)))|(((
640 -**Pulse**
641 -
642 -**extension**
643 -)))
644 -|**D**|**R**|**SD**|**[D]**|**XXP**
645 -|(% rowspan="4" %)CCPID_SHT|Parameter 1|●|●|●| |
646 -|Parameter 2|●|●|●| |
647 -|Parameter 3|●|●|●| |
648 -|Parameter 4|●|●|●| |
649 -
650 -**Features**
651 -
652 -This instruction is to complete the temperature control operation, used to control the parameters of the closed-loop control system.
653 -
654 -[[image:1758113204827-229.png]] is the target value of CCPID SHT control (SV).
655 -
656 -[[image:1758113217569-229.png]] is the measured feedback value (PV).
657 -
658 -[[image:1758113227549-844.png]] is the start address of the cache where the parameters required by CCPID_SHT operation and intermediate results are saved,
659 -
660 -occupying a total of 36 variable units of subsequent addresses. The value range is from D0 to D7946 or from R0 to R29964. It is better to specify power failure retention, and the setting value remains after power supply is off. Otherwise, the cache needs to be assigned value before starting the calculation for the first time. The function and parameter description of each unit are described in this section.
661 -
662 -[[image:1758113243743-809.png]] is the storage unit of the CCPID_SHT calculation result. Please specify it as a non-battery retentive area, otherwise it needs to be initialized and cleared before the first start of calculation.
663 -
664 -**Programming example**
665 -
666 -[[image:1758113269397-376.png]]
667 -
668 -
669 -The parameter description is as follows:
670 -
671 -The target value of CCPID_SHT adjustment is stored in D1, and D0 is the closed-loop feedback value. Note that D0 and D9 must be of the same dimension, such as both 0.01MPa units, or 1℃ units, etc..
672 -
673 -A total of 36 units of D1000 to D1035 are used to store the set value and process value of CCPID_SHT operation. These values must be set item by item before the first CCPID_SHT calculation.
674 -
675 -D100 unit is used to store the calculated control output value to control the execution of the action.
676 -
677 -[[image:1758113227549-844.png]]The functions and setting methods of the parameter values of each unit at the beginning are described in the table below:
678 -
679 - [[image:1758113227549-844.png]]to[[image:1758113227549-844.png]] +15 is the parameter range that can be set (parameters set when CCPID_SHT is executed).
680 -
681 -[[image:1758113227549-844.png]]+2 to [[image:1758113227549-844.png]]+31 is the parameter space used in the self-tuning process. (This space is multiplexed with the parameter space during control)
682 -
683 -
684 -The functions and setting methods of the parameter values of each unit started by are described in the following table:
685 -
686 -|(% style="width:106px" %)**Unit**|(% style="width:146px" %)**Function**|**Description**
687 -|(% style="width:106px" %)[[image:1758113227549-844.png]]|(% style="width:146px" %)Sampling time (TS)|Range: 1 to 32767 (ms). It must be longer than PLC program scan cycle.
688 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+1|(% style="width:146px" %)Control flag bit|(((
689 -bit0: 0=Forward action; 1=Reverse action
690 -
691 -bit3: 0=one-way; 1=two-way
692 -
693 -bit4: 0=Self-tuning does not act; 1=Perform self-tuning and the others are not available.
694 -
695 -bit6: 0=Two-segment self-tuning does not act; 1=Perform two-segment self-tuning (bit4 must set to 1)
696 -
697 -bit7: 0=Three-segment self-tuning does not act; 1=Perform three-segment self-tuning (bit4 must set to 1)
698 -
699 -Bit15: The instruction initialization flag bit. When initialization is complete, it is set to 1.
700 -)))
701 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+2|(% style="width:146px" %)Maximum rate of increase (DeltaT)|Range: 0 to 32000. Threshold of integral increment
702 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+3|(% style="width:146px" %)Proportional gain (Kp)|Range: 0 to 32767. This value is magnified 256 times and the actual value is Kp/256.
703 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+4|(% style="width:146px" %)Integral gain (Ki)|Range: 0 to 32767, Ki=16384Ts/Ti,Ti is integral time
704 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+5|(% style="width:146px" %)Differential gain (Kd)|Range: 0 to 32767, Kd≈Td/Ts, Td is differential time
705 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+6|(% style="width:146px" %)Filter constant (Co)|Range: 0 to 1023, Integral partial filtering.
706 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+7|(% style="width:146px" %)Output lower limit|Recommended setting range: -2000 to 2000
707 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+8|(% style="width:146px" %)Output upper limit|Recommended setting value: 2000. When the upper and lower limits are both 0, the upper limit becomes 2000 and the lower limit becomes 0.
708 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+9|(% style="width:146px" %)Reserved|Reserved for internal use
709 -|(% style="width:106px" %)┇|(% style="width:146px" %)┇|┇
710 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+35|(% style="width:146px" %)Reserved|Reserved for internal use
711 -
712 -Parameter space corresponding to the self-tuning time
713 -
714 -|(% style="width:106px" %)**Unit**|(% style="width:141px" %)**Function**|**Description**
715 -|(% style="width:106px" %)[[image:1758113227549-844.png]]|(% style="width:141px" %)Sampling time (TS)|Range: 1 to 32767 (ms). It must be longer than PLC program scan cycle.
716 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+1|(% style="width:141px" %)Control flag bit|(((
717 -bit0: 0=Forward action; 1=Reverse action
718 -
719 -bit3: 0=one-way; 1=two-way
720 -
721 -bit4: 0=Self-tuning does not act; 1=Perform self-tuning and the others are not available.
722 -
723 -bit6: 0=Two-segment self-tuning does not act; 1=Perform two-segment self-tuning (bit4 must set to 1)
724 -
725 -bit7: 0=Three-segment self-tuning does not act; 1=Perform three-segment self-tuning (bit4 must set to 1)
726 -
727 -Bit15: This instruction initializes the flag bit. When initialization is complete, the position is set to 1.
728 -)))
729 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+2|(% style="width:141px" %)Sampling time of PID running after self-tuning|Setting range: 1 to 32767 ms(). When Ts≦0, Ts=3000
730 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+3|(% style="width:141px" %)Coefficient ukp for PID parameter calculation|Setting range: 0 to 500. When ukp≦0, ukp=100; When ukp≧500, ukp=500.
731 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+4|(% style="width:141px" %)Coefficient uki for PID parameter calculation|Setting range: 0 to 32767. When uki≦0, uki=50.
732 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+5|(% style="width:141px" %)Coefficient ukd for PID parameter calculation|Setting range: 0 to 32767. When ukd≦0, ukd=50.
733 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+6|(% style="width:141px" %)Reserved|Reserved
734 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+7|(% style="width:141px" %)Output lower limit|Recommended setting range: -2000 to 2000
735 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+8|(% style="width:141px" %)Output upper limit|Recommended setting value: 2000. When the upper and lower limits are both 0, the upper limit becomes 2000 and the lower limit becomes 0.
736 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+9|(% style="width:141px" %)Reserved|Reserved for internal use
737 -|(% style="width:106px" %)┇|(% style="width:141px" %)┇|┇
738 -|(% style="width:106px" %)[[image:1758113227549-844.png]]+35|(% style="width:141px" %)Reserved|Reserved for internal use
739 -
740 -**Error code**
741 -
742 -|**Error code**|**Content**
743 -|4085H|Read application instruction (S1), (S2), (S3) and (d) output results exceed the range of device.
744 -|4086H|The devices specified in write application instruction (S3) and (d) exceed the range of the corresponding device.
745 -|4DB0H|Sampling time (Ts) exceeds the range the object (Ts≦0)
746 -|4DB1H|Output filter constant (Co) exceeds the range the object (Co<0 or Co>1023)
747 -|4DB2H|Maximum rate of increase (DeltaT) exceeds the range the object (deltaT<0 or deltaT>32000)
748 -|4DB3H|Proportional gain (Kp) exceeds the range the object (Kp≦0)
749 -|4DB4H|Integral gain (Ki) exceeds the range the object (Ki≦0)
750 -|4DB5H|Differential gain (Kd) exceeds the range the object (Kd≦0)
751 -|4DB6H|Sampling time (Ts) < operation cycle
752 -
753 -**Example**
754 -
755 -
756 -
757 -(% style="text-align:center" %)
758 -[[image:企业微信截图_17581134583885.png]]
759 -
760 -(% style="text-align:center" %)
761 -[[image:企业微信截图_17581134696804.png]]
762 -
763 -== **LAGCDL Large time-delay temperature control instruction** ==
764 -
765 -**LAGCDL**
766 -
767 -This instruction is used to perform large time-delay system temperature control that changes the output value according to changes in the input.
768 -
769 --[LAGCDL (s1) (s2)  (s3) (d)]
770 -
771 -**Content, range and data type**
772 -
773 -|**Parameter**|**Content**|**Range**|**Data type**|**Data type (label)**
774 -|(s1)|The device number that stores the target value (SV)|-32767 to 32767|Signed BIN 16 bit|ANY16
775 -|(s2)|The device number that stores the measured value (SV)|-32767 to 32767|Signed BIN 16 bit|ANY16
776 -|(s3)|The device number that stores parameters|1 to 32767|Signed BIN 16 bit|ANY16
777 -|(d)|The device number that stores the output value (SV)|-32767 to 32767|Signed BIN 16 bit|ANY16
778 -
779 -**Device used**
780 -
781 -|(% rowspan="2" %)**Instruction**|(% rowspan="2" %)**Parameter**|(% colspan="8" %)**Devices**|(((
782 -**Offset**
783 -
784 -**modification**
785 -)))|(((
786 -**Pulse**
787 -
788 -**extension**
789 -)))
790 -|**D**|**R**|**SD**|**LC**|**HSC**|**K**|**H**|**E**|**[D]**|**XXP**
791 -|(% rowspan="4" %)LAGCDL|Parameter 1|●|●|●| | | | | | |
792 -|Parameter 2|●|●|●| | | | | | |
793 -|Parameter 3|●|●|●| | | | | | |
794 -|Parameter 4|●|●|●| | | | | | |
795 -
796 -**Features**
797 -
798 -This instruction is to complete large time-delay system control operation, and used to control the parameters of the closed-loop control system.
799 -
800 -[[image:1758111592778-873.png]]is the target value of CCPID SHT control (SV).
801 -
802 -[[image:1758111614838-309.png]]is the measured feedback value (PV).
803 -
804 - ​​​​[[image:1758111642557-547.png]]is the start address of the cache where the parameters required by LAGCDL operation and intermediate results are saved,
805 -
806 -occupying a total of 634 variable units of subsequent addresses. The value range is from D0 to D7974 or from R0 to R35000. It is better to specify power failure retention, and the setting value remains after power supply is off. Otherwise, the cache needs to be assigned value before starting the calculation for the first time. The function and parameter description of each unit are described in this section.
807 -
808 -[[image:1758111693192-390.png]] is the storage unit of the LAGCDL calculation result. Please specify it as a non-battery retentive area, otherwise it needs to be initialized and cleared before the first start of calculation.
809 -
810 -**Programming example**
811 -
812 -[[image:1758111738993-165.png||height="64" width="430"]]
813 -
814 -The parameter description is as follows:
815 -
816 -The target value of LAGCDL adjustment is stored in D1, and D0 is the closed-loop feedback value. Note that D0 and D9 must be of the same dimension, such as both 0.01MPa units, or 1℃ units, etc..
817 -
818 -A total of 634 units of D1000 to D1633 are used to store the set value and process value of LAGCDL operation. These values must be set item by item before the first LAGCDL calculation.
819 -
820 -D100 unit is used to store the calculated control output value to control the execution of the action.
821 -
822 -[[image:1758111862269-781.png]] to [[image:1758111862269-781.png]]+15 is the parameter range that can be set (parameters set when LAGCDL is executed). [[image:1758111862269-781.png]]+28 to [[image:1758111862269-781.png]]+631 is the historical data space for LAGCDL control internal use. [[image:1758111862269-781.png]]+4 to [[image:1758111862269-781.png]]+27 is the parameter space used in the self-tuning process. (This space is multiplexed with the parameter space during control)
823 -
824 -The functions and setting methods of the parameter values of each unit started by [[image:1758111862269-781.png]] are described in the following table:
825 -
826 -
827 -
828 -|(% style="width:108px" %)**Unit**|(% style="width:230px" %)**Function**|**Description**
829 -|(% style="width:108px" %)[[image:1758111862269-781.png]]|(% style="width:230px" %)Sampling time (TS)|Range: 1 to 32767 (ms). It must be longer than PLC program scan cycle.
830 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+1|(% style="width:230px" %)Control flag bit|(((
831 -bit0: 0=Forward action; 1=Reverse action
832 -
833 -bit1: Overshoot power limit output enable bit. 0=no limit; 1=limited
834 -
835 -Bit2: Reset historical data. 0=reset; 1=no reset. This bit must be 0 before each execution.
836 -
837 -bit4: 0=Self-tuning does not act; 1=Perform self-tuning and the others are not available.
838 -
839 -Bit14:Historical data initialization flag bit. When initialization is complete, it is set to 1.
840 -
841 -Bit15: The instruction initializes the flag bit. When initialization is complete, it is set to 1.
842 -)))
843 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+2|(% style="width:230px" %)Output lower limit|Range: -32000 to 32000. Recommended setting range: -2000 or 0.
844 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+3|(% style="width:230px" %)Output upper limit|Range: 0 to 32000. Recommended setting value is 2000. When the upper and lower limits are both 0, the upper limit becomes 2000 and the lower limit becomes 0.
845 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+4|(% style="width:230px" %)Full power output boundary|The suggested value can be obtained by self-tuning, and can also be adjusted according to the actual situation.
846 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+5|(% style="width:230px" %)Half-power output boundary|The suggested value can be obtained by self-tuning, and can also be adjusted according to the actual situation.
847 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+6|(% style="width:230px" %)Stop output boundary|The suggested value can be obtained by self-tuning, and can also be adjusted according to the actual situation.
848 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+7|(% style="width:230px" %)The maximum rate of increase of the controlled system|Given by self-tuning
849 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+8|(% style="width:230px" %)The lagged time of the controlled system|Given by self-tuning. Unit: s
850 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+9|(% style="width:230px" %)The time constant of the controlled system|Given by self-tuning. Unit: s
851 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+10|(% style="width:230px" %)Ideal closed-loop time constant|Given by self-tuning. Unit: s
852 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+11|(% style="width:230px" %)Ideal closed-loop sampling time|Given by self-tuning. This parameter can be adjusted during the control process. Unit: s
853 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+12|(% style="width:230px" %)Maximum temperature difference during setting|Given by self-tuning. (for your reference)
854 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+13|(% style="width:230px" %)The temperature difference between the residual heat and temperature rise|Given by self-tuning. (for your reference)
855 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+14|(% style="width:230px" %)Heating time|Given by self-tuning. (for your reference)
856 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+15|(% style="width:230px" %)Setting time|Given by self-tuning. (for your reference)
857 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+16|(% rowspan="3" style="width:230px" %)Self-tuning use space|(% rowspan="3" %)Reserved for internal use
858 -|(% style="width:108px" %)┇
859 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+27
860 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+28|(% style="width:230px" %)Current temperature difference|Used during control
861 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+29|(% style="width:230px" %)Previous temperature difference|Used during control
862 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+30|(% style="width:230px" %)The 1st operation flag bit|Used during control
863 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+31|(% style="width:230px" %)Number of valid history outputs|Used during control
864 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+32|(% rowspan="3" style="width:230px" %)Historical output data|(% rowspan="3" %)Used during control
865 -|(% style="width:108px" %)┇
866 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+631
867 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+632|(% rowspan="2" style="width:230px" %)Previous sampling time stamp|(% rowspan="2" %)Reserved for internal use
868 -|(% style="width:108px" %)[[image:1758111862269-781.png]]+633
869 -
870 -**Error code**
871 -
872 -|**Error code**|**Content**
873 -|4085H|Read application instruction (S1), (S2), (S3) and (d) output results exceed the range of device.
874 -|4086H|The devices specified in write application instruction (S3) and (d) exceed the range of the corresponding device.
875 -|4D86H|Sampling time (Ts) < operation cycle
876 -|4DA1H|Power limit boundary (s3+4), (s3+5) and (s3+6) exceed the range.
877 -|4DA2H|System parameters (s3+7), (s3+8) and (s3+9) exceed the range.
878 -|4DA3H|Control parameters (s3+10) and (s3+11) exceed the range.
879 -|4DA4H|The output upper limit is smaller than the lower limit
880 -
881 -**Example**
882 -
883 -
884 -(% style="text-align:center" %)
885 -[[image:企业微信截图_17581120459254.png]]
886 -
887 887  == **TRH/Wet and dry bulb temperature and humidity conversion** ==
888 888  
889 889  TRH