We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
In the file gazebo_imu_plugin.h, I am wondering how the below values were obtained from the ADIS16448 spec sheet.
static constexpr double kDefaultAdisGyroscopeNoiseDensity = 2.0 * 35.0 / 3600.0 / 180.0 * GZ_PI; static constexpr double kDefaultAdisGyroscopeRandomWalk = 2.0 * 4.0 / 3600.0 / 180.0 * GZ_PI; static constexpr double kDefaultAdisGyroscopeBiasCorrelationTime = 1.0e+3; static constexpr double kDefaultAdisGyroscopeTurnOnBiasSigma = 0.5 / 180.0 * GZ_PI; static constexpr double kDefaultAdisAccelerometerNoiseDensity = 2.0 * 2.0e-3; static constexpr double kDefaultAdisAccelerometerRandomWalk = 2.0 * 3.0e-3; static constexpr double kDefaultAdisAccelerometerBiasCorrelationTime = 300.0; static constexpr double kDefaultAdisAccelerometerTurnOnBiasSigma = 20.0e-3 * 9.8;
From the spec sheet (https://www.analog.com/media/en/technical-documentation/data-sheets/adis16448.pdf), the below values are stated: Angular Random Walk: 0.66 deg/sqrt(hr) Gyro Noise Density: 0.0135 deg/sec/sqrt(Hz) Velocity Random Walk: 0.11 m/sec/sqrt(hr) Accel Noise Density: 0.23 mg/sqrt(Hz)
I understand that the units are different, but am not sure how the conversion is done between the two. Any help would be appreciated. Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
In the file gazebo_imu_plugin.h, I am wondering how the below values were obtained from the ADIS16448 spec sheet.
static constexpr double kDefaultAdisGyroscopeNoiseDensity = 2.0 * 35.0 / 3600.0 / 180.0 * GZ_PI;
static constexpr double kDefaultAdisGyroscopeRandomWalk = 2.0 * 4.0 / 3600.0 / 180.0 * GZ_PI;
static constexpr double kDefaultAdisGyroscopeBiasCorrelationTime = 1.0e+3;
static constexpr double kDefaultAdisGyroscopeTurnOnBiasSigma = 0.5 / 180.0 * GZ_PI;
static constexpr double kDefaultAdisAccelerometerNoiseDensity = 2.0 * 2.0e-3;
static constexpr double kDefaultAdisAccelerometerRandomWalk = 2.0 * 3.0e-3;
static constexpr double kDefaultAdisAccelerometerBiasCorrelationTime = 300.0;
static constexpr double kDefaultAdisAccelerometerTurnOnBiasSigma = 20.0e-3 * 9.8;
From the spec sheet (https://www.analog.com/media/en/technical-documentation/data-sheets/adis16448.pdf), the below values are stated:
Angular Random Walk: 0.66 deg/sqrt(hr)
Gyro Noise Density: 0.0135 deg/sec/sqrt(Hz)
Velocity Random Walk: 0.11 m/sec/sqrt(hr)
Accel Noise Density: 0.23 mg/sqrt(Hz)
I understand that the units are different, but am not sure how the conversion is done between the two. Any help would be appreciated. Thanks!
The text was updated successfully, but these errors were encountered: