0.3.0
Loading...
Searching...
No Matches
BDSEphemeris.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
19
20#include <set>
21
22namespace NAV
23{
24
25// /// @brief List of GEO Satellites of BDS
26// const static std::set<uint16_t> GeoSats{ 1, 2, 3, 4, 5 };
27
30class BDSEphemeris final : public SatNavData
31{
32 public:
33 // #######################################################################################################
34 // Members
35 // #######################################################################################################
36
38 const uint16_t satNum;
39
40 // ------------------------------------------ Time Parameters --------------------------------------------
41
43 const InsTime toc;
44
46 const InsTime toe;
47
66 const size_t AODE;
67
86 const size_t AODC;
87
94 const std::array<double, 3> a;
95
96 // --------------------------------------- Keplerian Parameters ------------------------------------------
97
98 const double sqrt_A;
99 const double e;
100 const double i_0;
101 const double Omega_0;
102 const double omega;
103 const double M_0;
104
105 // -------------------------------------- Pertubation Parameters -----------------------------------------
106
107 const double delta_n;
108 const double Omega_dot;
109 const double i_dot;
110 const double Cus;
111 const double Cuc;
112 const double Cis;
113 const double Cic;
114 const double Crs;
115 const double Crc;
116
117 // ----------------------------------------------- Other -------------------------------------------------
118
124 const double svAccuracy;
125
132 const uint8_t satH1;
133
136 const double T_GD1;
137
140 const double T_GD2;
141
142 // #######################################################################################################
143 // Functions
144 // #######################################################################################################
145
172 BDSEphemeris(const uint16_t& satNum, const InsTime& toc, const InsTime& toe,
173 const size_t& AODE, const size_t& AODC,
174 const std::array<double, 3>& a,
175 const double& sqrt_A, const double& e, const double& i_0, const double& Omega_0, const double& omega, const double& M_0,
176 const double& delta_n, const double& Omega_dot, const double& i_dot, const double& Cus, const double& Cuc,
177 const double& Cis, const double& Cic, const double& Crs, const double& Crc,
178 const double& svAccuracy, uint8_t satH1, double T_GD1, double T_GD2);
179
180#ifdef TESTING
220 BDSEphemeris(int32_t satNum, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, double second, double svClockBias, double svClockDrift, double svClockDriftRate,
221 double AODE, double Crs, double delta_n, double M_0,
222 double Cuc, double e, double Cus, double sqrt_A,
223 double Toe, double Cic, double Omega_0, double Cis,
224 double i_0, double Crc, double omega, double Omega_dot,
225 double i_dot, double spare1, double BDTWeek, double spare2,
226 double svAccuracy, double satH1, double T_GD1, double T_GD2,
227 double TransmissionTimeOfMessage, double AODC, double spare3 = 0.0, double spare4 = 0.0);
228#endif
229
231 ~BDSEphemeris() final = default;
233 BDSEphemeris(const BDSEphemeris&) = default;
237 BDSEphemeris& operator=(const BDSEphemeris&) = delete;
239 BDSEphemeris& operator=(BDSEphemeris&&) = delete;
240
242 [[nodiscard]] double calcSatellitePositionVariance() const final;
243
249 [[nodiscard]] Corrections calcClockCorrections(const InsTime& recvTime, double dist, const Frequency& freq) const final;
250
252 [[nodiscard]] bool isHealthy() const final;
253
254 private:
260 [[nodiscard]] PosVelAccel calcSatelliteData(const InsTime& transTime, Orbit::Calc calc) const final;
261};
262
263} // namespace NAV
The class is responsible for all time-related tasks.
Satellite Navigation data (to calculate SatNavData and clock)
Broadcasted ephemeris message data.
Definition BDSEphemeris.hpp:31
const double e
Eccentricity [-].
Definition BDSEphemeris.hpp:99
const double Cus
Amplitude of the sine harmonic correction term to the argument of latitude [rad].
Definition BDSEphemeris.hpp:110
const InsTime toe
Time of Ephemeris.
Definition BDSEphemeris.hpp:46
const std::array< double, 3 > a
Definition BDSEphemeris.hpp:94
const double delta_n
Mean motion difference from computed value [rad/s].
Definition BDSEphemeris.hpp:107
const double T_GD1
Equipment Group Delay Differential. B1/B3 [s].
Definition BDSEphemeris.hpp:136
const double svAccuracy
SV accuracy [m].
Definition BDSEphemeris.hpp:124
const uint8_t satH1
Autonomous Satellite Health flag.
Definition BDSEphemeris.hpp:132
double calcSatellitePositionVariance() const final
Calculates the Variance of the satellite position in [m^2].
const uint16_t satNum
Number of the satellite.
Definition BDSEphemeris.hpp:38
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 BDSEphemeris.hpp:115
const double Omega_dot
Rate of change of right ascension [rad/s].
Definition BDSEphemeris.hpp:108
const double i_0
Inclination angle at reference time [rad].
Definition BDSEphemeris.hpp:100
const double Cuc
Amplitude of the cosine harmonic correction term to the argument of latitude [rad].
Definition BDSEphemeris.hpp:111
const double sqrt_A
Square root of the semi-major axis [m^1/2].
Definition BDSEphemeris.hpp:98
const double omega
Argument of perigee [rad].
Definition BDSEphemeris.hpp:102
const double Cis
Amplitude of the sine harmonic correction term to the angle of inclination [rad].
Definition BDSEphemeris.hpp:112
const double Omega_0
Longitude of the ascending node at reference time [rad].
Definition BDSEphemeris.hpp:101
const InsTime toc
Time of Clock.
Definition BDSEphemeris.hpp:43
const double M_0
Mean anomaly at reference time [rad].
Definition BDSEphemeris.hpp:103
const double Crs
Amplitude of the sine harmonic correction term to the orbit radius [m].
Definition BDSEphemeris.hpp:114
const double T_GD2
Equipment Group Delay Differential. B2/B3 [s].
Definition BDSEphemeris.hpp:140
PosVelAccel calcSatelliteData(const InsTime &transTime, Orbit::Calc calc) const final
Calculates position, velocity and acceleration of the satellite at transmission time.
const double i_dot
Rate of change of inclination [rad/s].
Definition BDSEphemeris.hpp:109
const double Cic
Amplitude of the cosine harmonic correction term to the angle of inclination [rad].
Definition BDSEphemeris.hpp:113
bool isHealthy() const final
Checks whether the signal is healthy.
const size_t AODC
Age of Data, Clock.
Definition BDSEphemeris.hpp:86
const size_t AODE
Age of Data, Ephemeris.
Definition BDSEphemeris.hpp:66
~BDSEphemeris() final=default
Destructor.
BDSEphemeris(const uint16_t &satNum, const InsTime &toc, const InsTime &toe, const size_t &AODE, const size_t &AODC, 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 satH1, double T_GD1, double T_GD2)
Constructor.
Frequency definition for different satellite systems.
Definition Frequency.hpp:59
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
Satellite clock corrections.
Definition Clock.hpp:28
Satellite Position, Velocity and Acceleration.
Definition Orbit.hpp:40