30template<
typename DerivedA,
typename DerivedB>
32 const Eigen::MatrixBase<DerivedB>& e_posSat)
34 return (e_posSat - e_posAnt) / (e_posSat - e_posAnt).norm();
42template<
typename Derived>
43[[nodiscard]]
typename Derived::Scalar
calcSatElevation(
const Eigen::MatrixBase<Derived>& n_lineOfSightUnitVector)
45 return -asin(n_lineOfSightUnitVector(2));
53template<
typename Derived>
54[[nodiscard]]
typename Derived::Scalar
calcSatAzimuth(
const Eigen::MatrixBase<Derived>& n_lineOfSightUnitVector)
56 return atan2(n_lineOfSightUnitVector(1), n_lineOfSightUnitVector(0));
65template<
typename DerivedA,
typename DerivedB>
67 const Eigen::MatrixBase<DerivedB>& e_satPos)
80template<
typename DerivedA,
typename DerivedB,
typename DerivedC,
typename DerivedD>
82 const Eigen::MatrixBase<DerivedB>& e_satPos,
83 const Eigen::MatrixBase<DerivedC>& e_recvVel,
84 const Eigen::MatrixBase<DerivedD>& e_satVel)
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());
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