ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

What is the scope of a local controller?

asked 2021-03-09 08:04:52 -0500

programmer-man gravatar image

Hello,

I'm trying to nail down the scope of local controllers, local planners, and global planners. First I will summarize what I think I understand.

  • Global planners are responsible for finding paths.
    • Typically from point to point.
    • Ideally dynamically feasible and collision free.
  • Local planners are greedy planners that have a limited look ahead?
    • Vulnerable to planning into a corner (a local minima).
    • Finds a control motion/path that avoids obstacles and navigates the environment e.g., the DWA.
  • Local controllers are for executing a path (outputs a twist command).
    • Finds a control motion that follows the path.

What is unclear to me is the division lines between these planners and controllers. For example we have the DWA controller in NAV2 and we have the DWA planner. Am I to understand that local controllers can contain local planners or are they suppose exist outside of the controllers?

As a follow up question, what part of the software would be responsible for detecting that the robot is stuck? To me this would need access to the local planner, otherwise how would it know what the planner can and cannot navigate.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2021-03-09 09:37:26 -0500

parzival gravatar image

DWA planner, to the best of my knowledge, has both planner and controller closely knit. It's objective function has goal and current velocities as some of its parameters and it outputs velocity commands. So the reactive collision avoidance system is doing both together. Even looking at the dwa-local-planner code, it seems to implement everything in same program.

You can read the DWA paper for more information: http://wiki.ros.org/dwa_local_planner

edit flag offensive delete link more

Comments

And what would you say is the normal division of labour? Do you think my summary is accurate?

programmer-man gravatar image programmer-man  ( 2021-03-09 11:42:22 -0500 )edit
1

Yes it looks pretty accurate to me

parzival gravatar image parzival  ( 2021-03-10 03:23:07 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2021-03-09 08:04:52 -0500

Seen: 323 times

Last updated: Mar 09 '21