mirror of
https://github.com/WallabyLester/RBF-aPID-Controller.git
synced 2026-05-10 21:19:39 +08:00
30dec2e7ffdd3c9a8fe97506535ff3ccf8b65257
RBF-aPID-Controller
RBF Neural Net Adaptive PID Controller
Implementations of a radial basis function (RBF) neural network adaptive PID controller. Uses neural net and error information from PID control to adapt the control signal. Provides one adaptation value, using error, integral, and derivative.
To adapt the PID gains themselves, network outputs must be made to 3 neurons. Example usage with simulated data can be found in first_order_sim.py
The method has been implemented in three ways:
- TF_Implementation: Using TensorFlow to build and train the RBF Model.
- NP_Implementation: Using Numpy to build and train the RBF Model.
- C++
CPP_Implementation: Written in C++ (requiringcmath), for use on embedded systems.
Description
Languages
Python
58.8%
C++
39.5%
CMake
1.7%


