0.3.0
Loading...
Searching...
No Matches
Orbit.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 <cstdint>
18#include "util/Eigen.hpp"
19
20namespace NAV
21{
22
24class Orbit
25{
26 public:
28 struct Pos
29 {
30 Eigen::Vector3d e_pos;
31 };
33 struct PosVel
34 {
35 Eigen::Vector3d e_pos;
36 Eigen::Vector3d e_vel;
37 };
40 {
41 Eigen::Vector3d e_pos;
42 Eigen::Vector3d e_vel;
43 Eigen::Vector3d e_accel;
44 };
45
47 Orbit() = default;
49 virtual ~Orbit() = default;
51 Orbit(const Orbit&) = default;
53 Orbit(Orbit&&) = default;
55 Orbit& operator=(const Orbit&) = delete;
57 Orbit& operator=(Orbit&&) = delete;
58
61 [[nodiscard]] Pos calcSatellitePos(const InsTime& transTime) const;
64 [[nodiscard]] PosVel calcSatellitePosVel(const InsTime& transTime) const;
67 [[nodiscard]] PosVelAccel calcSatellitePosVelAccel(const InsTime& transTime) const;
68
70 [[nodiscard]] virtual double calcSatellitePositionVariance() const = 0;
71
72 protected:
74 enum Calc : uint8_t
75 {
76 Calc_None = 0b000,
77 Calc_Position = 0b001,
78 Calc_Velocity = 0b010,
80 };
81
82 public:
85
86 protected:
90 [[nodiscard]] virtual PosVelAccel calcSatelliteData(const InsTime& transTime, Calc calc) const = 0;
91};
92
97inline Orbit::Calc operator|(Orbit::Calc lhs, Orbit::Calc rhs) { return static_cast<Orbit::Calc>(static_cast<int>(lhs) | static_cast<int>(rhs)); }
98
103inline Orbit::Calc operator&(Orbit::Calc lhs, Orbit::Calc rhs) { return static_cast<Orbit::Calc>(static_cast<int>(lhs) & static_cast<int>(rhs)); }
104
105} // namespace NAV
Code operator|(const Code::Enum &lhs, const Code::Enum &rhs)
Allows combining flags of the Code enum.
Code operator&(const Code::Enum &lhs, const Code::Enum &rhs)
Allows combining flags of the Code enum.
Vector space operations.
The class is responsible for all time-related tasks.
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Abstract satellite orbit information.
Definition Orbit.hpp:25
PosVel calcSatellitePosVel(const InsTime &transTime) const
Calculates position and velocity of the satellite at transmission time.
PosVelAccel calcSatellitePosVelAccel(const InsTime &transTime) const
Calculates position, velocity and acceleration of the satellite at transmission time.
Orbit & operator=(const Orbit &)=delete
Copy assignment operator.
Orbit(Orbit &&)=default
Move constructor.
Orbit & operator=(Orbit &&)=delete
Move assignment operator.
virtual ~Orbit()=default
Destructor.
virtual PosVelAccel calcSatelliteData(const InsTime &transTime, Calc calc) const =0
Calculates position, velocity and acceleration of the satellite at transmission time.
Pos calcSatellitePos(const InsTime &transTime) const
Calculates position of the satellite at transmission time.
Orbit()=default
Default Constructor.
virtual double calcSatellitePositionVariance() const =0
Calculates the Variance of the satellite position in [m^2].
friend Orbit::Calc operator|(Orbit::Calc lhs, Orbit::Calc rhs)
Allows construction of Calc objects.
Definition Orbit.hpp:97
Orbit(const Orbit &)=default
Copy constructor.
Calc
Calculation flags.
Definition Orbit.hpp:75
@ Calc_Position
Position calculation flag.
Definition Orbit.hpp:77
@ Calc_None
None.
Definition Orbit.hpp:76
@ Calc_Velocity
Velocity calculation flag.
Definition Orbit.hpp:78
@ Calc_Acceleration
Acceleration calculation flag.
Definition Orbit.hpp:79
friend Orbit::Calc operator&(Orbit::Calc lhs, Orbit::Calc rhs)
Allows construction of Calc objects.
Definition Orbit.hpp:103
Satellite Position, Velocity and Acceleration.
Definition Orbit.hpp:40
Eigen::Vector3d e_accel
The WGS84 ECEF acceleration of the satellite at transmit time of the signal, in ECEF axes at the time...
Definition Orbit.hpp:43
Eigen::Vector3d e_vel
The WGS84 ECEF velocity of the satellite at transmit time of the signal, in ECEF axes at the time of ...
Definition Orbit.hpp:42
Eigen::Vector3d e_pos
The WGS84 ECEF position of the satellite at transmit time of the signal, in ECEF axes at the time of ...
Definition Orbit.hpp:41
Satellite Position and Velocity.
Definition Orbit.hpp:34
Eigen::Vector3d e_vel
The WGS84 ECEF velocity of the satellite at transmit time of the signal, in ECEF axes at the time of ...
Definition Orbit.hpp:36
Eigen::Vector3d e_pos
The WGS84 ECEF position of the satellite at transmit time of the signal, in ECEF axes at the time of ...
Definition Orbit.hpp:35
Satellite Position.
Definition Orbit.hpp:29
Eigen::Vector3d e_pos
The WGS84 ECEF position of the satellite at transmit time of the signal, in ECEF axes at the time of ...
Definition Orbit.hpp:30