![]() |
safety_node package from f1tenth_ws repogap_follow pure_pursuit safety_node scan_matching stanley_avoidance wall_follow waypoint_generator |
Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | MIT |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/cl2-uwaterloo/f1tenth_ws.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2024-06-10 |
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
- Steven Gong
Authors
Safety Node
The Safety Node implements Automatic Emergency Breaking (AEB) through Time to Collision (TTC) calculations. This the time it would take for the car to collide with an obstacle if it maintained its current heading and velocity.
We approximate the time to collision using Instantaneous Time to Collision (iTTC), which is the ratio of instantaneous range to range rate calculated from current range measurements and velocity measurements of the vehicle:
\[iTTC_i(t) = \frac{r_i(t)}{[-\dot{r}_i(t)]_+}\]where $r_i$ is the instantaneous range measurements and $\dot{r}$ is the current range rates. The operator $[x]_+$ is defined as $\max(x, 0)$.
We obtain:
- $r_i$ by using the current measurements from the
LaserScan
message - $\dot{r}_i$ by mapping the vehicle’s current longitudinal velocity onto each scan beam’s angle by using $v_x\cos(\theta_i)$, where $v_x$ is the forward speed in the vehicle’s frame of reference (obtained from
Odometry
message), and $\theta_i$ is the beam angle obtained fromLaserScan
messages.
The code has been implemented in both Python3 (under scripts/wall_follow_node.py
) and C++ (under src/safety_node.cpp
). Both have the same functionalities.
Starting Up the Node
- To start up the Python node, run
ros2 run safety_node safety_node.py
- To start up the C++ node, run
ros2 run safety_node safety_node
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_cmake_python | |
ament_lint_auto | |
ament_lint_common | |
rclcpp | |
rclpy | |
std_msgs | |
sensor_msgs | |
ackermann_msgs | |
nav_msgs |