Class ProfiledPIDController

java.lang.Object
edu.wpi.first.math.controller.ProfiledPIDController
All Implemented Interfaces:
Sendable

public class ProfiledPIDController
extends Object
implements Sendable
Implements a PID control loop whose setpoint is constrained by a trapezoid profile. Users should call reset() when they first start running the controller to avoid unwanted behavior.
  • Constructor Details

  • Method Details

    • setPID

      public void setPID​(double Kp, double Ki, double Kd)
      Sets the PID Controller gain parameters.

      Sets the proportional, integral, and differential coefficients.

      Parameters:
      Kp - The proportional coefficient. Must be >= 0.
      Ki - The integral coefficient. Must be >= 0.
      Kd - The differential coefficient. Must be >= 0.
    • setP

      public void setP​(double Kp)
      Sets the proportional coefficient of the PID controller gain.
      Parameters:
      Kp - The proportional coefficient. Must be >= 0.
    • setI

      public void setI​(double Ki)
      Sets the integral coefficient of the PID controller gain.
      Parameters:
      Ki - The integral coefficient. Must be >= 0.
    • setD

      public void setD​(double Kd)
      Sets the differential coefficient of the PID controller gain.
      Parameters:
      Kd - The differential coefficient. Must be >= 0.
    • setIZone

      public void setIZone​(double iZone)
      Sets the IZone range. When the absolute value of the position error is greater than IZone, the total accumulated error will reset to zero, disabling integral gain until the absolute value of the position error is less than IZone. This is used to prevent integral windup. Must be non-negative. Passing a value of zero will effectively disable integral gain. Passing a value of Double.POSITIVE_INFINITY disables IZone functionality.
      Parameters:
      iZone - Maximum magnitude of error to allow integral control.
      Throws:
      IllegalArgumentException - if iZone <= 0
    • getP

      public double getP()
      Gets the proportional coefficient.
      Returns:
      proportional coefficient
    • getI

      public double getI()
      Gets the integral coefficient.
      Returns:
      integral coefficient
    • getD

      public double getD()
      Gets the differential coefficient.
      Returns:
      differential coefficient
    • getIZone

      public double getIZone()
      Get the IZone range.
      Returns:
      Maximum magnitude of error to allow integral control.
    • getPeriod

      public double getPeriod()
      Gets the period of this controller.
      Returns:
      The period of the controller.
    • getPositionTolerance

      public double getPositionTolerance()
      Returns the position tolerance of this controller.
      Returns:
      the position tolerance of the controller.
    • getVelocityTolerance

      public double getVelocityTolerance()
      Returns the velocity tolerance of this controller.
      Returns:
      the velocity tolerance of the controller.
    • setGoal

      public void setGoal​(TrapezoidProfile.State goal)
      Sets the goal for the ProfiledPIDController.
      Parameters:
      goal - The desired goal state.
    • setGoal

      public void setGoal​(double goal)
      Sets the goal for the ProfiledPIDController.
      Parameters:
      goal - The desired goal position.
    • getGoal

      Gets the goal for the ProfiledPIDController.
      Returns:
      The goal.
    • atGoal

      public boolean atGoal()
      Returns true if the error is within the tolerance of the error.

      This will return false until at least one input value has been computed.

      Returns:
      True if the error is within the tolerance of the error.
    • setConstraints

      public void setConstraints​(TrapezoidProfile.Constraints constraints)
      Set velocity and acceleration constraints for goal.
      Parameters:
      constraints - Velocity and acceleration constraints for goal.
    • getConstraints

      Get the velocity and acceleration constraints for this controller.
      Returns:
      Velocity and acceleration constraints.
    • getSetpoint

      Returns the current setpoint of the ProfiledPIDController.
      Returns:
      The current setpoint.
    • atSetpoint

      public boolean atSetpoint()
      Returns true if the error is within the tolerance of the error.

      This will return false until at least one input value has been computed.

      Returns:
      True if the error is within the tolerance of the error.
    • enableContinuousInput

      public void enableContinuousInput​(double minimumInput, double maximumInput)
      Enables continuous input.

      Rather then using the max and min input range as constraints, it considers them to be the same point and automatically calculates the shortest route to the setpoint.

      Parameters:
      minimumInput - The minimum value expected from the input.
      maximumInput - The maximum value expected from the input.
    • disableContinuousInput

      public void disableContinuousInput()
      Disables continuous input.
    • setIntegratorRange

      public void setIntegratorRange​(double minimumIntegral, double maximumIntegral)
      Sets the minimum and maximum values for the integrator.

      When the cap is reached, the integrator value is added to the controller output rather than the integrator value times the integral gain.

      Parameters:
      minimumIntegral - The minimum value of the integrator.
      maximumIntegral - The maximum value of the integrator.
    • setTolerance

      public void setTolerance​(double positionTolerance)
      Sets the error which is considered tolerable for use with atSetpoint().
      Parameters:
      positionTolerance - Position error which is tolerable.
    • setTolerance

      public void setTolerance​(double positionTolerance, double velocityTolerance)
      Sets the error which is considered tolerable for use with atSetpoint().
      Parameters:
      positionTolerance - Position error which is tolerable.
      velocityTolerance - Velocity error which is tolerable.
    • getPositionError

      public double getPositionError()
      Returns the difference between the setpoint and the measurement.
      Returns:
      The error.
    • getVelocityError

      public double getVelocityError()
      Returns the change in error per second.
      Returns:
      The change in error per second.
    • calculate

      public double calculate​(double measurement)
      Returns the next output of the PID controller.
      Parameters:
      measurement - The current measurement of the process variable.
      Returns:
      The controller's next output.
    • calculate

      public double calculate​(double measurement, TrapezoidProfile.State goal)
      Returns the next output of the PID controller.
      Parameters:
      measurement - The current measurement of the process variable.
      goal - The new goal of the controller.
      Returns:
      The controller's next output.
    • calculate

      public double calculate​(double measurement, double goal)
      Returns the next output of the PIDController.
      Parameters:
      measurement - The current measurement of the process variable.
      goal - The new goal of the controller.
      Returns:
      The controller's next output.
    • calculate

      public double calculate​(double measurement, TrapezoidProfile.State goal, TrapezoidProfile.Constraints constraints)
      Returns the next output of the PID controller.
      Parameters:
      measurement - The current measurement of the process variable.
      goal - The new goal of the controller.
      constraints - Velocity and acceleration constraints for goal.
      Returns:
      The controller's next output.
    • reset

      public void reset​(TrapezoidProfile.State measurement)
      Reset the previous error and the integral term.
      Parameters:
      measurement - The current measured State of the system.
    • reset

      public void reset​(double measuredPosition, double measuredVelocity)
      Reset the previous error and the integral term.
      Parameters:
      measuredPosition - The current measured position of the system.
      measuredVelocity - The current measured velocity of the system.
    • reset

      public void reset​(double measuredPosition)
      Reset the previous error and the integral term.
      Parameters:
      measuredPosition - The current measured position of the system. The velocity is assumed to be zero.
    • initSendable

      public void initSendable​(SendableBuilder builder)
      Description copied from interface: Sendable
      Initializes this Sendable object.
      Specified by:
      initSendable in interface Sendable
      Parameters:
      builder - sendable builder