This repository has been archived by the owner on Mar 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
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 #160 from tier4/sync-upstream-develop
sync upstream develop
- Loading branch information
Showing
10 changed files
with
103 additions
and
15 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
15 changes: 15 additions & 0 deletions
15
planning_launch/config/scenario_planning/common/common.param.yaml
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,15 @@ | ||
/**: | ||
ros__parameters: | ||
# constraints param for normal driving | ||
normal: | ||
min_acc: -0.5 # min deceleration [m/ss] | ||
max_acc: 1.0 # max acceleration [m/ss] | ||
min_jerk: -0.5 # min jerk [m/sss] | ||
max_jerk: 1.0 # max jerk [m/sss] | ||
|
||
# constraints to be observed | ||
limit: | ||
min_acc: -2.5 # min deceleration limit [m/ss] | ||
max_acc: 1.0 # max acceleration limit [m/ss] | ||
min_jerk: -1.5 # min jerk limit [m/sss] | ||
max_jerk: 1.5 # max jerk limit [m/sss] |
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,14 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
project(simulator_launch) | ||
|
||
find_package(ament_cmake_auto REQUIRED) | ||
ament_auto_find_build_dependencies() | ||
|
||
if(BUILD_TESTING) | ||
find_package(ament_lint_auto REQUIRED) | ||
ament_lint_auto_find_test_dependencies() | ||
endif() | ||
|
||
ament_auto_package(INSTALL_TO_SHARE | ||
launch | ||
) |
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,11 @@ | ||
# simulator_launch | ||
|
||
## Package Dependencies | ||
|
||
Please see `<exec_depend>` in `package.xml`. | ||
|
||
## Usage | ||
|
||
```xml | ||
<include file="$(find-pkg-share simulator_launch)/launch/simulator.launch.xml"/> | ||
``` |
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,20 @@ | ||
<launch> | ||
<arg name="scenario_simulation" description="use scenario simulation"/> | ||
<arg name="perception/enable_detection_failure" description="enable to simulate detection failure when using dummy perception"/> | ||
<arg name="perception/enable_object_recognition" description="enable object recognition when using dummy perception"/> | ||
<arg name="sensing/visible_range" description="visible range when using dummy perception"/> | ||
|
||
<group if="$(var scenario_simulation)"> | ||
<include file="$(find-pkg-share fault_injection)/launch/fault_injection.launch.xml"/> | ||
</group> | ||
|
||
<!-- Dummy Perception --> | ||
<group unless="$(var scenario_simulation)"> | ||
<include file="$(find-pkg-share dummy_perception_publisher)/launch/dummy_perception_publisher.launch.xml"> | ||
<arg name="real" value="$(var perception/enable_detection_failure)"/> | ||
<arg name="use_object_recognition" value="$(var perception/enable_object_recognition)"/> | ||
<arg name="visible_range" value="$(var sensing/visible_range)"/> | ||
</include> | ||
</group> | ||
|
||
</launch> |
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,22 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>simulator_launch</name> | ||
<version>0.1.0</version> | ||
<description>The simulator_launch package</description> | ||
|
||
<maintainer email="keisuke.shima@tier4.jp">Keisuke Shima</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
||
<buildtool_depend>ament_cmake_auto</buildtool_depend> | ||
|
||
<exec_depend>dummy_perception_publisher</exec_depend> | ||
<exec_depend>fault_injection</exec_depend> | ||
|
||
<test_depend>ament_lint_auto</test_depend> | ||
<test_depend>ament_lint_common</test_depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |