No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 0.0.1
License LGPLv3
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description 3D-PointMass-EKF for State Estimation coupled with STM-UKF for Side Slip Angle Estimation
Checkout URI https://github.com/tumftm/3dvehicledynamicsstateestimation.git
VCS Type git
VCS Version main
Last Updated 2024-08-28
Dev Status UNKNOWN
CI status No Continuous Integration
Released UNRELEASED
Tags racing autonomous-driving unscented-kalman-filter state-estimation kalman-filter extended-kalman-filter vehicle-dynamics side-slip angle-estimation
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

state estimation cpp class

Additional Links

No additional links.

Maintainers

  • Marcel Weinmann

Authors

No additional authors.

State Estimation C++

This directory contains a modular implementation of a state estimation which can be used with different input and filter configurations.

The class incorporates multiple subclasses:

  • Referecence Orientation Handler: Handling of Reference Angles.
  • State Machine: Monitors the states of the input modalities and handles which modalities should be fused. This class also returns the overall state estimation status.
  • Vehicle Model Handler: Calculates the vehicle velocity based on the Wheelspeed sensor signals or kinematic single track model
  • Filter: Various Kalman filter implementations, offering flexible usage within the state estimation class.
  • Helper: Outlier Detection to handle signal outliers.

2D State Estimation C++

The state estimation predicts the following state vector utilizing inputs from N localization sources, N linear velocity measurements, and N IMUs (N is defined here):

\[x = \left[\begin{array}{c} {X_m} \\ {Y_m} \\ {\psi} \\ {v_x} \\ {v_y} \end{array}\right]\]

The implemented Extended Kalman Filter employs a constant velocity model for prediction, selectively incorporating updated measurements. The IMU signals are used directly in the prediction step with the following input vector:

\[u = \left[\begin{array}{c} {\omega_z} \\ {a_x} \\ {a_y} \end{array}\right]\]

3D State Estimation CPP

The state estimation predicts the following state vector utilizing inputs from N localization sources, N linear velocity measurements, and N IMUs (N is defined here):

\[x = \left[\begin{array}{c} {X_m} \\ {Y_m} \\ {Z_m} \\ {\phi} \\ {\theta} \\ {\psi} \\ {v_x} \\ {v_y} \\ {v_z} \end{array}\right]\]

The implemented Extended Kalman Filter employs a constant velocity model for prediction, selectively incorporating updated measurements. The IMU signals are used directly in the prediction step with the following input vector:

\[u = \left[\begin{array}{c} {\omega_x} \\ {\omega_y} \\ {\omega_z} \\ {a_x} \\ {a_y} \\ {a_z} \end{array}\right]\]

To execute the prediction step, the angular velocity measured by the IMUs must be transformed into a frame perpendicular to the local Cartesian frame.

\[\left[ \begin{array}{c} {{\dot{\phi}}} \\ {{\dot{\theta}}} \\ {{\dot{\psi}}} \end{array}\right]=\left[ \begin{array}{c c c} {{1}} & {{\sin(\phi)\tan(\theta)}} & {{\cos(\phi)\tan(\theta)}} \\ {{0}} & {{\cos(\phi)}} & {{-\sin(\phi)}} \\ {{0}} & {{\sin(\phi)\sec(\theta)}} & {{\cos(\phi)\sec(\theta)}} \end{array}\right]\left[ \begin{array}{c} {{\omega_x}} \\ {{\omega_y}} \\ {{\omega_z}} \end{array}\right]\]

Similarly, we need to transform the velocity state from the vehicle frame into a frame perpendicular to the local Cartesian frame to obtain the position prediction.

State Machine

The following state transitions are defined, necessitating a software reset to exit the ERROR and STALE states:

  OK STALE WARN STALE ERROR STALE ERROR STALE
any valid_loc_x x x x x        
any valid_lin_vel_x x x     x x    
any valid_imu_x x   x   x   x  
CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged state_estimation_cpp at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.