ros2_control - rolling
|
A basic pid class. More...
#include <pid.hpp>
Classes | |
struct | Gains |
Store gains in a struct to allow easier realtime buffer usage. More... | |
Public Member Functions | |
Pid (double p=0.0, double i=0.0, double d=0.0, double i_max=0.0, double i_min=-0.0, bool antiwindup=false) | |
Constructor, zeros out Pid values when created and initialize Pid-gains and integral term limits. Does not initialize dynamic reconfigure for PID gains. More... | |
Pid (const Pid &source) | |
Copy constructor required for preventing mutexes from being copied. More... | |
~Pid () | |
Destructor of Pid class. | |
void | initPid (double p, double i, double d, double i_max, double i_min, bool antiwindup=false) |
Zeros out Pid values and initialize Pid-gains and integral term limits Does not initialize the node's parameter interface for PID gains. More... | |
void | reset () |
Reset the state of this PID controller. | |
void | getGains (double &p, double &i, double &d, double &i_max, double &i_min) |
Get PID gains for the controller. More... | |
void | getGains (double &p, double &i, double &d, double &i_max, double &i_min, bool &antiwindup) |
Get PID gains for the controller. More... | |
Gains | getGains () |
Get PID gains for the controller. More... | |
void | setGains (double p, double i, double d, double i_max, double i_min, bool antiwindup=false) |
Set PID gains for the controller. More... | |
void | setGains (const Gains &gains) |
Set PID gains for the controller. More... | |
double | computeCommand (double error, uint64_t dt) |
Set the PID error and compute the PID command with nonuniform time step size. The derivative error is computed from the change in the error and the timestep dt . More... | |
double | computeCommand (double error, double error_dot, uint64_t dt) |
Set the PID error and compute the PID command with nonuniform time step size. This also allows the user to pass in a precomputed derivative error. More... | |
void | setCurrentCmd (double cmd) |
Set current command for this PID controller. | |
double | getCurrentCmd () |
Return current command for this PID controller. | |
double | getDerivativeError () |
Return derivative error. | |
void | getCurrentPIDErrors (double &pe, double &ie, double &de) |
Return PID error terms for the controller. More... | |
Pid & | operator= (const Pid &source) |
Custom assignment operator Does not initialize dynamic reconfigure for PID gains. | |
Protected Attributes | |
realtime_tools::RealtimeBuffer< Gains > | gains_buffer_ |
double | p_error_last_ |
double | p_error_ |
double | i_error_ |
double | d_error_ |
double | cmd_ |
double | error_dot_ |
A basic pid class.
This class implements a generic structure that can be used to create a wide range of pid controllers. It can function independently or be subclassed to provide more specific controls based on a particular control loop.
In particular, this class implements the standard pid equation:
\(command = p_{term} + i_{term} + d_{term} \)
where:
given:
p | Proportional gain |
d | Derivative gain |
i | Integral gain |
i_clamp | Min/max bounds for the integral windup, the clamp is applied to the \(i_{term}\) |
To use the Pid class, you should first call some version of init() (in non-realtime) and then call updatePid() at every update step. For example:
control_toolbox::Pid pid; pid.initPid(6.0, 1.0, 2.0, 0.3, -0.3); double position_desi_ = 0.5; ... rclcpp::Time last_time = get_clock()->now(); while (true) { rclcpp::Time time = get_clock()->now(); double effort = pid.computeCommand(position_desi_ - currentPosition(), (time - last_time).nanoseconds()); last_time = time; }
control_toolbox::Pid::Pid | ( | double | p = 0.0 , |
double | i = 0.0 , |
||
double | d = 0.0 , |
||
double | i_max = 0.0 , |
||
double | i_min = -0.0 , |
||
bool | antiwindup = false |
||
) |
Constructor, zeros out Pid values when created and initialize Pid-gains and integral term limits. Does not initialize dynamic reconfigure for PID gains.
p | The proportional gain. |
i | The integral gain. |
d | The derivative gain. |
i_max | The max integral windup. |
i_min | The min integral windup. |
antiwindup | If true, antiwindup is enabled and i_max/i_min are enforced |
An | std::invalid_argument exception is thrown if i_min > i_max |
control_toolbox::Pid::Pid | ( | const Pid & | source | ) |
Copy constructor required for preventing mutexes from being copied.
source | - Pid to copy |
double control_toolbox::Pid::computeCommand | ( | double | error, |
double | error_dot, | ||
uint64_t | dt | ||
) |
Set the PID error and compute the PID command with nonuniform time step size. This also allows the user to pass in a precomputed derivative error.
error | Error since last call (error = target - state) |
error_dot | d(Error)/dt since last call |
dt | Change in time since last call in nanoseconds |
double control_toolbox::Pid::computeCommand | ( | double | error, |
uint64_t | dt | ||
) |
Set the PID error and compute the PID command with nonuniform time step size. The derivative error is computed from the change in the error and the timestep dt
.
error | Error since last call (error = target - state) |
dt | Change in time since last call in nanoseconds |
void control_toolbox::Pid::getCurrentPIDErrors | ( | double & | pe, |
double & | ie, | ||
double & | de | ||
) |
Return PID error terms for the controller.
pe | The proportional error. |
ie | The integral error. |
de | The derivative error. |
Pid::Gains control_toolbox::Pid::getGains | ( | ) |
Get PID gains for the controller.
void control_toolbox::Pid::getGains | ( | double & | p, |
double & | i, | ||
double & | d, | ||
double & | i_max, | ||
double & | i_min | ||
) |
Get PID gains for the controller.
p | The proportional gain. |
i | The integral gain. |
d | The derivative gain. |
i_max | The max integral windup. |
i_min | The min integral windup. |
void control_toolbox::Pid::getGains | ( | double & | p, |
double & | i, | ||
double & | d, | ||
double & | i_max, | ||
double & | i_min, | ||
bool & | antiwindup | ||
) |
Get PID gains for the controller.
p | The proportional gain. |
i | The integral gain. |
d | The derivative gain. |
i_max | The max integral windup. |
i_min | The min integral windup. |
antiwindup | If true, antiwindup is enabled and i_max/i_min are enforced |
void control_toolbox::Pid::initPid | ( | double | p, |
double | i, | ||
double | d, | ||
double | i_max, | ||
double | i_min, | ||
bool | antiwindup = false |
||
) |
Zeros out Pid values and initialize Pid-gains and integral term limits Does not initialize the node's parameter interface for PID gains.
p | The proportional gain. |
i | The integral gain. |
d | The derivative gain. |
i_max | The max integral windup. |
i_min | The min integral windup. |
antiwindup | If true, antiwindup is enabled and i_max/i_min are enforced |
void control_toolbox::Pid::setGains | ( | const Gains & | gains | ) |
Set PID gains for the controller.
gains | A struct of the PID gain values |
void control_toolbox::Pid::setGains | ( | double | p, |
double | i, | ||
double | d, | ||
double | i_max, | ||
double | i_min, | ||
bool | antiwindup = false |
||
) |
Set PID gains for the controller.
p | The proportional gain. |
i | The integral gain. |
d | The derivative gain. |
i_max | The max integral windup. |
i_min | The min integral windup. |
antiwindup | If true, antiwindup is enabled and i_max/i_min are enforced |
|
protected |
Command to send.
|
protected |
Derivative of position error.
|
protected |
Derivative error
|
protected |
Integral of position error.
|
protected |
Position error.
|
protected |
_Save position state for derivative state calculation.