0.3.0
Loading...
Searching...
No Matches
IRNSSEphemeris.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
17#include <bitset>
18
20
22
23namespace NAV
24{
25
28class IRNSSEphemeris final : public SatNavData
29{
30 public:
31 // #######################################################################################################
32 // Members
33 // #######################################################################################################
34
35 // ------------------------------------------ Time Parameters --------------------------------------------
36
38 const InsTime toc;
39
41 const InsTime toe;
42
59
62 const size_t IODEC;
63
70 const std::array<double, 3> a;
71
72 // --------------------------------------- Keplerian Parameters ------------------------------------------
73
74 const double sqrt_A;
75 const double e;
76 const double i_0;
77 const double Omega_0;
78 const double omega;
79 const double M_0;
80
81 // -------------------------------------- Pertubation Parameters -----------------------------------------
82
83 const double delta_n;
84 const double Omega_dot;
85 const double i_dot;
86 const double Cus;
87 const double Cuc;
88 const double Cis;
89 const double Cic;
90 const double Crs;
91 const double Crc;
92
93 // ----------------------------------------------- Other -------------------------------------------------
94
101 const double svAccuracy;
102
118 const std::bitset<2> svHealth;
119
122 const double T_GD;
123
124 // #######################################################################################################
125 // Functions
126 // #######################################################################################################
127
152 const size_t& IODEC,
153 const std::array<double, 3>& a,
154 const double& sqrt_A, const double& e, const double& i_0, const double& Omega_0, const double& omega, const double& M_0,
155 const double& delta_n, const double& Omega_dot, const double& i_dot, const double& Cus, const double& Cuc,
156 const double& Cis, const double& Cic, const double& Crs, const double& Crc,
157 const double& svAccuracy, uint8_t svHealth,
158 const double& T_GD);
159
160#ifdef TESTING
199 IRNSSEphemeris(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, double second, double svClockBias, double svClockDrift, double svClockDriftRate,
200 double IODEC, double Crs, double delta_n, double M_0,
201 double Cuc, double e, double Cus, double sqrt_A,
202 double Toe, double Cic, double Omega_0, double Cis,
203 double i_0, double Crc, double omega, double Omega_dot,
204 double i_dot, double spare1, double IRNWeek, double spare2,
205 double svAccuracy, double svHealth, double T_GD, double spare3,
206 double TransmissionTimeOfMessage, double spare4 = 0.0, double spare5 = 0.0, double spare6 = 0.0);
207#endif
208
210 ~IRNSSEphemeris() final = default;
216 IRNSSEphemeris& operator=(const IRNSSEphemeris&) = delete;
218 IRNSSEphemeris& operator=(IRNSSEphemeris&&) = delete;
219
221 [[nodiscard]] double calcSatellitePositionVariance() const final;
222
228 [[nodiscard]] Corrections calcClockCorrections(const InsTime& recvTime, double dist, const Frequency& freq) const final;
229
231 [[nodiscard]] bool isHealthy() const final;
232
233 private:
239 [[nodiscard]] PosVelAccel calcSatelliteData(const InsTime& transTime, Orbit::Calc calc) const final;
240};
241
242} // namespace NAV
The class is responsible for all time-related tasks.
Satellite Navigation data (to calculate SatNavData and clock)
Frequency definition for different satellite systems.
Definition Frequency.hpp:59
Broadcasted ephemeris message data.
Definition IRNSSEphemeris.hpp:29
PosVelAccel calcSatelliteData(const InsTime &transTime, Orbit::Calc calc) const final
Calculates position, velocity and acceleration of the satellite at transmission time.
const std::bitset< 2 > svHealth
SV health.
Definition IRNSSEphemeris.hpp:118
const InsTime toc
Time of Clock.
Definition IRNSSEphemeris.hpp:38
double calcSatellitePositionVariance() const final
Calculates the Variance of the satellite position in [m^2].
bool isHealthy() const final
Checks whether the signal is healthy.
const double omega
Argument of perigee [rad].
Definition IRNSSEphemeris.hpp:78
const double i_dot
Rate of inclination angle [rad/s].
Definition IRNSSEphemeris.hpp:85
Corrections calcClockCorrections(const InsTime &recvTime, double dist, const Frequency &freq) const final
Calculates clock bias and drift of the satellite.
const double Crc
Amplitude of the cosine harmonic correction term to the orbit radius [m].
Definition IRNSSEphemeris.hpp:91
IRNSSEphemeris(const InsTime &toc, const InsTime &toe, const size_t &IODEC, const std::array< double, 3 > &a, const double &sqrt_A, const double &e, const double &i_0, const double &Omega_0, const double &omega, const double &M_0, const double &delta_n, const double &Omega_dot, const double &i_dot, const double &Cus, const double &Cuc, const double &Cis, const double &Cic, const double &Crs, const double &Crc, const double &svAccuracy, uint8_t svHealth, const double &T_GD)
Constructor.
const double e
Eccentricity [-].
Definition IRNSSEphemeris.hpp:75
const double Omega_dot
Rate of right ascension [rad/s].
Definition IRNSSEphemeris.hpp:84
const double T_GD
Total Group Delay.
Definition IRNSSEphemeris.hpp:122
const double delta_n
Mean motion difference from computed value [rad/s].
Definition IRNSSEphemeris.hpp:83
const double Cic
Amplitude of the cosine harmonic correction term to the angle of inclination [rad].
Definition IRNSSEphemeris.hpp:89
~IRNSSEphemeris() final=default
Destructor.
const double Cus
Amplitude of the sine harmonic correction term to the argument of latitude [rad].
Definition IRNSSEphemeris.hpp:86
const size_t IODEC
Issue of Data for Ephemeris and Clock.
Definition IRNSSEphemeris.hpp:62
const double Cuc
Amplitude of the cosine harmonic correction term to the argument of latitude [rad].
Definition IRNSSEphemeris.hpp:87
const double Cis
Amplitude of the sine harmonic correction term to the angle of inclination [rad].
Definition IRNSSEphemeris.hpp:88
const double svAccuracy
SV accuracy [m].
Definition IRNSSEphemeris.hpp:101
const double M_0
Mean anomaly at reference time [rad].
Definition IRNSSEphemeris.hpp:79
const double sqrt_A
Square root of the semi-major axis [m^1/2].
Definition IRNSSEphemeris.hpp:74
const std::array< double, 3 > a
Definition IRNSSEphemeris.hpp:70
const double i_0
Inclination angle at reference time [rad].
Definition IRNSSEphemeris.hpp:76
const double Omega_0
Longitude of Ascending Node of Orbit Plane at Weekly Epoch [rad].
Definition IRNSSEphemeris.hpp:77
const InsTime toe
Time of Ephemeris.
Definition IRNSSEphemeris.hpp:41
const double Crs
Amplitude of the sine harmonic correction term to the orbit radius [m].
Definition IRNSSEphemeris.hpp:90
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Abstract satellite orbit information.
Definition Orbit.hpp:25
Calc
Calculation flags.
Definition Orbit.hpp:75
Satellite Navigation data (to calculate SatNavData and clock)
Definition SatNavData.hpp:27
@ IRNSSEphemeris
IRNSS Broadcast Ephemeris.
Definition SatNavData.hpp:37
Satellite clock corrections.
Definition Clock.hpp:28
Satellite Position, Velocity and Acceleration.
Definition Orbit.hpp:40