-
-
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
Open
div-dev123
wants to merge
11
commits into
TheAlgorithms:master
Choose a base branch
from
div-dev123:enhancement/adrc_algo
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
1cad84d
Added the Active Disturbance Rejection Control (ADRC) Algorithm
9934f06
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 5ec73ec
Added the Active Disturbance Rejection Control (ADRC) Algorithm
ceac158
Update control_algorithms/adrc.py
div-dev123 1c5dfe2
Update control_algorithms/adrc.py
div-dev123 9f64fc5
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 7884c0e
Update control_algorithms/adrc.py
div-dev123 c09256d
Refactor ADRC class with readable names, type hints, and doctests
fca1fe9
Fixed Doctests
7e2da79
Fixed Doctests
68f54f6
Fixed Doctests
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
""" | ||
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__( | ||
cclauss marked this conversation as resolved.
Show resolved
Hide resolved
|
||
self, | ||
error_correction: float, | ||
disturbance: float, | ||
acceleration: float, | ||
target: float = 0.0, | ||
) -> None: | ||
""" | ||
Initialize the ADRC controller. | ||
|
||
:param error_correction: Gain for error correction in ESO | ||
:param disturbance: Gain for disturbance estimation in ESO | ||
:param acceleration: Gain for acceleration estimation in ESO | ||
:param target: Desired target value (default: 0.0) | ||
>>> adrc = ADRC(1.0, 2.0, 3.0, 5.0) | ||
>>> adrc.error_correction, adrc.disturbance, adrc.acceleration, adrc.target | ||
(1.0, 2.0, 3.0, 5.0) | ||
>>> adrc.system_output, adrc.system_velocity, adrc.total_disturbance | ||
(0.0, 0.0, 0.0) | ||
""" | ||
self.error_correction = error_correction | ||
self.disturbance = disturbance | ||
self.acceleration = acceleration | ||
self.target = target | ||
|
||
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 calculate_control_output(self, measured_value: float, dt: float) -> float: | ||
""" | ||
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 | ||
>>> adrc = ADRC(10.0, 5.0, 2.0) | ||
>>> ( | ||
... adrc.system_output, | ||
... adrc.system_velocity, | ||
... adrc.total_disturbance, | ||
... ) = (1.0, 2.0, 3.0) | ||
>>> adrc.calculate_control_output(0.5, 0.1) # Simple test with dt=0.1 | ||
0.04999999999999982 | ||
""" | ||
# Extended State Observer (ESO) Update | ||
error = self.system_output - measured_value | ||
self.system_output += dt * ( | ||
self.system_velocity - self.error_correction * error | ||
) | ||
self.system_velocity += dt * (self.total_disturbance - self.disturbance * error) | ||
self.total_disturbance -= self.acceleration * error | ||
|
||
# Control Law (Nonlinear State Error Feedback - NLSEF) | ||
control_output = self.system_velocity - self.total_disturbance | ||
return control_output | ||
|
||
def reset(self) -> None: | ||
""" | ||
Reset the estimated states to zero. | ||
|
||
>>> adrc = ADRC(1.0, 2.0, 3.0) | ||
>>> ( | ||
... adrc.system_output, | ||
... adrc.system_velocity, | ||
... adrc.total_disturbance, | ||
... ) = (1.1, 2.2, 3.3) | ||
>>> adrc.reset() | ||
>>> adrc.system_output, adrc.system_velocity, adrc.total_disturbance | ||
(0.0, 0.0, 0.0) | ||
""" | ||
self.system_output = 0.0 | ||
self.system_velocity = 0.0 | ||
self.total_disturbance = 0.0 | ||
|
||
|
||
if __name__ == "__main__": | ||
import doctest | ||
|
||
doctest.testmod() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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