Efficient Tool for Allan Variance Analysis
Project description
Allan Variance Analyzer
Efficient Tool for Allan Variance Analysis
This library provides tools for performing Allan Variance Analysis on IMU data in order to calibrate the IMU parameters. This is done by computing the Angle Random Walk (ARW), Bias Instability and Gyro Random Walk for the gyroscope, and Velocity Random Walk (VRW), Bias Instability and Accel Random Walk for the accelerometer.
While plenty of libraries exist for this purpose, this library stands out for its immense efficiency, use of pure Python (no bindings or compilation needed), and ease of use, while being fully unit tested for ease-of-mind when adopting it for your use case.
Faster
The popular allan_variance_ros package (written in C++), when run on the example imu_simulation.bag takes:
611.90s user 204.06s system 96% cpu 14:06.21 total
Our library takes:
40.64s user 2.04s system 91% cpu 46.558 total
which is a 15x speed improvement!
Easier
- There is no ROS dependency! But still useable within ROS.
- Since this library is written completely in Python, you can simple
import allan_varianceand use the tools. pipinstallable.- Outputs an
imu.yamlfile following the Kalibr format.
Collecting IMU Data
Please follow the below steps to collect the data needed to calibrate the IMU.
-
Place your IMU on some damped surface and record your IMU data to the file format of your choice. Please be sure to record at least 3 hours of data. The longer the sequence, the more accurate the results.
-
Recommended Reorganize messages by timestamp.
-
Define an interface for reading the data file and loading it as a
Tx6numpyarray whereTis the number of data samples and we have 3-dimensional gyroscrope and 3-dimensional accelerometer data. -
Create a configuration YAML file which specifies the IMU rate (Hz) and the measure rate (Hz) which is the rate at which data is measured/subsampled. You can add additional parameters for your particular interface. An example config file is availabe in config/sim.yaml.
-
Run Allan Variance computation tool. Please see analyze_rosbag.py for an example script using ROS bag data.
-
The result is a generated
imu.yamlfile in the Kalibr format.
Example Data
We use the 3 hour log of a Realsense D435i IMU with timestamps already re-arranged, as provided by raabuchanan.
Our library automatically generates a Kalibr compatible file as imu.yaml:
# Accelerometer
accelerometer_noise_density: 0.006308226052016165
accelerometer_random_walk: 0.00011673723527962174
# Gyroscope
gyroscope_noise_density: 0.00015198973532354657
gyroscope_random_walk: 2.664506559330434e-06
update_rate: 400.0 # Make sure this is correct
Author
If you use this package for academic work, please consider using the citation below:
@software{AllanVarianceAnalyzer,
author = {Varun Agrawal},
title = {Fast Allan Variance Analysis},
year = {2026},
version = {1.0.0},
url = {https://github.com/varunagrawal/allan_variance}
}
References
- Indirect Kalman Filter for 3D Attitude Estimation, Trawny & Roumeliotis
- An introduction to inertial navigation, Oliver Woodman
- Characterization of Errors and Noises in MEMS Inertial Sensors Using Allan Variance Method, Leslie Barreda Pupo
- Kalibr IMU Noise Documentation
Local Development
We use uv to manage the project.
To run unit tests:
uv run pytest
To run an example script:
uv run python scripts/analyze_rosbag.py config/sim.yaml imu_simulation.bag
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file allan_variance_analyzer-1.0.1.tar.gz.
File metadata
- Download URL: allan_variance_analyzer-1.0.1.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad5237420d201944fed34b7df12d4e43124f666e79c7563d7251436d527db689
|
|
| MD5 |
a32c052d7692d593e0e32ec8f662726f
|
|
| BLAKE2b-256 |
ce961c525944fb6582575d02206e68601d234e64c77488318497e34adc0b8ca2
|
File details
Details for the file allan_variance_analyzer-1.0.1-py3-none-any.whl.
File metadata
- Download URL: allan_variance_analyzer-1.0.1-py3-none-any.whl
- Upload date:
- Size: 12.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42aafc7296ea72d78fe1bf6a566a2b77e0ff0aaf891bc11274567da307ca3b10
|
|
| MD5 |
c6f1faa1224119b20369b6fd98396cac
|
|
| BLAKE2b-256 |
6f4441f82537d7161a7c6758a76f750929678606026845a60c044604bcb0cebe
|