-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix characterization * Ad newline in SysIdDynamic function definition Co-authored-by: Evan Rust <[email protected]> * Remove semicolon in function definition Co-authored-by: Evan Rust <[email protected]> * Add newlines to characterization constants Co-authored-by: Evan Rust <[email protected]> * Remove unnecessary comments --------- Co-authored-by: 5690 <[email protected]> Co-authored-by: Evan Rust <[email protected]>
- Loading branch information
1 parent
16c9abd
commit ca73733
Showing
8 changed files
with
144 additions
and
4 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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#pragma once | ||
|
||
namespace CharacterizationConstants { | ||
namespace FrontLeftDrive { | ||
constexpr double kS = 0.43779; | ||
constexpr double kV = 2.4439; | ||
constexpr double kA = 0.36441; | ||
} // namespace FrontLeftDrive | ||
|
||
namespace FrontRightDrive { | ||
constexpr double kS = 0.47478; | ||
constexpr double kV = 2.4511; | ||
constexpr double kA = 0.36441; | ||
} // namespace FrontRightDrive | ||
|
||
namespace RearLeftDrive { | ||
constexpr double kS = 0.43972; | ||
constexpr double kV = 2.4352; | ||
constexpr double kA = 0.35057; | ||
} // namespace RearLeftDrive | ||
|
||
namespace RearRightDrive { | ||
constexpr double kS = 0.41185; | ||
constexpr double kV = 2.4218; | ||
constexpr double kA = 0.41332; | ||
} // namespace RearRightDrive | ||
} // namespace CharacterizationConstants |
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
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
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