Skip to content

Commit

Permalink
fix(intersection_module): remove decel parameter (#1188)
Browse files Browse the repository at this point in the history
* fix(intersection_module): remove decel parameter

Signed-off-by: 1222-takeshi <[email protected]>

* remove unuse parameter

Signed-off-by: 1222-takeshi <[email protected]>
  • Loading branch information
1222-takeshi authored Jun 30, 2022
1 parent d27e83d commit f82dfbc
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
ros__parameters:
intersection:
state_transit_margin_time: 0.5
decel_velocity: 8.33 # 8.33m/s = 30.0km/h
stop_line_margin: 3.0
stuck_vehicle_detect_dist: 3.0 # this should be the length between cars when they are stopped. The actual stuck vehicle detection length will be this value + vehicle_length.
stuck_vehicle_ignore_dist: 7.0 # obstacle stop max distance(5.0m) + stuck vehicle size / 2 (0.0m-)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
ros__parameters:
intersection:
state_transit_margin_time: 0.5
decel_velocity: 8.33 # 8.33m/s = 30.0km/h
stop_line_margin: 3.0
stuck_vehicle_detect_dist: 3.0 # this should be the length between cars when they are stopped. The actual stuck vehicle detection length will be this value + vehicle_length.
stuck_vehicle_ignore_dist: 7.0 # obstacle stop max distance(5.0m) + stuck vehicle size / 2 (0.0m-)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ class MergeFromPrivateRoadModule : public SceneModuleInterface
public:
struct PlannerParam
{
double decel_velocity;
double detection_area_length;
double detection_area_right_margin;
double detection_area_left_margin;
Expand Down
1 change: 0 additions & 1 deletion planning/behavior_velocity_planner/intersection-design.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ If there is any object in a certain distance (default : 5[m]) from the end point
| Parameter | Type | Description |
| --------------------------------------------- | ------ | ----------------------------------------------------------------------------- |
| `intersection/state_transit_margin_time` | double | [m] time margin to change state |
| `intersection/decel_velocity` | double | [m] deceleration velocity in intersection |
| `intersection/path_expand_width` | bool | [m] path area to see with expansion |
| `intersection/stop_line_margin` | double | [m] margin before stop line |
| `intersection/stuck_vehicle_detect_dist` | double | [m] this should be the length between cars when they are stopped. |
Expand Down

0 comments on commit f82dfbc

Please sign in to comment.