We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cdad3a commit 9f15e1aCopy full SHA for 9f15e1a
control_msgs/msg/PidState.msg
@@ -1,13 +1,28 @@
1
std_msgs/Header header
2
builtin_interfaces/Duration timestep
3
+
4
+# error = target - state
5
float64 error
6
+# derivative of error
7
float64 error_dot
8
9
+# equals error
10
float64 p_error
11
+# weighted integral of error
12
float64 i_error
13
+# equals derivative of error
14
float64 d_error
15
16
+# proportional gain
17
float64 p_term
18
+# integral gain
19
float64 i_term
20
+# derivative gain
21
float64 d_term
22
+# upper integral clamp.
23
float64 i_max
24
+# lower integral clamp.
25
float64 i_min
26
27
+# output of the PID controller
28
float64 output
0 commit comments