HolonomicGVFFollower
class HolonomicGVFFollower @JvmOverloads constructor(var maxVel: Double, var maxAccel: Double, var maxDecel: Double, var maxAngVel: Angle, var maxAngAccel: Angle, admissibleError: Pose2d, var kN: Double, var kOmega: Double, var kX: Double, var kY: Double, val pidCoeffs: PIDCoefficients, var correctionDistance: Double = 5.0, var useCurvatureControl: Boolean = false, errorMapFunc: (Double) -> Double = { it }, clock: NanoClock = NanoClock.system) : PathFollower
State-of-the-art path follower for holonomic drives based on the GuidingVectorField.
Parameters
maxVel
maximum velocity
maxAccel
maximum acceleration
maxDecel
maximum deceleration
admissibleError
admissible/satisfactory pose error at the end of each move
kN
normal vector weight (see GuidingVectorField)
kOmega
proportional direction velocity gain
pidCoeffs
heading PID coefficients
errorMapFunc
error map function (see GuidingVectorField)
clock
clock
Constructors
Link copied to clipboard
constructor(maxVel: Double, maxAccel: Double, maxDecel: Double, maxAngVel: Angle, maxAngAccel: Angle, admissibleError: Pose2d, kN: Double, kOmega: Double, kX: Double, kY: Double, pidCoeffs: PIDCoefficients, correctionDistance: Double = 5.0, useCurvatureControl: Boolean = false, errorMapFunc: (Double) -> Double = { it }, clock: NanoClock = NanoClock.system)
Properties
Functions
Link copied to clipboard
Link copied to clipboard
Follow the given path.
Link copied to clipboard
protected open override fun internalUpdate(currentPose: Pose2d, currentRobotVel: Pose2d?): DriveSignal