-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from matt-attack/add-vehicle-parameters
Add vehicle parameters message
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Set of parameters that describe the motion parameters of a vehicle | ||
|
||
# Vehicle's maximum curvature in 1/meters. Should be positive. | ||
float32 max_curvature | ||
|
||
# Vehicle's minimum curvature in 1/meters. Should be negative | ||
float32 min_curvature | ||
|
||
# Vehicle's maximum allowed lateral acceleration in m/s^2 | ||
float32 max_lateral_acceleration | ||
|
||
# Vehicle's target lateral acceleration in m/s^2. May be exceeded by vehicle | ||
float32 target_lateral_acceleration | ||
|
||
# Vehicle's maximum allowed linear acceleration in m/s^2 | ||
float32 max_acceleration | ||
|
||
# Vehicle's target linear acceleration in m/s^2 | ||
float32 target_acceleration | ||
|
||
# Vehicle's maximum linear deceleration in m/s^s. May be exceeded by vehicle | ||
float32 max_deceleration | ||
|
||
# Vehicle's target linear deceleration in m/s^2 | ||
float32 target_deceleration | ||
|
||
# Vehicle's linear acceleration in m/s^2 when stopping at the end of a path segment | ||
float32 stop_deceleration |