Package Summary
Tags | No category tags. |
Version | 0.43.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_universe.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-04-04 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Takamasa Horibe
- Tomoya Kimura
- Takayuki Murooka
Authors
- Takamasa Horibe
autoware_operation_mode_transition_manager
Purpose / Use cases
This module is responsible for managing the different modes of operation for the Autoware system. The possible modes are:
-
Autonomous
: the vehicle is fully controlled by the autonomous driving system -
Local
: the vehicle is controlled by a physically connected control system such as a joy stick -
Remote
: the vehicle is controlled by a remote controller -
Stop
: the vehicle is stopped and there is no active control system.
There is also an In Transition
state that occurs during each mode transitions. During this state, the transition to the new operator is not yet complete, and the previous operator is still responsible for controlling the system until the transition is complete. Some actions may be restricted during the In Transition
state, such as sudden braking or steering. (This is restricted by the vehicle_cmd_gate
).
Features
- Transit mode between
Autonomous
,Local
,Remote
andStop
based on the indication command. - Check whether the each transition is available (safe or not).
- Limit some sudden motion control in
In Transition
mode (this is done withvehicle_cmd_gate
feature). -
Check whether the transition is completed.
- Transition between the
Autonomous
,Local
,Remote
, andStop
modes based on the indicated command. - Determine whether each transition is safe to execute.
- Restrict certain sudden motion controls during the
In Transition
mode (using thevehicle_cmd_gate
feature). - Verify that the transition is complete.
Design
A rough design of the relationship between autoware_operation_mode_transition_manager
` and the other nodes is shown below.
A more detailed structure is below.
Here we see that autoware_operation_mode_transition_manager
has multiple state transitions as follows
-
AUTOWARE ENABLED <—> DISABLED
- ENABLED: the vehicle is controlled by Autoware.
- DISABLED: the vehicle is out of Autoware control, expecting the e.g. manual driving.
-
AUTOWARE ENABLED <—> AUTO/LOCAL/REMOTE/NONE
- AUTO: the vehicle is controlled by Autoware, with the autonomous control command calculated by the planning/control component.
- LOCAL: the vehicle is controlled by Autoware, with the locally connected operator, e.g. joystick controller.
- REMOTE: the vehicle is controlled by Autoware, with the remotely connected operator.
- NONE: the vehicle is not controlled by any operator.
-
IN TRANSITION <—> COMPLETED
- IN TRANSITION: the mode listed above is in the transition process, expecting the former operator to have a responsibility to confirm the transition is completed.
- COMPLETED: the mode transition is completed.
Inputs / Outputs / API
Inputs
For the mode transition:
- /system/operation_mode/change_autoware_control [
tier4_system_msgs/srv/ChangeAutowareControl
]: change operation mode to Autonomous - /system/operation_mode/change_operation_mode [
tier4_system_msgs/srv/ChangeOperationMode
]: change operation mode
For the transition availability/completion check:
- /control/command/control_cmd [
autoware_control_msgs/msg/Control
]: vehicle control signal - /localization/kinematic_state [
nav_msgs/msg/Odometry
]: ego vehicle state - /planning/scenario_planning/trajectory [
autoware_planning_msgs/msg/Trajectory
]: planning trajectory - /vehicle/status/control_mode [
autoware_vehicle_msgs/msg/ControlModeReport
]: vehicle control mode (autonomous/manual) - /control/vehicle_cmd_gate/operation_mode [
autoware_adapi_v1_msgs/msg/OperationModeState
]: the operation mode in thevehicle_cmd_gate
. (To be removed)
For the backward compatibility (to be removed):
- /api/autoware/get/engage [
autoware_vehicle_msgs/msg/Engage
] - /control/current_gate_mode [
tier4_control_msgs/msg/GateMode
] - /control/external_cmd_selector/current_selector_mode [
tier4_control_msgs/msg/ExternalCommandSelectorMode
]
Outputs
- /system/operation_mode/state [
autoware_adapi_v1_msgs/msg/OperationModeState
]: to inform the current operation mode -
/control/autoware_operation_mode_transition_manager/debug_info [
autoware_operation_mode_transition_manager/msg/OperationModeTransitionManagerDebug
]: detailed information about the operation mode transition - /control/gate_mode_cmd [
tier4_control_msgs/msg/GateMode
]: to change thevehicle_cmd_gate
state to use its features (to be removed) -
/autoware/engage [
autoware_vehicle_msgs/msg/Engage
]: - /control/control_mode_request [
autoware_vehicle_msgs/srv/ControlModeCommand
]: to change the vehicle control mode (autonomous/manual) - /control/external_cmd_selector/select_external_command [
tier4_control_msgs/srv/ExternalCommandSelect
]:
Parameters
{{ json_to_markdown(“control/autoware_operation_mode_transition_manager/schema/operation_mode_transition_manager.schema.json”) }}
Name | Type | Description | Default value |
---|---|---|---|
transition_timeout |
double |
If the state transition is not completed within this time, it is considered a transition failure. | 10.0 |
frequency_hz |
double |
running hz | 10.0 |
enable_engage_on_driving |
bool |
Set true if you want to engage the autonomous driving mode while the vehicle is driving. If set to false, it will deny Engage in any situation where the vehicle speed is not zero. Note that if you use this feature without adjusting the parameters, it may cause issues like sudden deceleration. Before using, please ensure the engage condition and the vehicle_cmd_gate transition filter are appropriately adjusted. | 0.1 |
check_engage_condition |
bool |
If false, autonomous transition is always available | 0.1 |
nearest_dist_deviation_threshold |
double |
distance threshold used to find nearest trajectory point | 3.0 |
nearest_yaw_deviation_threshold |
double |
angle threshold used to find nearest trajectory point | 1.57 |
For engage_acceptable_limits
related parameters:
Name | Type | Description | Default value |
---|---|---|---|
allow_autonomous_in_stopped |
bool |
If true, autonomous transition is available when the vehicle is stopped even if other checks fail. | true |
dist_threshold |
double |
the distance between the trajectory and ego vehicle must be within this distance for Autonomous transition. |
1.5 |
yaw_threshold |
double |
the yaw angle between trajectory and ego vehicle must be within this threshold for Autonomous transition. |
0.524 |
speed_upper_threshold |
double |
the velocity deviation between control command and ego vehicle must be within this threshold for Autonomous transition. |
10.0 |
speed_lower_threshold |
double |
the velocity deviation between the control command and ego vehicle must be within this threshold for Autonomous transition. |
-10.0 |
acc_threshold |
double |
the control command acceleration must be less than this threshold for Autonomous transition. |
1.5 |
lateral_acc_threshold |
double |
the control command lateral acceleration must be less than this threshold for Autonomous transition. |
1.0 |
lateral_acc_diff_threshold |
double |
the lateral acceleration deviation between the control command must be less than this threshold for Autonomous transition. |
0.5 |
For stable_check
related parameters:
Name | Type | Description | Default value |
---|---|---|---|
duration |
double |
the stable condition must be satisfied for this duration to complete the transition. | 0.1 |
dist_threshold |
double |
the distance between the trajectory and ego vehicle must be within this distance to complete Autonomous transition. |
1.5 |
yaw_threshold |
double |
the yaw angle between trajectory and ego vehicle must be within this threshold to complete Autonomous transition. |
0.262 |
speed_upper_threshold |
double |
the velocity deviation between control command and ego vehicle must be within this threshold to complete Autonomous transition. |
2.0 |
speed_lower_threshold |
double |
the velocity deviation between control command and ego vehicle must be within this threshold to complete Autonomous transition. |
2.0 |
Engage check behavior on each parameter setting
This matrix describes the scenarios in which the vehicle can be engaged based on the combinations of parameter settings:
enable_engage_on_driving |
check_engage_condition |
allow_autonomous_in_stopped |
Scenarios where engage is permitted |
---|---|---|---|
x | x | x | Only when the vehicle is stationary. |
x | x | o | Only when the vehicle is stationary. |
x | o | x | When the vehicle is stationary and all engage conditions are met. |
x | o | o | Only when the vehicle is stationary. |
o | x | x | At any time (Caution: Not recommended). |
o | x | o | At any time (Caution: Not recommended). |
o | o | x | When all engage conditions are met, regardless of vehicle status. |
o | o | o | When all engage conditions are met or the vehicle is stationary. |
Future extensions / Unimplemented parts
- Need to remove backward compatibility interfaces.
- This node should be merged to the
vehicle_cmd_gate
due to its strong connection.
Changelog for package autoware_operation_mode_transition_manager
0.43.0 (2025-03-21)
- Merge remote-tracking branch 'origin/main' into chore/bump-version-0.43
- chore: rename from [autoware.universe]{.title-ref} to [autoware_universe]{.title-ref} (#10306)
- Contributors: Hayato Mizushima, Yutaka Kondo
0.42.0 (2025-03-03)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat(autoware_utils): replace autoware_universe_utils with autoware_utils (#10191)
- Contributors: Fumiya Watanabe, 心刚
0.41.2 (2025-02-19)
- chore: bump version to 0.41.1 (#10088)
- Contributors: Ryohsuke Mitsudome
0.41.1 (2025-02-10)
0.41.0 (2025-01-29)
- Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
- feat(autoware_component_interface_specs_universe!): rename package (#9753)
- Contributors: Fumiya Watanabe, Ryohsuke Mitsudome
0.40.0 (2024-12-12)
- Merge branch 'main' into release-0.40.0
- Revert "chore(package.xml): bump version to 0.39.0 (#9587)" This reverts commit c9f0f2688c57b0f657f5c1f28f036a970682e7f5.
- fix: fix ticket links in CHANGELOG.rst (#9588)
- chore(package.xml): bump version to 0.39.0
(#9587)
- chore(package.xml): bump version to 0.39.0
- fix: fix ticket links in CHANGELOG.rst
* fix: remove unnecessary diff ---------Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
- fix: fix ticket links in CHANGELOG.rst (#9588)
- fix(cpplint): include what you use - control (#9565)
- 0.39.0
- update changelog
- Merge commit '6a1ddbd08bd' into release-0.39.0
- fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
- fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
- chore(package.xml): bump version to 0.38.0
(#9266)
(#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
- refactor(component_interface_utils): prefix package and namespace with autoware (#9092)
- Contributors: Esteve Fernandez, Fumiya Watanabe, M. Fatih Cırıt, Ryohsuke Mitsudome, Yutaka Kondo
0.39.0 (2024-11-25)
- Merge commit '6a1ddbd08bd' into release-0.39.0
- fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
- fix: fix ticket links to point to https://github.com/autowarefoundation/autoware_universe (#9304)
- chore(package.xml): bump version to 0.38.0
(#9266)
(#9284)
- unify package.xml version to 0.37.0
- remove system_monitor/CHANGELOG.rst
- add changelog
* 0.38.0
- refactor(component_interface_utils): prefix package and namespace with autoware (#9092)
- Contributors: Esteve Fernandez, Yutaka Kondo
0.38.0 (2024-11-08)
- unify package.xml version to 0.37.0
- refactor(component_interface_specs): prefix package and namespace with autoware (#9094)
- fix(autoware_operation_mode_transition_manager): fix funcArgNamesDifferent (#7997) fix: funcArgNamesDifferent_con-1
- refactor(universe_utils/motion_utils)!: add autoware namespace (#7594)
- refactor(motion_utils)!: add autoware prefix and include dir (#7539) refactor(motion_utils): add autoware prefix and include dir
- feat(autoware_universe_utils)!: rename from tier4_autoware_utils (#7538) Co-authored-by: kosuke55 <<kosuke.tnp@gmail.com>>
- fix(operation mode manager): add nullptr check in onTimer (#7446)
- refactor(operation_mode_transition_manager): prefix package and
namespace with autoware_
(#7291)
- RT1-6682 add prefix package and namespace with autoware_
* RT1-6682 fix package's description ---------
- Contributors: Esteve Fernandez, Kosuke Takeuchi, Mamoru Sobue, Takayuki Murooka, Yutaka Kondo, Zulfaqar Azmi, kobayu858
0.26.0 (2024-04-03)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
- launch/operation_mode_transition_manager.launch.xml
-
- operation_mode_transition_manager_param [default: $(find-pkg-share autoware_operation_mode_transition_manager)/config/operation_mode_transition_manager.param.yaml]
- vehicle_info_param_file [default: $(find-pkg-share autoware_vehicle_info_utils)/config/vehicle_info.param.yaml]