Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Trajectory Cache Example For Refactor #940

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ set(THIS_PACKAGE_INCLUDE_DEPENDS
moveit_msgs
moveit_ros_planning
moveit_ros_planning_interface
moveit_ros_trajectory_cache
moveit_servo
moveit_task_constructor_core
moveit_visual_tools
Expand All @@ -29,6 +30,7 @@ set(THIS_PACKAGE_INCLUDE_DEPENDS
tf2_geometry_msgs
tf2_geometry_msgs
tf2_ros
warehouse_ros_sqlite
)

foreach(Dependency IN ITEMS ${THIS_PACKAGE_INCLUDE_DEPENDS})
Expand Down Expand Up @@ -69,6 +71,7 @@ add_subdirectory(doc/how_to_guides/parallel_planning)
add_subdirectory(doc/how_to_guides/chomp_planner)
add_subdirectory(doc/how_to_guides/persistent_scenes_and_states)
add_subdirectory(doc/how_to_guides/pilz_industrial_motion_planner)
add_subdirectory(doc/how_to_guides/trajectory_cache)
add_subdirectory(doc/how_to_guides/using_ompl_constrained_planning)
add_subdirectory(doc/tutorials/pick_and_place_with_moveit_task_constructor)
add_subdirectory(doc/tutorials/quickstart_in_rviz)
Expand Down
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions doc/how_to_guides/how_to_guides.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Configuring and Using MoveIt
pick_ik/pick_ik_tutorial
trac_ik/trac_ik_tutorial
benchmarking/benchmarking_tutorial
trajectory_cache/trajectory_cache_tutorial

Developing and Documenting MoveIt
---------------------------------
Expand Down
6 changes: 6 additions & 0 deletions doc/how_to_guides/trajectory_cache/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
add_executable(trajectory_cache_demo src/trajectory_cache_demo.cpp)
ament_target_dependencies(trajectory_cache_demo ${THIS_PACKAGE_INCLUDE_DEPENDS} Boost moveit_ros_trajectory_cache)

install(TARGETS trajectory_cache_demo DESTINATION lib/${PROJECT_NAME})
install(DIRECTORY launch DESTINATION share/${PROJECT_NAME})
install(DIRECTORY config DESTINATION share/${PROJECT_NAME})
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# These are faster joint limits to allow for faster execution.
joint_limits:
panda_joint1:
has_velocity_limits: true
max_velocity: 50.0
has_acceleration_limits: true
max_acceleration: 5.0
has_jerk_limits: false
panda_joint2:
has_velocity_limits: true
max_velocity: 50.0
has_acceleration_limits: true
max_acceleration: 5.0
has_jerk_limits: false
panda_joint3:
has_velocity_limits: true
max_velocity: 50.0
has_acceleration_limits: true
max_acceleration: 5.0
has_jerk_limits: false
panda_joint4:
has_velocity_limits: true
max_velocity: 50.0
has_acceleration_limits: true
max_acceleration: 5.0
has_jerk_limits: false
panda_joint5:
has_velocity_limits: true
max_velocity: 50.0
has_acceleration_limits: true
max_acceleration: 5.0
has_jerk_limits: false
panda_joint6:
has_velocity_limits: true
max_velocity: 50.0
has_acceleration_limits: true
max_acceleration: 5.0
has_jerk_limits: false
panda_joint7:
has_velocity_limits: true
max_velocity: 50.0
has_acceleration_limits: true
max_acceleration: 5.0
has_jerk_limits: false
panda_finger_joint1:
has_velocity_limits: true
max_velocity: 25.0
has_acceleration_limits: true
max_acceleration: 5.0
has_jerk_limits: false
panda_finger_joint2:
has_velocity_limits: true
max_velocity: 25.0
has_acceleration_limits: true
max_acceleration: 5.0
has_jerk_limits: false
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading