-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Motor Configuration in Kinematics to encode torque, not posit…
…ion relative to CoM
- Loading branch information
1 parent
903bd0e
commit 61c1f87
Showing
1 changed file
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61c1f87
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prior to commit, the torque encoded in the
motor_config
matrix was just the position of the motor relative to the center of mass, in meters. You can see this reflected unknowingly in the comments as#Rx/y/z (mm)
. To remedy this, the cross product of the position (r
) and the thrust/force the motors produce (F
) is taken (r x F
).Comments were also updated to reflect proper units.