Skip to content

Commit

Permalink
MPPI operation check
Browse files Browse the repository at this point in the history
  • Loading branch information
tamago117 committed Aug 30, 2024
1 parent 9f75c94 commit d73cca4
Show file tree
Hide file tree
Showing 19 changed files with 1,160 additions and 14 deletions.
Empty file modified aichallenge/pkill_all.sh
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,17 @@
<!-- <arg name="costmap_topic" value="~/costmap"/> -->
</include>
</group>

<!-- Local Planning -->
<node pkg="mppi_controller" exec="mppi_controller_node" name="mppi_controller_node" output="screen">

Check warning on line 116 in aichallenge/workspace/src/aichallenge_submit/booars_launch/launch/components/planning.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (mppi)

Check warning on line 116 in aichallenge/workspace/src/aichallenge_submit/booars_launch/launch/components/planning.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (mppi)

Check warning on line 116 in aichallenge/workspace/src/aichallenge_submit/booars_launch/launch/components/planning.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (mppi)
<param from="$(find-pkg-share mppi_controller)/config/mppi_controller.param.yaml"/>

Check warning on line 117 in aichallenge/workspace/src/aichallenge_submit/booars_launch/launch/components/planning.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (mppi)

Check warning on line 117 in aichallenge/workspace/src/aichallenge_submit/booars_launch/launch/components/planning.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (mppi)
<remap from="input/kinematics" to="/localization/kinematic_state"/>
<remap from="input/reference_trajectory" to="/planning/scenario_planning/trajectory"/>
<!-- cost map -->
<remap from="input/costmap" to="/planning/costmap/costmap_generator/costmap"/>
<remap from="output/control_cmd" to="output/mppi_control_cmd"/>
<remap from="output/planned_path" to="output/mppi_planned_path"/>

</node>
</group>
</launch>
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/**:
ros__parameters:
# mppi

Check warning on line 3 in aichallenge/workspace/src/aichallenge_submit/mppi_controller/config/mppi_controller.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (mppi)
horizon : 25
num_samples : 3000
u_min : [-2.0, -0.25] # accel(m/s2), steer angle(rad)
u_max : [2.0, 0.25]
sigmas : [0.5, 0.1] # sample range
lambda : 1.0
auto_lambda : false
# reference path
DL : 0.1
loolahead_distance : 3.0

Check warning on line 13 in aichallenge/workspace/src/aichallenge_submit/mppi_controller/config/mppi_controller.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (loolahead)
reference_path_interval : 0.85
# cost weights
Qc : 2.0
Ql : 3.0
Qv : 2.0
Qo : 10000.0
Qin : 0.01
Qdin : 0.5

Check warning on line 21 in aichallenge/workspace/src/aichallenge_submit/mppi_controller/config/mppi_controller.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (Qdin)
# model param
delta_t : 0.1
vehicle_L : 1.0
V_MAX : 8.0

Loading

0 comments on commit d73cca4

Please sign in to comment.