48 [[nodiscard]] std::string
type()
const override;
92 std::vector<Eigen::Vector3d>
cumSum{ Eigen::Vector3d::Zero() };
104 std::array<std::vector<double>, 3>
slope{};
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Computes Allan Deviation of IMU Observations.
Definition AllanDeviation.hpp:29
std::vector< double > _averagingFactors
averaging factors (n) used for Allan Variance computation
Definition AllanDeviation.hpp:123
unsigned int _imuObsCount
number of IMU observations / length of cumulative sums
Definition AllanDeviation.hpp:132
AllanDeviation & operator=(AllanDeviation &&)=delete
Move assignment operator.
~AllanDeviation() override
Destructor.
AllanDeviation & operator=(const AllanDeviation &)=delete
Copy assignment operator.
std::vector< double > _averagingTimes
averaging times (τ)
Definition AllanDeviation.hpp:126
static const char * unitString(SensorType sensorType)
Returns a string for the unit of the type.
static constexpr size_t INPUT_PORT_INDEX_IMU_OBS
Flow (ImuObs)
Definition AllanDeviation.hpp:65
static std::string category()
String representation of the Class Category.
InsTime _startingInsTime
Time of first epoch received.
Definition AllanDeviation.hpp:120
AllanDeviation(const AllanDeviation &)=delete
Copy constructor.
static std::string typeStatic()
String representation of the Class Type.
AllanDeviation(AllanDeviation &&)=delete
Move constructor.
json save() const override
Saves the node into a json object.
std::array< Sensor, SensorType_COUNT > _sensors
Sensor data.
Definition AllanDeviation.hpp:114
float _confidenceFillAlpha
The alpha value for the shaded plot of the confidence intervals.
Definition AllanDeviation.hpp:149
double _samplingInterval
sampling interval
Definition AllanDeviation.hpp:117
static const char * to_string(SensorType sensorType)
Returns a string representation of the type.
void deinitialize() override
Deinitialize the node.
unsigned int _nextAveragingFactor
next averaging factor to be appended to _averagingFactors
Definition AllanDeviation.hpp:138
AllanDeviation()
Default constructor.
std::vector< double > _confidenceMultiplicationFactor
multiplication factor for simple confidence
Definition AllanDeviation.hpp:144
bool _updateLast
Flag wether to update the plot for each message or once at the end.
Definition AllanDeviation.hpp:151
bool _displayConfidence
Flag wether to display confidence intervals.
Definition AllanDeviation.hpp:147
SensorType
Sensor types.
Definition AllanDeviation.hpp:82
@ Accel
Accelerometer.
Definition AllanDeviation.hpp:83
@ SensorType_COUNT
Amount of sensors to use.
Definition AllanDeviation.hpp:85
@ Gyro
Gyroscope.
Definition AllanDeviation.hpp:84
double _averagingFactorsPerDecade
number of averaging factors per decade
Definition AllanDeviation.hpp:135
void restore(const json &j) override
Restores the node from a json object.
unsigned int _nextAveragingFactorExponent
exponent of next averaging factor
Definition AllanDeviation.hpp:141
void receiveImuObs(InputPin::NodeDataQueue &queue, size_t pinIdx)
Receive Sensor Data.
bool initialize() override
Initialize the node.
std::string type() const override
String representation of the Class Type.
void guiConfig() override
ImGui config window which is shown on double click.
std::vector< double > _observationCount
number of observations for each τ
Definition AllanDeviation.hpp:129
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Abstract parent class for all nodes.
Definition Node.hpp:86
Data for each sensor.
Definition AllanDeviation.hpp:90
std::array< std::vector< double >, 3 > allanVariance
Allan Variance.
Definition AllanDeviation.hpp:98
std::mutex mutex
Mutex to lock plotting.
Definition AllanDeviation.hpp:110
std::array< std::vector< double >, 3 > allanSum
Allan Variance precursor.
Definition AllanDeviation.hpp:95
std::array< std::vector< double >, 3 > slope
Slope of Allan Variance.
Definition AllanDeviation.hpp:104
std::vector< Eigen::Vector3d > cumSum
Cumulative Sums.
Definition AllanDeviation.hpp:92
std::array< std::array< std::vector< double >, 2 >, 3 > allanDeviationConfidenceIntervals
Confidence of Allan Deviation.
Definition AllanDeviation.hpp:107
std::array< std::vector< double >, 3 > allanDeviation
Allan Deviation.
Definition AllanDeviation.hpp:101