Changes between Version 1 and Version 2 of ControlSystems/SoftwareTeam/Training/GettingStarted/PIDControl
- Timestamp:
- Nov 3, 2019, 9:29:46 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ControlSystems/SoftwareTeam/Training/GettingStarted/PIDControl
v1 v2 2 2 3 3 While proportional control works in many cases, it can take time to achieve the proper power balances, can be slow to react to changes, and in some cases can even oscillate or never reach the proper power levels. PID control is a more sophisticated solution that takes more factors into consideration: 4 * P = Proportion - how much the current error is5 * I = Integral - how much error has accumulatedover time6 * D = Derivative - how fast the error is increasing/decreasing4 * P = Proportion - current error 5 * I = Integral - accumulated error over time 6 * D = Derivative - rate error is increasing/decreasing 7 7 8 8 Code examples are coming soon