-
-
Notifications
You must be signed in to change notification settings - Fork 46.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added the Active Disturbance Rejection Control (ADRC) Algorithm #12648
base: master
Are you sure you want to change the base?
Changes from 5 commits
1cad84d
9934f06
5ec73ec
ceac158
1c5dfe2
9f64fc5
7884c0e
c09256d
fca1fe9
7e2da79
68f54f6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,62 @@ | ||||||||||||||||||||
""" | ||||||||||||||||||||
Active Disturbance Rejection Control (ADRC) is a robust control strategy | ||||||||||||||||||||
that estimates and compensates for disturbances in real-time without needing | ||||||||||||||||||||
an explicit mathematical model of the system. | ||||||||||||||||||||
|
||||||||||||||||||||
It consists of: | ||||||||||||||||||||
1. Tracking Differentiator (TD) - Smooths the reference signal | ||||||||||||||||||||
2. Extended State Observer (ESO) - Estimates system states and disturbances | ||||||||||||||||||||
3. Nonlinear State Error Feedback (NLSEF) - Generates the control signal | ||||||||||||||||||||
|
||||||||||||||||||||
Refer - https://en.wikipedia.org/wiki/Active_disturbance_rejection_control | ||||||||||||||||||||
""" | ||||||||||||||||||||
|
||||||||||||||||||||
|
||||||||||||||||||||
class ADRC: | ||||||||||||||||||||
def __init__(self, error_correction: float, disturbance: float, acceleration: float, target: float = 0.0): | ||||||||||||||||||||
Check failure on line 16 in control_algorithms/adrc.py
|
||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide return type hint for the function: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please provide return type hint for the function: |
||||||||||||||||||||
""" | ||||||||||||||||||||
Initialize the ADRC controller. | ||||||||||||||||||||
|
||||||||||||||||||||
:param beta1: Gain for error correction in ESO | ||||||||||||||||||||
:param beta2: Gain for disturbance estimation in ESO | ||||||||||||||||||||
:param beta3: Gain for acceleration estimation in ESO | ||||||||||||||||||||
:param setpoint: Desired target value | ||||||||||||||||||||
""" | ||||||||||||||||||||
self.beta1 = beta1 | ||||||||||||||||||||
self.beta2 = beta2 | ||||||||||||||||||||
self.beta3 = beta3 | ||||||||||||||||||||
self.setpoint = setpoint | ||||||||||||||||||||
|
||||||||||||||||||||
self.system_output = 0.0 # Estimated system output | ||||||||||||||||||||
self.system_velocity = 0.0 # Estimated system velocity | ||||||||||||||||||||
self.total_disturbance = 0.0 # Estimated total disturbance | ||||||||||||||||||||
|
||||||||||||||||||||
def compute(self, measured_value: float, dt: float) -> float: | ||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
or There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file |
||||||||||||||||||||
""" | ||||||||||||||||||||
Compute the control signal based on error estimation and disturbance rejection. | ||||||||||||||||||||
|
||||||||||||||||||||
:param measured_value: The current process variable | ||||||||||||||||||||
:param dt: Time difference since the last update | ||||||||||||||||||||
:return: Control output | ||||||||||||||||||||
""" | ||||||||||||||||||||
|
||||||||||||||||||||
# Extended State Observer (ESO) Update | ||||||||||||||||||||
self.z1 += dt * (self.z2 - self.beta1 * (self.z1 - measured_value)) | ||||||||||||||||||||
self.z2 += dt * (self.z3 - self.beta2 * (self.z1 - measured_value)) | ||||||||||||||||||||
self.z3 -= self.beta3 * (self.z1 - measured_value) | ||||||||||||||||||||
|
||||||||||||||||||||
# Control Law (Nonlinear State Error Feedback - NLSEF) | ||||||||||||||||||||
control_output = self.z2 - self.z3 | ||||||||||||||||||||
return control_output | ||||||||||||||||||||
div-dev123 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||
|
||||||||||||||||||||
def reset(self): | ||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide return type hint for the function: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide return type hint for the function: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As there is no test file in this pull request nor any test function or class in the file Please provide return type hint for the function: |
||||||||||||||||||||
"""Reset the estimated states.""" | ||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As discussed in CONTRIBUTING.md, all methods need one or more doctests.
Suggested change
|
||||||||||||||||||||
self.z1 = 0.0 | ||||||||||||||||||||
self.z2 = 0.0 | ||||||||||||||||||||
self.z3 = 0.0 | ||||||||||||||||||||
|
||||||||||||||||||||
|
||||||||||||||||||||
if __name__ == "__main__": | ||||||||||||||||||||
import doctest | ||||||||||||||||||||
|
||||||||||||||||||||
doctest.testmod() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Optional: This might be simpler as a dataclass. https://docs.python.org/3/library/dataclasses.html