Skip to content

Added the Active Disturbance Rejection Control (ADRC) Algorithm #12648

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

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Fixed Doctests
  • Loading branch information
Divyansh Agrawal committed Apr 2, 2025
commit 7e2da79488e71a9df8da293c62a53c4c24b65c99
2 changes: 1 addition & 1 deletion control_algorithms/adrc.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def calculate_control_output(self, measured_value: float, dt: float) -> float:
... adrc.total_disturbance,
... ) = (1.0, 2.0, 3.0)
>>> adrc.calculate_control_output(0.5, 0.1) # Simple test with dt=0.1
0.05
0.0.04999999999999982
"""
# Extended State Observer (ESO) Update
error = self.system_output - measured_value
Expand Down
Loading