NASA Astrobee Robot Software  0.19.1
Flight software for the Astrobee robots operating inside the International Space Station.
imu_integrator_params.h
Go to the documentation of this file.
1 /* Copyright (c) 2017, United States Government, as represented by the
2  * Administrator of the National Aeronautics and Space Administration.
3  *
4  * All rights reserved.
5  *
6  * The Astrobee platform is licensed under the Apache License, Version 2.0
7  * (the "License"); you may not use this file except in compliance with the
8  * License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15  * License for the specific language governing permissions and limitations
16  * under the License.
17  */
18 #ifndef IMU_INTEGRATION_IMU_INTEGRATOR_PARAMS_H_
19 #define IMU_INTEGRATION_IMU_INTEGRATOR_PARAMS_H_
20 
22 
23 #include <gtsam/base/Vector.h>
24 #include <gtsam/geometry/Pose3.h>
25 
26 #include <string>
27 
28 namespace imu_integration {
30  gtsam::Vector3 gravity;
31  gtsam::Pose3 body_T_imu;
33  // From gtsam: Angular and velocity random walk expressed in degrees respectively m/s per sqrt(hr).
34  double gyro_sigma;
35  double accel_sigma;
40 };
41 } // namespace imu_integration
42 
43 #endif // IMU_INTEGRATION_IMU_INTEGRATOR_PARAMS_H_
imu_integration::ImuIntegratorParams::integration_variance
double integration_variance
Definition: imu_integrator_params.h:38
imu_integration::ImuIntegratorParams
Definition: imu_integrator_params.h:29
imu_filter_params.h
imu_integration::ImuIntegratorParams::accel_sigma
double accel_sigma
Definition: imu_integrator_params.h:35
imu_integration::ImuIntegratorParams::gyro_bias_sigma
double gyro_bias_sigma
Definition: imu_integrator_params.h:37
imu_integration::ImuIntegratorParams::gyro_sigma
double gyro_sigma
Definition: imu_integrator_params.h:34
imu_integration::ImuIntegratorParams::accel_bias_sigma
double accel_bias_sigma
Definition: imu_integrator_params.h:36
imu_integration
Definition: butterO1.h:26
imu_integration::ImuIntegratorParams::filter
ImuFilterParams filter
Definition: imu_integrator_params.h:32
imu_integration::ImuIntegratorParams::gravity
gtsam::Vector3 gravity
Definition: imu_integrator_params.h:30
imu_integration::ImuFilterParams
Definition: imu_filter_params.h:24
imu_integration::ImuIntegratorParams::body_T_imu
gtsam::Pose3 body_T_imu
Definition: imu_integrator_params.h:31
imu_integration::ImuIntegratorParams::bias_acc_omega_int
double bias_acc_omega_int
Definition: imu_integrator_params.h:39