Skip to content

Commit af572aa

Browse files
authored
Improve antiwindup description (#1502)
1 parent 3d14b42 commit af572aa

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pid_controller/src/pid_controller.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,20 @@ pid_controller:
6363
antiwindup: {
6464
type: bool,
6565
default_value: false,
66-
description: "Antiwindup functionality."
66+
description: "Antiwindup functionality. When set to true, limits
67+
the integral error to prevent windup; otherwise, constrains the
68+
integral contribution to the control output. i_clamp_max and
69+
i_clamp_min are applied in both scenarios."
6770
}
6871
i_clamp_max: {
6972
type: double,
7073
default_value: 0.0,
71-
description: "Upper integral clamp. Only used if antiwindup is activated."
74+
description: "Upper integral clamp."
7275
}
7376
i_clamp_min: {
7477
type: double,
7578
default_value: 0.0,
76-
description: "Lower integral clamp. Only used if antiwindup is activated."
79+
description: "Lower integral clamp."
7780
}
7881
feedforward_gain: {
7982
type: double,

0 commit comments

Comments
 (0)