10#ifndef SIMULATIONACCELEROMETERGYROMETERSENSORHPP
11#define SIMULATIONACCELEROMETERGYROMETERSENSORHPP
13#include <boost/assert.hpp>
16#include <state-observation/api.h>
38 AccelerometerGyrometer(
bool matrixMode =
false,
bool withAcceleroBias =
false,
bool withGyroBias =
false);
43 void setMatrixMode(
bool matrixMode)
45 matrixMode_ = matrixMode;
49 void setWithGyroBias(
bool withGyroBias)
51 withGyroBias_ = withGyroBias;
55 void setWithAcceleroBias(
bool withAcceleroBias)
57 withAcceleroBias_ = withAcceleroBias;
70 void updateStateSize_();
78 bool withAcceleroBias_;
82 static const Index stateSize_ = 10;
83 static const Index stateSizeMatrix_ = 15;
84 static const Index measurementSize_ = 6;
86 Index currentStateSize_;
Gives a base class for algebraic sensors.
virtual Vector computeNoiselessMeasurement_()
virtual ~AccelerometerGyrometer()
Virtual destructor.
virtual Index getMeasurementSize_() const
Gets the measurements vector size.
virtual Index getStateSize_() const
Gets the state vector Size.
AlgebraicSensor()
Default constructor.
Implements the measurements given by an accelerometer.
Implements the gyrometer measurement algorithm.
Implements the accelerometer algorithm.
Filtering of divergent component of motion (DCM) and estimation of a bias betweeen the DCM and the co...
Eigen::Vector3d Vector3
3D vector
Eigen::Matrix3d Matrix3
3x3 Scalar Matrix
Eigen::VectorXd Vector
Dynamic sized scalar vector.
The implementation of the algorithm of a rotation velocity sensor.