0.3.0
Loading...
Searching...
No Matches
InsGnssTCKFSolution.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
17
18namespace NAV
19{
22{
23 public:
26 [[nodiscard]] static std::string type()
27 {
28 return "InsGnssTCKFSolution";
29 }
30
33 [[nodiscard]] std::string getType() const override { return type(); }
34
37 [[nodiscard]] static std::vector<std::string> parentTypes()
38 {
40 parent.push_back(InsGnssLCKFSolution::type());
41 return parent;
42 }
43
45 [[nodiscard]] static std::vector<std::string> GetStaticDataDescriptors()
46 {
48 desc.reserve(GetStaticDescriptorCount());
49 desc.emplace_back("Receiver clock offset [m]");
50 desc.emplace_back("Receiver clock drift [m/s]");
51 desc.emplace_back("Receiver clock offset [s]");
52 desc.emplace_back("Receiver clock drift [s/s]");
53 return desc;
54 }
55
57 [[nodiscard]] static constexpr size_t GetStaticDescriptorCount() { return InsGnssLCKFSolution::GetStaticDescriptorCount() + 4; }
58
60 [[nodiscard]] std::vector<std::string> staticDataDescriptors() const override { return GetStaticDataDescriptors(); }
61
63 [[nodiscard]] size_t staticDescriptorCount() const override { return GetStaticDescriptorCount(); }
64
68 [[nodiscard]] std::optional<double> getValueAt(size_t idx) const override
69 {
72 switch (idx)
73 {
74 case InsGnssLCKFSolution::GetStaticDescriptorCount() + 0: // Receiver clock offset [m]
75 return recvClkOffset;
76 case InsGnssLCKFSolution::GetStaticDescriptorCount() + 1: // Receiver clock drift [m/s]
77 return recvClkDrift;
78 case InsGnssLCKFSolution::GetStaticDescriptorCount() + 2: // Receiver clock offset [s]
80 case InsGnssLCKFSolution::GetStaticDescriptorCount() + 3: // Receiver clock drift [s/s]
82 default:
83 return std::nullopt;
84 }
85 }
86
88 double recvClkOffset{};
89
91 double recvClkDrift{};
92};
93
94} // namespace NAV
#define INS_ASSERT(_EXPR)
Assert function wrapper.
Definition Assert.h:19
Loosely-coupled Kalman Filter INS/GNSS errors.
static constexpr double C
Speed of light [m/s].
Definition Constants.hpp:34
Loosely-coupled Kalman Filter INS/GNSS errors.
Definition InsGnssLCKFSolution.hpp:26
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition InsGnssLCKFSolution.hpp:49
static std::string type()
Returns the type of the data class.
Definition InsGnssLCKFSolution.hpp:30
static constexpr size_t GetStaticDescriptorCount()
Get the number of descriptors.
Definition InsGnssLCKFSolution.hpp:81
std::optional< double > getValueAt(size_t idx) const override
Get the value at the index.
Definition InsGnssLCKFSolution.hpp:89
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition InsGnssLCKFSolution.hpp:41
Tightly-coupled Kalman Filter INS/GNSS errors.
Definition InsGnssTCKFSolution.hpp:22
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition InsGnssTCKFSolution.hpp:45
static constexpr size_t GetStaticDescriptorCount()
Get the amount of descriptors.
Definition InsGnssTCKFSolution.hpp:57
static std::string type()
Returns the type of the data class.
Definition InsGnssTCKFSolution.hpp:26
double recvClkDrift
δϱ_dot The receiver clock drift in [m/s]
Definition InsGnssTCKFSolution.hpp:91
std::vector< std::string > staticDataDescriptors() const override
Returns a vector of data descriptors.
Definition InsGnssTCKFSolution.hpp:60
double recvClkOffset
δϱ The receiver clock offset in [m]
Definition InsGnssTCKFSolution.hpp:88
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition InsGnssTCKFSolution.hpp:37
std::optional< double > getValueAt(size_t idx) const override
Get the value at the index.
Definition InsGnssTCKFSolution.hpp:68
std::string getType() const override
Returns the type of the data class.
Definition InsGnssTCKFSolution.hpp:33
size_t staticDescriptorCount() const override
Get the amount of descriptors.
Definition InsGnssTCKFSolution.hpp:63