Class DifferentialSample

java.lang.Object
choreo.trajectory.DifferentialSample
All Implemented Interfaces:
TrajectorySample<DifferentialSample>, Interpolatable<DifferentialSample>, StructSerializable, WPISerializable

A single differential drive robot sample in a Trajectory.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final double
    The acceleration of the left side in m/s².
    final double
    The acceleration of the right side in m/s².
    final double
    The force of the left side in Newtons.
    final double
    The force of the right side in Newtons.
    final double
    The heading of the sample in radians, with 0 being in the +X direction.
    final double
    The chassis angular velocity in rad/s.
    The struct for the DifferentialSample class.
    final double
    The timestamp of this sample relative to the beginning of the trajectory.
    final double
    The velocity of the left side in m/s.
    final double
    The velocity of the right side in m/s.
    final double
    The X position of the sample relative to the blue alliance wall origin in meters.
    final double
    The Y position of the sample relative to the blue alliance wall origin in meters.
  • Constructor Summary

    Constructors
    Constructor
    Description
    DifferentialSample(double timestamp, double x, double y, double heading, double vl, double vr, double omega, double al, double ar, double fl, double fr)
    Constructs a DifferentialSample with the specified parameters.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    Returns this sample, mirrored across the field midline.
    Returns the field-relative chassis speeds of this sample.
    Returns the pose at this sample.
    double
    Returns the timestamp of this sample.
    interpolate(DifferentialSample endValue, double timestamp)
     
    offsetBy(double timestampOffset)
    Returns this sample, offset by the given timestamp.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • t

      public final double t
      The timestamp of this sample relative to the beginning of the trajectory.
    • x

      public final double x
      The X position of the sample relative to the blue alliance wall origin in meters.
    • y

      public final double y
      The Y position of the sample relative to the blue alliance wall origin in meters.
    • heading

      public final double heading
      The heading of the sample in radians, with 0 being in the +X direction.
    • vl

      public final double vl
      The velocity of the left side in m/s.
    • vr

      public final double vr
      The velocity of the right side in m/s.
    • omega

      public final double omega
      The chassis angular velocity in rad/s.
    • al

      public final double al
      The acceleration of the left side in m/s².
    • ar

      public final double ar
      The acceleration of the right side in m/s².
    • fl

      public final double fl
      The force of the left side in Newtons.
    • fr

      public final double fr
      The force of the right side in Newtons.
    • struct

      public static final Struct<DifferentialSample> struct
      The struct for the DifferentialSample class.
  • Constructor Details

    • DifferentialSample

      public DifferentialSample(double timestamp, double x, double y, double heading, double vl, double vr, double omega, double al, double ar, double fl, double fr)
      Constructs a DifferentialSample with the specified parameters.
      Parameters:
      timestamp - The timestamp of this sample.
      x - The X position of the sample in meters.
      y - The Y position of the sample in meters.
      heading - The heading of the sample in radians, with 0 being in the +X direction.
      vl - The velocity of the left side in m/s.
      vr - The velocity of the right side in m/s.
      omega - The chassis angular velocity in rad/s.
      al - The acceleration of the left side in m/s².
      ar - The acceleration of the right side in m/s².
      fl - The force of the left side in Newtons.
      fr - The force of the right side in Newtons.
  • Method Details