Package Summary
Tags | No category tags. |
Version | 0.0.1 |
License | MIT |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/robotics-laboratory/truck.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2025-03-15 |
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
- root
Authors
Simulator 2D
Overview
The calculations are based on the Ackeramnn model.
Simulator Engine API
Name | Description | Arguments | Return type |
---|---|---|---|
resetBase | Sets the model center state, resets the simulation state | const geom::Pose& pose, double middle_steering, double linear_velocity | void |
resetMap | Sets the obstacle map, resets the simulation state | const std::string& path | void |
eraseMap | Clears the obstacle map, resets the simulation state | void | |
getTruckState | Returns the simulation state | TruckState | |
setBaseControl | Sets the control command | double velocity, double acceleration, double curvature | void |
setBaseControl | Sets the control command and selects the acceleration | double velocity, double curvature | void |
advance | Advances the simulation for a given time | double seconds = 1.0 | void |
Truck State API
Name | Description | Type |
---|---|---|
time | Simulation time | rclcpp::Time |
odomBasePose | The model center pose | geom::Pose |
currentSteering | Current steering | model::Steering |
targetSteering | Target steering | model::Twist |
odomBaseLinearVelocity | The model center linear velocity vector | geom::Vec2 |
baseAngularVelocity | Angular velocity scalar | double |
lidarRanges | Array of distances from lidar to obstacles (by rays) | const std::vector |
currentMotorRps | Current motor RPS | double |
targetMotorRps | Target motor RPS | double |
gyroAngularVelocity | Angular velocity vector for IMU | geom::Vec3 |
accelLinearAcceleration | Linear acceleration vector for IMU | geom::Vec3 |
LiDAR calculations
Lidar is a sensor that determines the distance from itself to obstacles by pointing a laser at an object and measuring the time it takes for the reflected light to return to the receiver. The lidar message contains an array of ranges, which stores the distance from the i-th ray to the nearest obstacle.
The simulator engine generates a dummy message for the current localization of the car on the obstacle map. When loading the map, all obstacles are divided into segments. They are iterated when calculating an array of ranges. At each iteration, the polar angles of the lidar rays passing through the ends of this segment, rounded to the nearest value, are determined for the current segment. After that, all suitable rays are repeated in the nested loop, and the distance to the nearest obstacle is updated for each one.
IMU calculations
Rotation matrix – T
Tangential acceleration – $\vec{t}$
Centripetal acceleration – $\vec{c} = \vec{e} \cdot ⱱ’^2 \cdot C’$
Acceleration of free fall – $\vec{g}$
Linear acceleration – $T \cdot (\vec{t} + \vec{c} + \vec{g})$
Angular velocity – $T \cdot \vec{𝜔}$
The IMU message consists of linear acceleration and angular velocity vectors for the sensor center.
Tangential acceleration is directed tangentially to the trajectory of motion. Its x coordinate is equal to the acceleration scalar, y and z are equal to 0.
$\vec{e}$ is a unit vector co-directed to the $\vec{IO}$. The centripetal acceleration is equal to the $\vec{e}$ multiplied by the square of the scalar of the linear velocity and the curvature of the trajectory.
Linear acceleration is the vector sum of tangential, centripetal acceleration and free fall acceleration.
Since the model moves in a plane, in the $\vec{𝜔}$, the z coordinate is considered equal to the scalar of angular velocity, x and y are zero.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_cmake_gtest | |
rosbag2_cpp | |
rosbag2_storage | |
truck_msgs | |
rclcpp | |
model | |
nav_msgs | |
geom | |
tf2_msgs | |
tf2_ros | |
rosgraph_msgs | |
control_proxy | |
visualization | |
nlohmann_json | |
map | |
sensor_msgs | |
Boost |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
truck |