area_division package from swarm_functions repoarea_division coverage_path kinematics_exchanger state_exchanger swarm_functions target_monitor task_allocation |
|
Package Summary
Tags | No category tags. |
Version | 1.1.0 |
License | Apache License 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/cpswarm/swarm_functions.git |
VCS Type | git |
VCS Version | kinetic-devel |
Last Updated | 2021-01-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Micha Sende
Authors
- Micha Sende
area_division
This package divides the available environment area among multiple cyber physical systems (CPSs) in a swarm. It is part of the swarm functions library.
Dependencies
This package depends on the following message definitions:
The communication between CPSs is based on the CPSwarm Communication Library.
The following packages of the sensing and actuation library are required:
- area_provider
- *_pos_provider
- *_pos_controller
Further required packages are:
Execution
Run the launch file
roslaunch area_division area_division.launch
to launch the area_division
node.
The launch file can be configured with following parameters:
-
id
(integer, default:1
) The identifier (ID) of the CPS used for name spacing in simulation. -
output
(string, default:screen
) Whether to show the program output (screen
) or to write it to a log file (log
).
In the param
subdirectory there is the parameter file area_division.yaml
that allows to configure the behavior of the area_division
node.
Nodes
area_division
The area_division
divides the environment area among multiple CPSs. When this node is running, it listens to area division requests by other CPSs to perform the area division. The division is also triggered when CPS join or leave the swarm or the behavior state of this CPS changes. Once the area division starts, all CPSs that participate in the area division, stop moving, and synchronize in order to achieve the same area division result. The division algorithm is based on the DARP algorithm which tries to divide the area optimally. Each CPS is assigned an equal share of the environment that includes its current position.
Subscribed Topics
-
state
(cpswarm_msgs/StateEvent) The behavior state of this CPS. -
swarm_state
(cpswarm_msgs/ArrayOfStates) The behaior states of the other CPSs. -
pos_provider/pose
(geometry_msgs/PoseStamped) The current position of this CPS. -
area/map
(nav_msgs/OccupancyGrid) The map to be divided. -
bridge/uuid
(swarmros/String) The UUID of this CPS. -
bridge/events/area_division
(cpswarm_msgs/AreaDivisionEvent) The area division requests from other CPSs. Messages are exchanged between CPSs using the CPSwarm Communication Library.
Published Topics
-
pos_controller/goal_position
(geometry_msgs/PoseStamped) The topic for stoping the CPS. -
area_division
(cpswarm_msgs/AreaDivisionEvent) The topic for requesting area division among the available CPSs in the swarm. The request is forwarded by the CPSwarm Communication Library to the other swarm members. -
area/assigned
(nav_msgs/OccupancyGrid) The area assigned to this CPS. -
area/rotated
(nav_msgs/OccupancyGrid) The area to be divided, rotated so the lower boundary is horizontal. For visualization purposes, only published if the parametervisualize
is set to true. -
area/downsampled
(nav_msgs/OccupancyGrid) The area to be divided, downsampled to a lower resolution. For visualization purposes, only published if the parametervisualize
is set to true.
Services Called
-
area/get_rotation
(cpswarm_msgs/GetDouble) Get the rotation required to align the lower boundary of the area horizontally.
Parameters
-
~loop_rate
(real, default:1.5
) The frequency in Hz at which to run the control loops. -
~queue_size
(integer, default:10
) The size of the message queue used for publishing and subscribing to topics. -
resolution
(real, default:1.0
The grid map underlying the area division will be downsampled to this resolution in meter / cell. -
~swarm_timeout
(real, default:5.0
) The time in seconds communication in the swarm can be delayed at most. Used to wait after an area division event before starting the area division or time after which it is assumed that a swarm member has left the swarm if no position update has been received. -
~visualize
(boolean, default:false
) Whether to publish the area division on a topic for visualization. -
~states
(string list, default:[]
) Only CPSs in these states divide the area among each other. -
~/optimizer/iterations
(integer, default:10
) Maximum number of iterations of the optimization algorithm. -
~/optimizer/variate_weight
(real, default:0.01
) Maximum variate weight of connected components. -
~/optimizer/discrepancy
(integer, default:30
) Maximum difference between number of assigned grid cells to each CPS.
Code API
Changelog for package area_division
1.1.0 (2019-10-31)
- Initial release of area_division
- Contributors: Micha Sende
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
roscpp | |
geometry_msgs | |
nav_msgs | |
cpswarm_msgs | |
swarmros |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
swarm_functions |
Launch files
- launch/area_division.launch
-
- id [default: 1]
- output [default: log]