-
Notifications
You must be signed in to change notification settings - Fork 215
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
PID controller and diff drive controller chaining #710
Merged
christophfroehlich
merged 25 commits into
ros-controls:master
from
Juliaj:diffdrive_pid_chaining_2
Mar 11, 2025
+1,545
−0
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
9f354dc
Initial commit for chaining diff_drive_controller with pid_controller
Juliaj 66fde02
Fix speed_limiter parameters
christophfroehlich 96c7211
Spawn the two PID controllers at once
christophfroehlich fd2332d
Use PID with velocity control loop
christophfroehlich 164dabd
Some updates to the docs
christophfroehlich 30017bd
Update launch.py and add steps to documentation
Juliaj aea8f78
Make a working example
Juliaj 731ec55
Merge branch 'master' into diffdrive_pid_chaining_2
Juliaj 64a2b6c
Update per review feedback.
Juliaj bb45f91
Update userdoc.rst
Juliaj 191438f
Update userdoc.rst
Juliaj 0db7119
Update per review feedback.
Juliaj f22a46f
Add example_16 to TOC
christophfroehlich a199348
Update per review and add python script for visualization experience
Juliaj 6ccf7aa
Merge branch 'master' into diffdrive_pid_chaining_2
christophfroehlich 8bc6421
Add plotjuggler diagram and fix pre-commit issues
Juliaj 0cc375c
Update example_16/doc/userdoc.rst
Juliaj 430d70c
Update example_16/doc/userdoc.rst
Juliaj 288a358
Update example_16/doc/userdoc.rst
Juliaj 8e74ebc
Update doc with command to change parameter online
Juliaj 3f3f774
Fix test_dependencies
christophfroehlich 7ea984d
Update meta information
christophfroehlich ad7a1cd
Merge branch 'master' into diffdrive_pid_chaining_2
christophfroehlich 637e868
Merge branch 'master' into diffdrive_pid_chaining_2
Juliaj 0e871d6
Merge branch 'master' into diffdrive_pid_chaining_2
christophfroehlich File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,84 @@ | ||
cmake_minimum_required(VERSION 3.16) | ||
project(ros2_control_demo_example_16 LANGUAGES CXX) | ||
|
||
if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)") | ||
add_compile_options(-Wall -Wextra) | ||
endif() | ||
|
||
# set the same behavior for windows as it is on linux | ||
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON) | ||
|
||
# find dependencies | ||
set(THIS_PACKAGE_INCLUDE_DEPENDS | ||
hardware_interface | ||
pluginlib | ||
rclcpp | ||
rclcpp_lifecycle | ||
) | ||
|
||
# Specify the required version of ros2_control | ||
find_package(controller_manager 4.0.0) | ||
# Handle the case where the required version is not found | ||
if(NOT controller_manager_FOUND) | ||
message(FATAL_ERROR "ros2_control version 4.0.0 or higher is required. " | ||
"Are you using the correct branch of the ros2_control_demos repository?") | ||
endif() | ||
|
||
# find dependencies | ||
find_package(backward_ros REQUIRED) | ||
find_package(ament_cmake REQUIRED) | ||
foreach(Dependency IN ITEMS ${THIS_PACKAGE_INCLUDE_DEPENDS}) | ||
find_package(${Dependency} REQUIRED) | ||
endforeach() | ||
|
||
## COMPILE | ||
add_library( | ||
ros2_control_demo_example_16 | ||
SHARED | ||
hardware/diffbot_system.cpp | ||
) | ||
target_compile_features(ros2_control_demo_example_16 PUBLIC cxx_std_17) | ||
target_include_directories(ros2_control_demo_example_16 PUBLIC | ||
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/hardware/include> | ||
$<INSTALL_INTERFACE:include/ros2_control_demo_example_16> | ||
) | ||
ament_target_dependencies( | ||
ros2_control_demo_example_16 PUBLIC | ||
${THIS_PACKAGE_INCLUDE_DEPENDS} | ||
) | ||
|
||
# Export hardware plugins | ||
pluginlib_export_plugin_description_file(hardware_interface ros2_control_demo_example_16.xml) | ||
|
||
# INSTALL | ||
install( | ||
DIRECTORY hardware/include/ | ||
DESTINATION include/ros2_control_demo_example_16 | ||
) | ||
install( | ||
DIRECTORY description/launch description/ros2_control description/urdf | ||
DESTINATION share/ros2_control_demo_example_16 | ||
) | ||
install( | ||
DIRECTORY bringup/launch bringup/config | ||
DESTINATION share/ros2_control_demo_example_16 | ||
) | ||
install(TARGETS ros2_control_demo_example_16 | ||
EXPORT export_ros2_control_demo_example_16 | ||
ARCHIVE DESTINATION lib | ||
LIBRARY DESTINATION lib | ||
RUNTIME DESTINATION bin | ||
) | ||
|
||
if(BUILD_TESTING) | ||
find_package(ament_cmake_pytest REQUIRED) | ||
|
||
ament_add_pytest_test(example_16_urdf_xacro test/test_urdf_xacro.py) | ||
ament_add_pytest_test(view_example_16_launch test/test_view_robot_launch.py) | ||
ament_add_pytest_test(run_example_16_launch test/test_diffbot_launch.py) | ||
endif() | ||
|
||
## EXPORTS | ||
ament_export_targets(export_ros2_control_demo_example_16 HAS_LIBRARY_TARGET) | ||
ament_export_dependencies(${THIS_PACKAGE_INCLUDE_DEPENDS}) | ||
ament_package() |
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,6 @@ | ||
# ros2_control_demo_example_16 | ||
|
||
*DiffBot*, or ''Differential Mobile Robot'', is a simple mobile base with differential drive. | ||
The robot is basically a box moving according to differential drive kinematics. | ||
|
||
Find the documentation in [doc/userdoc.rst](doc/userdoc.rst) or on [control.ros.org](https://control.ros.org/master/doc/ros2_control_demos/example_16/doc/userdoc.html). |
92 changes: 92 additions & 0 deletions
92
example_16/bringup/config/diffbot_chained_controllers.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,92 @@ | ||
controller_manager: | ||
ros__parameters: | ||
update_rate: 10 # Hz | ||
|
||
joint_state_broadcaster: | ||
type: joint_state_broadcaster/JointStateBroadcaster | ||
|
||
pid_controller_left_wheel_joint: | ||
type: pid_controller/PidController | ||
|
||
pid_controller_right_wheel_joint: | ||
type: pid_controller/PidController | ||
|
||
diffbot_base_controller: | ||
type: diff_drive_controller/DiffDriveController | ||
|
||
|
||
pid_controller_left_wheel_joint: | ||
ros__parameters: | ||
|
||
dof_names: | ||
- left_wheel_joint | ||
|
||
command_interface: velocity | ||
|
||
reference_and_state_interfaces: | ||
- velocity | ||
|
||
gains: | ||
# control the velocity, no d term | ||
left_wheel_joint: {"p": 0.5, "i": 2.5, "d": 0.0, "i_clamp_min": -20.0, "i_clamp_max": 20.0, "antiwindup": true, "feedforward_gain": 0.95} | ||
|
||
pid_controller_right_wheel_joint: | ||
ros__parameters: | ||
|
||
dof_names: | ||
- right_wheel_joint | ||
|
||
command_interface: velocity | ||
|
||
reference_and_state_interfaces: | ||
- velocity | ||
|
||
gains: | ||
# control the velocity, no d term | ||
right_wheel_joint: {"p": 0.5, "i": 2.5, "d": 0.0, "i_clamp_min": -20.0, "i_clamp_max": 20.0, "antiwindup": true, "feedforward_gain": 0.95} | ||
|
||
diffbot_base_controller: | ||
ros__parameters: | ||
|
||
left_wheel_names: ["pid_controller_left_wheel_joint/left_wheel_joint"] | ||
right_wheel_names: ["pid_controller_right_wheel_joint/right_wheel_joint"] | ||
|
||
wheel_separation: 0.10 | ||
#wheels_per_side: 1 # actually 2, but both are controlled by 1 signal | ||
wheel_radius: 0.015 | ||
|
||
# we have velocity feedback | ||
position_feedback: false | ||
|
||
wheel_separation_multiplier: 1.0 | ||
left_wheel_radius_multiplier: 1.0 | ||
right_wheel_radius_multiplier: 1.0 | ||
|
||
publish_rate: 50.0 | ||
odom_frame_id: odom | ||
base_frame_id: base_link | ||
pose_covariance_diagonal : [0.001, 0.001, 0.001, 0.001, 0.001, 0.01] | ||
twist_covariance_diagonal: [0.001, 0.001, 0.001, 0.001, 0.001, 0.01] | ||
|
||
open_loop: true | ||
enable_odom_tf: true | ||
|
||
cmd_vel_timeout: 0.5 | ||
# set publish_limited_velocity to true for visualization | ||
publish_limited_velocity: true | ||
#velocity_rolling_window_size: 10 | ||
|
||
# Velocity and acceleration limits | ||
christophfroehlich marked this conversation as resolved.
Show resolved
Hide resolved
|
||
# Whenever a min_* is unspecified, default to -max_* | ||
linear.x.max_velocity: 1.0 | ||
linear.x.min_velocity: -1.0 | ||
linear.x.max_acceleration: 1.0 | ||
linear.x.max_jerk: .NAN | ||
linear.x.min_jerk: .NAN | ||
|
||
angular.z.max_velocity: 1.0 | ||
angular.z.min_velocity: -1.0 | ||
angular.z.max_acceleration: 1.0 | ||
angular.z.min_acceleration: -1.0 | ||
angular.z.max_jerk: .NAN | ||
angular.z.min_jerk: .NAN |
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,84 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<root> | ||
<tabbed_widget parent="main_window" name="Main Window"> | ||
<Tab containers="1" tab_name="DiffBot"> | ||
<Container> | ||
<DockSplitter orientation="-" sizes="0.300292;0.300292;0.399417" count="3"> | ||
<DockArea name="..."> | ||
<plot flip_y="false" mode="TimeSeries" flip_x="false" style="LinesAndDots"> | ||
<range top="0.717500" bottom="-0.017500" right="10.379761" left="2.746329"/> | ||
<limitY/> | ||
<curve name="/cmd_vel/twist/linear/x" color="#f1854c"/> | ||
<curve name="/diffbot_base_controller/cmd_vel_out/twist/linear/x" color="#d62728"/> | ||
</plot> | ||
</DockArea> | ||
<DockArea name="..."> | ||
<plot flip_y="false" mode="TimeSeries" flip_x="false" style="Lines"> | ||
<range top="1.025000" bottom="-0.025000" right="10.379761" left="2.746329"/> | ||
<limitY/> | ||
<curve name="/cmd_vel/twist/angular/z" color="#17becf"/> | ||
<curve name="/diffbot_base_controller/cmd_vel_out/twist/angular/z" color="#bcbd22"/> | ||
</plot> | ||
</DockArea> | ||
<DockArea name="..."> | ||
<plot flip_y="false" mode="TimeSeries" flip_x="false" style="LinesAndDots"> | ||
<range top="52.434211" bottom="-0.855263" right="10.379761" left="2.746329"/> | ||
<limitY/> | ||
<curve name="/controller_manager/introspection_data/values/state_interface.left_wheel_joint/velocity" color="#1f77b4"/> | ||
<curve name="/controller_manager/introspection_data/values/command_interface.left_wheel_joint/velocity" color="#d62728"/> | ||
<curve name="/controller_manager/introspection_data/values/command_interface.pid_controller_left_wheel_joint/left_wheel_joint/velocity" color="#1ac938"/> | ||
<curve name="/controller_manager/introspection_data/values/state_interface.right_wheel_joint/velocity" color="#1ac9bc"/> | ||
<curve name="/controller_manager/introspection_data/values/command_interface.right_wheel_joint/velocity" color="#ff7f0e"/> | ||
<curve name="/controller_manager/introspection_data/values/command_interface.pid_controller_right_wheel_joint/right_wheel_joint/velocity" color="#f14cc1"/> | ||
</plot> | ||
</DockArea> | ||
</DockSplitter> | ||
</Container> | ||
</Tab> | ||
<currentTabIndex index="0"/> | ||
</tabbed_widget> | ||
<use_relative_time_offset enabled="1"/> | ||
<!-- - - - - - - - - - - - - - - --> | ||
<!-- - - - - - - - - - - - - - - --> | ||
<Plugins> | ||
<plugin ID="DataLoad CSV"> | ||
<parameters delimiter="0" time_axis=""/> | ||
</plugin> | ||
<plugin ID="DataLoad MCAP"/> | ||
<plugin ID="DataLoad ROS2 bags"> | ||
<use_header_stamp value="false"/> | ||
<discard_large_arrays value="true"/> | ||
<max_array_size value="100"/> | ||
<boolean_strings_to_number value="true"/> | ||
<remove_suffix_from_strings value="true"/> | ||
<selected_topics value=""/> | ||
</plugin> | ||
<plugin ID="DataLoad ULog"/> | ||
<plugin ID="ROS2 Topic Subscriber"> | ||
<use_header_stamp value="false"/> | ||
<discard_large_arrays value="true"/> | ||
<max_array_size value="100"/> | ||
<boolean_strings_to_number value="true"/> | ||
<remove_suffix_from_strings value="true"/> | ||
<selected_topics value="/cmd_vel;/controller_manager/introspection_data/names;/controller_manager/introspection_data/values;/diffbot_base_controller/cmd_vel_out"/> | ||
</plugin> | ||
<plugin ID="UDP Server"/> | ||
<plugin ID="WebSocket Server"/> | ||
<plugin ID="ZMQ Subscriber"/> | ||
<plugin ID="Fast Fourier Transform"/> | ||
<plugin ID="Quaternion to RPY"/> | ||
<plugin ID="Reactive Script Editor"> | ||
<library code="--[[ Helper function to create a series from arrays

 new_series: a series previously created with ScatterXY.new(name)
 prefix: prefix of the timeseries, before the index of the array
 suffix_X: suffix to complete the name of the series containing the X value. If [nil], use the index of the array.
 suffix_Y: suffix to complete the name of the series containing the Y value
 timestamp: usually the tracker_time variable
 
 Example:
 
 Assuming we have multiple series in the form:
 
 /trajectory/node.{X}/position/x
 /trajectory/node.{X}/position/y
 
 where {N} is the index of the array (integer). We can create a reactive series from the array with:
 
 new_series = ScatterXY.new("my_trajectory") 
 CreateSeriesFromArray( new_series, "/trajectory/node", "position/x", "position/y", tracker_time );
--]]

function CreateSeriesFromArray( new_series, prefix, suffix_X, suffix_Y, timestamp )
 
 --- clear previous values
 new_series:clear()
 
 --- Append points to new_series
 index = 0
 while(true) do

 x = index;
 -- if not nil, get the X coordinate from a series
 if suffix_X ~= nil then 
 series_x = TimeseriesView.find( string.format( "%s.%d/%s", prefix, index, suffix_X) )
 if series_x == nil then break end
 x = series_x:atTime(timestamp)	 
 end
 
 series_y = TimeseriesView.find( string.format( "%s.%d/%s", prefix, index, suffix_Y) )
 if series_y == nil then break end 
 y = series_y:atTime(timestamp)
 
 new_series:push_back(x,y)
 index = index+1
 end
end

--[[ Similar to the built-in function GetSeriesNames(), but select only the names with a give prefix. --]]

function GetSeriesNamesByPrefix(prefix)
 -- GetSeriesNames(9 is a built-in function
 all_names = GetSeriesNames()
 filtered_names = {}
 for i, name in ipairs(all_names) do
 -- check the prefix
 if name:find(prefix, 1, #prefix) then
 table.insert(filtered_names, name);
 end
 end
 return filtered_names
end

--[[ Modify an existing series, applying offsets to all their X and Y values

 series: an existing timeseries, obtained with TimeseriesView.find(name)
 delta_x: offset to apply to each x value
 delta_y: offset to apply to each y value 
 
--]]

function ApplyOffsetInPlace(series, delta_x, delta_y)
 -- use C++ indices, not Lua indices
 for index=0, series:size()-1 do
 x,y = series:at(index)
 series:set(index, x + delta_x, y + delta_y)
 end
end
"/> | ||
<scripts/> | ||
</plugin> | ||
<plugin ID="CSV Exporter"/> | ||
<plugin ID="ROS2 Topic Re-Publisher"/> | ||
</Plugins> | ||
<!-- - - - - - - - - - - - - - - --> | ||
<previouslyLoaded_Datafiles/> | ||
<previouslyLoaded_Streamer name="ROS2 Topic Subscriber"/> | ||
<!-- - - - - - - - - - - - - - - --> | ||
<customMathEquations/> | ||
<snippets/> | ||
<!-- - - - - - - - - - - - - - - --> | ||
</root> |
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,40 @@ | ||
# Copyright 2025 ros2_control Development Team | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
from launch import LaunchDescription | ||
from launch.substitutions import PathJoinSubstitution | ||
from launch_ros.substitutions import FindPackageShare | ||
from launch.actions import ExecuteProcess | ||
|
||
|
||
def generate_launch_description(): | ||
|
||
return LaunchDescription( | ||
[ | ||
ExecuteProcess( | ||
cmd=[ | ||
"python3", | ||
PathJoinSubstitution( | ||
[ | ||
FindPackageShare("ros2_control_demo_example_16"), | ||
"launch", | ||
"demo_test_helper.py", | ||
] | ||
), | ||
], | ||
output="screen", | ||
) | ||
] | ||
) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.