Skip to content

Commit

Permalink
Add more unit comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrott committed Sep 10, 2023
1 parent 5cd5bdd commit b12b121
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@ public static class Params {
public double lateralInPerTick = 1;
public double trackWidthTicks = 0;

// feedforward parameters in tick units
// feedforward parameters (in tick units)
public double kS = 0;
public double kV = 0;
public double kA = 0;

// path profile parameters
// path profile parameters (in inches)
public double maxWheelVel = 50;
public double minProfileAccel = -30;
public double maxProfileAccel = 50;

// turn profile parameters
// turn profile parameters (in radians)
public double maxAngVel = Math.PI; // shared with path
public double maxAngAccel = Math.PI;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,17 @@ public static class Params {
public double inPerTick = 0;
public double trackWidthTicks = 0;

// feedforward parameters in tick units
// feedforward parameters (in tick units)
public double kS = 0;
public double kV = 0;
public double kA = 0;

// path profile parameters
// path profile parameters (in inches)
public double maxWheelVel = 50;
public double minProfileAccel = -30;
public double maxProfileAccel = 50;

// turn profile parameters
// turn profile parameters (in radians)
public double maxAngVel = Math.PI; // shared with path
public double maxAngAccel = Math.PI;

Expand Down

0 comments on commit b12b121

Please sign in to comment.