PIDs
Last updated
Last updated
PIDController
ObjectsPIDs are ways to make a robot change its speed based on how far it is from its destination. PID controllers are created as PIDController objects.
Parameters:
3 Integers(ints)-> It's kP, kI, and kD.
kP, kI, and kD are 3 variables that can alter the way a PID acts. The graph below is the ideal way a PID should move the robot, but in reality, the line would oscillate around the destination or never reach the destination.
Now let's talk bout what each of the parameters does in the object:
Kp: The "P" stands for proportional and is the main parameter that creates the main and determines the speed/slope of the robot. The problem with this component is that it causes a lot of oscillation due to the momentum from moving a physical robot causing it not to stop short of the diestination.
Ki: The "I" stands for integral and helps add extra acceleration when the Kp isn't nearing the destination, but not reaching it. However, I would suggest leaving this value at 0 since it causes a lot of inaccuracies and if you get your Kp and Ki right, you won't need the Ki anyway.
Kd: Helps counter the momentum caused by the Kp parameter applying negative acceleration as the robot gets closer to the destination.
Here is a video that summarizes how the parameters affect the graph and why
PIDController
ObjectsTo use a PID, you have to use the pid.calculate()
method. This method has 2 parameters, the current point, and the desired point. You can get the current point from Encoder
objects. This method returns a double
that will be used as a speed value that can be set to Spark
motors. This is an example with our PIDController
object being named pid
and our Encoder
object being named encoder
:
PIDController
ObjectPIDs have different parameter values for everything, because of this, there is a process called tuning a PID. To do this you have to continuously test the motor with different parameters until one of the parameter sets creates accurate results. For our purposes, we will change the go distance function to learn tuning
Conditions:
Use the System.out.println() method to print out the distance into the console for easier tracking
Remove speed paramter
Here is the answer code (don't worry about the PIDController
object parameters for now).
Now, if you haven't already, fill in the parameters of Ki only in the PIDController
and call that method into the autonomous period autonomousPeriodic()
method in the Robot
class and run the program with the distance being 12 (inches). You should notice the robot, not going even close to the right distance. Now tune the kP value until it is about 0.001 inches away from 12 (inches) and not occilating. Here are some tips for tuning the PID's kP component.
If the distance is undershot, increase the kP
If the distance is overshot, decrease the kP
The kP values should be small (probably less than 1)
Use the distances printed out to the console
After you get a good distance. I would suggest trying to make the accuracy even better using the kD component.