Skip to content

Commit

Permalink
Fix units
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterJohnson authored Feb 14, 2025
1 parent 7ec05ce commit 5032bf5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void setKg(double kg) {
/**
* Sets the velocity gain.
*
* @param kv The velocity gain in V/(rad/s).
* @param kv The velocity gain in V/(m/s).
*/
public void setKv(double kv) {
this.kv = kv;
Expand All @@ -116,7 +116,7 @@ public void setKv(double kv) {
/**
* Sets the acceleration gain.
*
* @param ka The acceleration gain in V/(rad/s²).
* @param ka The acceleration gain in V/(m/s²).
*/
public void setKa(double ka) {
this.ka = ka;
Expand Down

0 comments on commit 5032bf5

Please sign in to comment.