0.3.0
Loading...
Searching...
No Matches
ImuObsWDelta.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
13
14#pragma once
15
16#include "ImuObs.hpp"
17#include "Navigation/Transformations/Units.hpp"
18
19namespace NAV
20{
22class ImuObsWDelta : public ImuObs
23{
24 public:
27 explicit ImuObsWDelta(const ImuPos& imuPos)
28 : ImuObs(imuPos) {}
29
32 [[nodiscard]] static std::string type()
33 {
34 return "ImuObsWDelta";
35 }
36
39 [[nodiscard]] std::string getType() const override { return type(); }
40
43 [[nodiscard]] static std::vector<std::string> parentTypes()
44 {
45 return { ImuObs::type() };
46 }
47
49 [[nodiscard]] static std::vector<std::string> GetStaticDataDescriptors()
50 {
52 desc.emplace_back("dTime [s]");
53 desc.emplace_back("dTheta X [deg]");
54 desc.emplace_back("dTheta Y [deg]");
55 desc.emplace_back("dTheta Z [deg]");
56 desc.emplace_back("dVelocity X [m/s]");
57 desc.emplace_back("dVelocity Y [m/s]");
58 desc.emplace_back("dVelocity Z [m/s]");
59 return desc;
60 }
61
63 [[nodiscard]] static constexpr size_t GetStaticDescriptorCount() { return ImuObs::GetStaticDescriptorCount() + 7; }
64
66 [[nodiscard]] std::vector<std::string> staticDataDescriptors() const override { return GetStaticDataDescriptors(); }
67
69 [[nodiscard]] size_t staticDescriptorCount() const override { return GetStaticDescriptorCount(); }
70
74 [[nodiscard]] std::optional<double> getValueAt(size_t idx) const override
75 {
77 if (idx < ImuObs::GetStaticDescriptorCount()) { return ImuObs::getValueAt(idx); }
78 switch (idx)
79 {
80 case ImuObs::GetStaticDescriptorCount() + 0: // dTime [s]
81 return dtime;
82 case ImuObs::GetStaticDescriptorCount() + 1: // dTheta X [deg]
83 return rad2deg(dtheta.x());
84 case ImuObs::GetStaticDescriptorCount() + 2: // dTheta Y [deg]
85 return rad2deg(dtheta.y());
86 case ImuObs::GetStaticDescriptorCount() + 3: // dTheta Z [deg]
87 return rad2deg(dtheta.z());
88 case ImuObs::GetStaticDescriptorCount() + 4: // dVelocity X [m/s]
89 return dvel.x();
90 case ImuObs::GetStaticDescriptorCount() + 5: // dVelocity Y [m/s]
91 return dvel.y();
92 case ImuObs::GetStaticDescriptorCount() + 6: // dVelocity Z [m/s]
93 return dvel.z();
94 default:
95 return std::nullopt;
96 }
97 return std::nullopt;
98 }
99
104 [[nodiscard]] bool setValueAt(size_t idx, double value) override
105 {
107 if (idx < ImuObs::GetStaticDescriptorCount()) { return ImuObs::setValueAt(idx, value); }
108 switch (idx)
109 {
110 case ImuObs::GetStaticDescriptorCount() + 0: // dTime [s]
111 dtime = value;
112 break;
113 case ImuObs::GetStaticDescriptorCount() + 1: // dTheta X [deg]
114 dtheta.x() = deg2rad(value);
115 break;
116 case ImuObs::GetStaticDescriptorCount() + 2: // dTheta Y [deg]
117 dtheta.y() = deg2rad(value);
118 break;
119 case ImuObs::GetStaticDescriptorCount() + 3: // dTheta Z [deg]
120 dtheta.z() = deg2rad(value);
121 break;
122 case ImuObs::GetStaticDescriptorCount() + 4: // dVelocity X [m/s]
123 dvel.x() = value;
124 break;
125 case ImuObs::GetStaticDescriptorCount() + 5: // dVelocity Y [m/s]
126 dvel.y() = value;
127 break;
128 case ImuObs::GetStaticDescriptorCount() + 6: // dVelocity Z [m/s]
129 dvel.z() = value;
130 break;
131 default:
132 return false;
133 }
134
135 return true;
136 }
137
139 double dtime = 0.0;
142 Eigen::Vector3d dtheta;
145 Eigen::Vector3d dvel;
146};
147
148} // namespace NAV
#define INS_ASSERT(_EXPR)
Assert function wrapper.
Definition Assert.h:19
Parent Class for all IMU Observations.
VectorNav Observation storage Class.
Definition ImuObsWDelta.hpp:23
std::string getType() const override
Returns the type of the data class.
Definition ImuObsWDelta.hpp:39
bool setValueAt(size_t idx, double value) override
Set the value at the index.
Definition ImuObsWDelta.hpp:104
static constexpr size_t GetStaticDescriptorCount()
Get the amount of descriptors.
Definition ImuObsWDelta.hpp:63
double dtime
The time interval that the delta angle and velocities are integrated over in [seconds].
Definition ImuObsWDelta.hpp:139
size_t staticDescriptorCount() const override
Get the amount of descriptors.
Definition ImuObsWDelta.hpp:69
static std::string type()
Returns the type of the data class.
Definition ImuObsWDelta.hpp:32
Eigen::Vector3d dtheta
Definition ImuObsWDelta.hpp:142
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition ImuObsWDelta.hpp:49
ImuObsWDelta(const ImuPos &imuPos)
Constructor.
Definition ImuObsWDelta.hpp:27
Eigen::Vector3d dvel
Definition ImuObsWDelta.hpp:145
std::optional< double > getValueAt(size_t idx) const override
Get the value at the index.
Definition ImuObsWDelta.hpp:74
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition ImuObsWDelta.hpp:43
std::vector< std::string > staticDataDescriptors() const override
Returns a vector of data descriptors.
Definition ImuObsWDelta.hpp:66
IMU Observation storage class.
Definition ImuObs.hpp:25
bool setValueAt(size_t idx, double value) override
Set the value at the index.
Definition ImuObs.hpp:121
static std::string type()
Returns the type of the data class.
Definition ImuObs.hpp:34
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition ImuObs.hpp:51
static constexpr size_t GetStaticDescriptorCount()
Get the amount of descriptors.
Definition ImuObs.hpp:69
std::optional< double > getValueAt(size_t idx) const override
Get the value at the index.
Definition ImuObs.hpp:80
const ImuPos & imuPos
Position and rotation information for conversion from platform to body frame.
Definition ImuObs.hpp:184
IMU Position.
Definition ImuPos.hpp:26