0.3.0
Loading...
Searching...
No Matches
AllanDeviation.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
14
15#pragma once
16
18
19#include "util/Eigen.hpp"
20#include <array>
21#include <cstdint>
22#include <mutex>
23#include <vector>
24
25namespace NAV
26{
28class AllanDeviation : public Node
29{
30 public:
34 ~AllanDeviation() override;
43
45 [[nodiscard]] static std::string typeStatic();
46
48 [[nodiscard]] std::string type() const override;
49
51 [[nodiscard]] static std::string category();
52
55 void guiConfig() override;
56
58 [[nodiscard]] json save() const override;
59
62 void restore(const json& j) override;
63
64 private:
65 constexpr static size_t INPUT_PORT_INDEX_IMU_OBS = 0;
66
68 bool initialize() override;
69
71 void deinitialize() override;
72
76 void receiveImuObs(InputPin::NodeDataQueue& queue, size_t pinIdx);
77
78 // ------------------------------------------------------------ Algorithm --------------------------------------------------------------
79
81 enum SensorType : uint8_t
82 {
86 };
87
89 struct Sensor
90 {
92 std::vector<Eigen::Vector3d> cumSum{ Eigen::Vector3d::Zero() };
93
95 std::array<std::vector<double>, 3> allanSum{};
96
98 std::array<std::vector<double>, 3> allanVariance{};
99
101 std::array<std::vector<double>, 3> allanDeviation{};
102
104 std::array<std::vector<double>, 3> slope{};
105
107 std::array<std::array<std::vector<double>, 2>, 3> allanDeviationConfidenceIntervals{};
108
110 std::mutex mutex;
111 };
112
114 std::array<Sensor, SensorType_COUNT> _sensors;
115
117 double _samplingInterval = 0.0;
118
121
123 std::vector<double> _averagingFactors;
124
126 std::vector<double> _averagingTimes;
127
129 std::vector<double> _observationCount;
130
132 unsigned int _imuObsCount{ 0 };
133
136
138 unsigned int _nextAveragingFactor{ 1 };
139
142
145
147 bool _displayConfidence{ false };
149 float _confidenceFillAlpha{ 0.4F };
151 bool _updateLast{ false };
152
155 static const char* to_string(SensorType sensorType);
156
159 static const char* unitString(SensorType sensorType);
160};
161
162} // namespace NAV
Vector space operations.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Node Class.
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