0.3.0
Loading...
Searching...
No Matches
InterFrequencyBiasModel.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 "Units.hpp"
17
20#include <fmt/format.h>
24
25#include "util/Logger.hpp"
26
27namespace NAV
28{
29
30namespace Keys
31{
32
35{
38 bool operator==(const InterFreqBias& rhs) const { return freq == rhs.freq; }
41};
42
43} // namespace Keys
44
46template<typename StateKeyType>
48{
49 public:
55 template<typename Scalar, int Size>
68
73 template<typename Scalar, int Size>
76 double dt)
77 {
78 for (const auto& key : Phi.rowKeys())
79 {
80 if (const auto* bias = std::get_if<Keys::InterFreqBias>(&key))
81 {
82 Phi(*bias, *bias) = 1;
83 Q(*bias, *bias) = _covarianceInterFrequencyBias * dt;
84 }
85 }
86 }
87
92 [[nodiscard]] std::pair<double, double> calcPhiAndQ(double dt, const Frequency& freq)
93 {
94 std::vector<StateKeyType> key = { Keys::InterFreqBias{ freq } };
95
96 KeyedMatrix<double, StateKeyType, StateKeyType, 1, 1> Phi(Eigen::Matrix<double, 1, 1>::Zero(), key, key);
97 KeyedMatrix<double, StateKeyType, StateKeyType, 1, 1> Q(Eigen::Matrix<double, 1, 1>::Zero(), key, key);
98 updatePhiAndQ(Phi, Q, dt);
99
100 return { Phi(all, all)(0), Q(all, all)(0) };
101 }
102
108 bool ShowGui(float itemWidth, float unitWidth, const char* id)
109 {
110 bool changed = false;
111
112 if (gui::widgets::InputDoubleWithUnit(fmt::format("{} of the inter-frequency bias (RW)##{}",
113 _gui_covarianceInterFrequencyBiasUnit == Units::CovarianceClkPhaseDriftUnits::m_sqrts
114 ? "StdDev"
115 : "Variance",
116 id)
117 .c_str(),
118 itemWidth, unitWidth, &_gui_covarianceInterFrequencyBias,
120 MakeComboItems<Units::CovarianceClkPhaseDriftUnits>().c_str(),
121 0.0, 0.0, "%.2e", ImGuiInputTextFlags_CharsScientific))
122 {
123 LOG_DEBUG("{}: _gui_covarianceInterFrequencyBias changed to {}", id, _gui_covarianceInterFrequencyBias);
124 LOG_DEBUG("{}: _gui_covarianceInterFrequencyBiasUnit changed to {}", id, to_string(_gui_covarianceInterFrequencyBiasUnit));
125 changed = true;
126 }
127
128 return changed;
129 }
130
131 private:
134
136 double _gui_covarianceInterFrequencyBias = 1e-6 /* [m²/s] */;
139
143 friend void to_json(json& j, const InterFrequencyBiasModel& data)
144 {
145 j = {
146 { "covarianceInterFrequencyBiasUnit", data._gui_covarianceInterFrequencyBiasUnit },
147 { "covarianceInterFrequencyBias", data._gui_covarianceInterFrequencyBias },
148 };
149 }
150
154 friend void from_json(const json& j, InterFrequencyBiasModel& data)
155 {
156 if (j.contains("covarianceInterFrequencyBiasUnit")) { j.at("covarianceInterFrequencyBiasUnit").get_to(data._gui_covarianceInterFrequencyBiasUnit); }
157 if (j.contains("covarianceInterFrequencyBias")) { j.at("covarianceInterFrequencyBias").get_to(data._gui_covarianceInterFrequencyBias); }
158 }
159};
160
161} // namespace NAV
162
167std::ostream& operator<<(std::ostream& os, const NAV::Keys::InterFreqBias& obj);
168
169namespace std
170{
171
173template<>
174struct hash<NAV::Keys::InterFreqBias>
175{
178 size_t operator()(const NAV::Keys::InterFreqBias& interFreqBias) const
179 {
180 return std::hash<NAV::Frequency>()(interFreqBias.freq);
181 }
182};
183
184} // namespace std
185
186#ifndef DOXYGEN_IGNORE
187
189template<>
190struct fmt::formatter<NAV::Keys::InterFreqBias> : fmt::formatter<std::string>
191{
196 template<typename FormatContext>
197 auto format(const NAV::Keys::InterFreqBias& interFreqBias, FormatContext& ctx) const
198 {
199 return fmt::formatter<std::string>::format(fmt::format("InterFreqBias({})", interFreqBias.freq), ctx);
200 }
201};
202
203#endif
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Frequency definition for different satellite systems.
Units used by the system model parameters.
CovarianceClkPhaseDriftUnits
Possible Units for the Standard deviation of the clock phase drift.
Definition Units.hpp:37
double convertUnit(const double &value, Units::CovarianceAccelUnits unit)
Converts the value depending on the unit provided.
Defines Widgets which allow the input of values and the selection of the unit.
std::ostream & operator<<(std::ostream &os, const NAV::Keys::InterFreqBias &obj)
Stream insertion operator overload.
Utility class for logging to console and file.
#define LOG_DEBUG
Debug information. Should not be called on functions which receive observations (spamming)
Definition Logger.hpp:67
const char * to_string(gui::widgets::PositionWithFrame::ReferenceFrame refFrame)
Converts the enum to a string.
System Model.
Frequency definition for different satellite systems.
Definition Frequency.hpp:59
Inter Frequency Bias System Model.
Definition InterFrequencyBiasModel.hpp:48
void updatePhiAndQ(KeyedMatrix< Scalar, StateKeyType, StateKeyType, Size, Size > &Phi, KeyedMatrix< Scalar, StateKeyType, StateKeyType, Size, Size > &Q, double dt)
Updates the provided Phi and Q matrix.
Definition InterFrequencyBiasModel.hpp:74
std::pair< double, double > calcPhiAndQ(double dt, const Frequency &freq)
Calculates the state transition matrix (𝚽) and the process noise covariance matrix (𝐐)
Definition InterFrequencyBiasModel.hpp:92
friend void to_json(json &j, const InterFrequencyBiasModel &data)
Converts the provided data into a json object.
Definition InterFrequencyBiasModel.hpp:143
double _covarianceInterFrequencyBias
Covariance of the inter-frequency bias [m²/s].
Definition InterFrequencyBiasModel.hpp:138
double _gui_covarianceInterFrequencyBias
GUI selection for the Standard deviation of the inter-frequency bias.
Definition InterFrequencyBiasModel.hpp:136
bool ShowGui(float itemWidth, float unitWidth, const char *id)
Shows a GUI.
Definition InterFrequencyBiasModel.hpp:108
Units::CovarianceClkPhaseDriftUnits _gui_covarianceInterFrequencyBiasUnit
Gui selection for the Unit of the inter-frequency covarianceInterFrequencyBias parameter.
Definition InterFrequencyBiasModel.hpp:133
void initialize(Keys::InterFreqBias bias, KeyedMatrix< Scalar, StateKeyType, StateKeyType, Size, Size > &F, KeyedMatrix< Scalar, StateKeyType, StateKeyType, Size, Size > &G, KeyedMatrix< Scalar, StateKeyType, StateKeyType, Size, Size > &W)
Initializes the inter-frequency bias.
Definition InterFrequencyBiasModel.hpp:56
friend void from_json(const json &j, InterFrequencyBiasModel &data)
Converts the provided json object into the data object.
Definition InterFrequencyBiasModel.hpp:154
Static sized KeyedMatrix.
Definition KeyedMatrix.hpp:1910
const std::vector< RowKeyType > & rowKeys() const
Returns the row keys.
Definition KeyedMatrix.hpp:77
Inter-frequency bias.
Definition InterFrequencyBiasModel.hpp:35
bool operator==(const InterFreqBias &rhs) const
Equal comparison operator.
Definition InterFrequencyBiasModel.hpp:38
Frequency freq
Frequency.
Definition InterFrequencyBiasModel.hpp:40
size_t operator()(const NAV::Keys::InterFreqBias &interFreqBias) const
Hash function.
Definition InterFrequencyBiasModel.hpp:178
Matrix which can be accessed by keys.