Package-level declarations

An assortment of path and trajectory followers for various drivetrains

Types

Link copied to clipboard
public final class GVFFollower extends PathFollower

State-of-the-art path follower based on the GuidingVectorField. Any heading interpolation on any path is ignored.

Link copied to clipboard
public final class HolonomicGVFFollower extends PathFollower

State-of-the-art path follower for holonomic drives based on the GuidingVectorField.

Link copied to clipboard
public final class HolonomicPIDVAFollower extends TrajectoryFollower

Traditional PID controller with feedforward velocity and acceleration components to follow a trajectory. More specifically, the feedback is applied to the components of the robot's pose (x position, y position, and heading) to determine the velocity correction. The feedforward components are instead applied at the wheel level.

Link copied to clipboard
public abstract class PathFollower

Generic Path follower for time-independent pose reference tracking.

Link copied to clipboard
public final class RamseteFollower extends TrajectoryFollower

Time-varying, non-linear feedback controller for nonholonomic drives. See equation 5.12 of Ramsete01.pdf.

Link copied to clipboard
public final class TankPIDVAFollower extends TrajectoryFollower

Traditional PID controller with feedforward velocity and acceleration components to follow a trajectory. More specifically, one feedback loop controls the path displacement (that is, x in the robot reference frame), and another feedback loop to minimize cross track (lateral) error via heading correction (overall, very similar to HolonomicPIDVAFollower except adjusted for the nonholonomic constraint). Feedforward is applied at the wheel level.

Link copied to clipboard
public abstract class TrajectoryFollower

Generic Trajectory follower for time-based pose reference tracking.