0.3.0
Loading...
Searching...
No Matches
Functions.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 <cmath>
17#include <Eigen/Core>
20
21namespace NAV
22{
23
30template<typename DerivedA, typename DerivedB>
31[[nodiscard]] Eigen::Vector3<typename DerivedA::Scalar> e_calcLineOfSightUnitVector(const Eigen::MatrixBase<DerivedA>& e_posAnt,
32 const Eigen::MatrixBase<DerivedB>& e_posSat)
33{
34 return (e_posSat - e_posAnt) / (e_posSat - e_posAnt).norm();
35}
36
42template<typename Derived>
43[[nodiscard]] typename Derived::Scalar calcSatElevation(const Eigen::MatrixBase<Derived>& n_lineOfSightUnitVector)
44{
45 return -asin(n_lineOfSightUnitVector(2));
46}
47
53template<typename Derived>
54[[nodiscard]] typename Derived::Scalar calcSatAzimuth(const Eigen::MatrixBase<Derived>& n_lineOfSightUnitVector)
55{
56 return atan2(n_lineOfSightUnitVector(1), n_lineOfSightUnitVector(0));
57}
58
65template<typename DerivedA, typename DerivedB>
66[[nodiscard]] typename DerivedA::Scalar calcSagnacCorrection(const Eigen::MatrixBase<DerivedA>& e_posAnt,
67 const Eigen::MatrixBase<DerivedB>& e_satPos)
68{
69 return 1.0 / InsConst::C * (e_posAnt - e_satPos).dot(InsConst::e_omega_ie.cross(e_posAnt));
70}
71
80template<typename DerivedA, typename DerivedB, typename DerivedC, typename DerivedD>
81[[nodiscard]] typename DerivedA::Scalar calcSagnacRateCorrection(const Eigen::MatrixBase<DerivedA>& e_recvPos,
82 const Eigen::MatrixBase<DerivedB>& e_satPos,
83 const Eigen::MatrixBase<DerivedC>& e_recvVel,
84 const Eigen::MatrixBase<DerivedD>& e_satVel)
85{
87 * (e_satVel.y() * e_recvPos.x() + e_satPos.y() * e_recvVel.x()
88 - e_satVel.x() * e_recvPos.y() - e_satPos.x() * e_recvVel.y());
89}
90
98[[nodiscard]] double doppler2rangeRate(double doppler, Frequency freq, int8_t num);
99
107[[nodiscard]] double rangeRate2doppler(double rangeRate, Frequency freq, int8_t num);
108
121[[nodiscard]] double ratioFreqSquared(Frequency f1, Frequency f2, int8_t num1, int8_t num2);
122
128[[nodiscard]] uint8_t galSisaVal2Idx(double val);
129
135[[nodiscard]] double galSisaIdx2Val(uint8_t idx);
136
142[[nodiscard]] uint8_t gpsUraVal2Idx(double val);
143
149[[nodiscard]] double gpsUraIdx2Val(uint8_t idx);
150
151} // namespace NAV
Holds all Constants.
Frequency definition for different satellite systems.
double galSisaIdx2Val(uint8_t idx)
Converts a GALILEO SISA (Signal in space accuracy) index to it's value.
double ratioFreqSquared(Frequency f1, Frequency f2, int8_t num1, int8_t num2)
Calculates the ration of the frequencies squared γ
double gpsUraIdx2Val(uint8_t idx)
Converts a GPS URA (user range accuracy) index to it's value.
Derived::Scalar calcSatElevation(const Eigen::MatrixBase< Derived > &n_lineOfSightUnitVector)
Calculates the elevation of the satellite from the antenna.
Definition Functions.hpp:43
DerivedA::Scalar calcSagnacCorrection(const Eigen::MatrixBase< DerivedA > &e_posAnt, const Eigen::MatrixBase< DerivedB > &e_satPos)
Calculates the Earth rotation/Sagnac correction.
Definition Functions.hpp:66
uint8_t galSisaVal2Idx(double val)
Converts a GALILEO SISA (Signal in space accuracy) value to it's index.
DerivedA::Scalar calcSagnacRateCorrection(const Eigen::MatrixBase< DerivedA > &e_recvPos, const Eigen::MatrixBase< DerivedB > &e_satPos, const Eigen::MatrixBase< DerivedC > &e_recvVel, const Eigen::MatrixBase< DerivedD > &e_satVel)
Calculates the Range-rate Earth rotation/Sagnac correction.
Definition Functions.hpp:81
Derived::Scalar calcSatAzimuth(const Eigen::MatrixBase< Derived > &n_lineOfSightUnitVector)
Calculates the azimuth of the satellite from the antenna.
Definition Functions.hpp:54
uint8_t gpsUraVal2Idx(double val)
Converts a GPS URA (user range accuracy) value to it's index.
double doppler2rangeRate(double doppler, Frequency freq, int8_t num)
Transforms a doppler-shift into a range-rate.
double rangeRate2doppler(double rangeRate, Frequency freq, int8_t num)
Transforms a range-rate into a doppler-shift.
Eigen::Vector3< typename DerivedA::Scalar > e_calcLineOfSightUnitVector(const Eigen::MatrixBase< DerivedA > &e_posAnt, const Eigen::MatrixBase< DerivedB > &e_posSat)
Calculates the line-of-sight unit vector from the user antenna to the satellite.
Definition Functions.hpp:31
Frequency definition for different satellite systems.
Definition Frequency.hpp:59
static constexpr double C
Speed of light [m/s].
Definition Constants.hpp:34
static constexpr double omega_ie
Nominal mean angular velocity of the Earth in [rad/s].
Definition Constants.hpp:217
static const Eigen::Vector3< double > e_omega_ie
ω_ie_e = ω_ie_i Nominal mean angular velocity of the Earth in [rad/s], in earth coordinates
Definition Constants.hpp:222