0.3.0
Loading...
Searching...
No Matches
Troposphere.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 <array>
18#include <Eigen/Core>
19#include <fmt/format.h>
20
21#include "ZenithDelay.hpp"
27
28namespace NAV
29{
30
38
40enum class TroposphereModel : uint8_t
41{
42 None,
44 GPT2,
45 GPT3,
46 COUNT,
47};
48
50enum class MappingFunction : uint8_t
51{
52 None,
53 Cosecant,
54 GMF,
55 NMF,
56 VMF_GPT2,
57 VMF_GPT3,
58 COUNT,
59};
60
63{
65 std::pair<TroposphereModel, AtmosphereModels> zhdModel = std::make_pair(TroposphereModel::Saastamoinen, AtmosphereModels{});
67 std::pair<TroposphereModel, AtmosphereModels> zwdModel = std::make_pair(TroposphereModel::Saastamoinen, AtmosphereModels{});
68
70 std::pair<MappingFunction, AtmosphereModels> zhdMappingFunction = std::make_pair(MappingFunction::GMF, AtmosphereModels{});
72 std::pair<MappingFunction, AtmosphereModels> zwdMappingFunction = std::make_pair(MappingFunction::GMF, AtmosphereModels{});
73};
74
78const char* to_string(TroposphereModel troposphereZhdModel);
79
83const char* to_string(MappingFunction mappingFunction);
84
89bool ComboTroposphereModel(const char* label, TroposphereModelSelection& troposphereModelSelection, float width = 0.0F);
90
99ZenithDelay calcTroposphericDelayAndMapping(const InsTime& insTime, const Eigen::Vector3d& lla_pos, double elevation, double azimuth,
100 const TroposphereModelSelection& troposphereModels, const std::string& nameId);
101
106double tropoErrorVar(double dpsr_T, double elevation);
107
111void to_json(json& j, const AtmosphereModels& obj);
115void from_json(const json& j, AtmosphereModels& obj);
116
120void to_json(json& j, const TroposphereModelSelection& obj);
124void from_json(const json& j, TroposphereModelSelection& obj);
125
126} // namespace NAV
127
128#ifndef DOXYGEN_IGNORE
129
131template<>
132struct fmt::formatter<NAV::TroposphereModel> : fmt::formatter<std::string>
133{
138 template<typename FormatContext>
139 auto format(const NAV::TroposphereModel& data, FormatContext& ctx) const
140 {
141 return fmt::formatter<std::string>::format(NAV::to_string(data), ctx);
142 }
143};
144
146template<>
147struct fmt::formatter<NAV::MappingFunction> : fmt::formatter<std::string>
148{
153 template<typename FormatContext>
154 auto format(const NAV::MappingFunction& data, FormatContext& ctx) const
155 {
156 return fmt::formatter<std::string>::format(NAV::to_string(data), ctx);
157 }
158};
159
160#endif
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
@ None
None.
Definition GlobalActions.hpp:21
The class is responsible for all time-related tasks.
@ COUNT
Amount of items in the enum.
const char * to_string(gui::widgets::PositionWithFrame::ReferenceFrame refFrame)
Converts the enum to a string.
Pressure calculation formulas.
PressureModel
Available pressure Models.
Definition Pressure.hpp:24
Temperature calculation formulas.
bool ComboTroposphereModel(const char *label, TroposphereModelSelection &troposphereModelSelection, float width=0.0F)
Shows a ComboBox and button for advanced configuration to select the troposphere models.
MappingFunction
Available Mapping Functions.
Definition Troposphere.hpp:51
@ NMF
Niell Mapping Function (NMF)
@ GMF
Global Mapping Function (GMF)
@ Cosecant
Cosecant of elevation.
@ VMF_GPT2
Vienna Mapping Function based on the GPT2 grid.
@ VMF_GPT3
Vienna Mapping Function based on the GPT3 grid.
double tropoErrorVar(double dpsr_T, double elevation)
Calculates the tropospheric error variance.
ZenithDelay calcTroposphericDelayAndMapping(const InsTime &insTime, const Eigen::Vector3d &lla_pos, double elevation, double azimuth, const TroposphereModelSelection &troposphereModels, const std::string &nameId)
Calculates the tropospheric zenith hydrostatic and wet delays and corresponding mapping factors.
TroposphereModel
Available Troposphere delay models.
Definition Troposphere.hpp:41
@ Saastamoinen
Saastamoinen model.
Gridded Vienna Mapping Function.
Water vapor calculation.
WaterVaporModel
Available Water vapor Models.
Definition WaterVapor.hpp:24
Zenith hydrostatic and wet delay.
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Temperature Model parameters.
Definition Temperature.hpp:26
@ ISA
ICAO Standard Atmosphere.
Definition Temperature.hpp:33
Atmospheric model selection for temperature, pressure and water vapor.
Definition Troposphere.hpp:33
TemperatureModel temperatureModel
Temperature model.
Definition Troposphere.hpp:35
PressureModel pressureModel
Pressure model.
Definition Troposphere.hpp:34
WaterVaporModel waterVaporModel
WaterVapor model.
Definition Troposphere.hpp:36
Collection of troposphere model selections.
Definition Troposphere.hpp:63
std::pair< MappingFunction, AtmosphereModels > zwdMappingFunction
Mapping function ZWD, atmosphere models.
Definition Troposphere.hpp:72
std::pair< TroposphereModel, AtmosphereModels > zwdModel
Troposphere ZWD model, atmosphere models.
Definition Troposphere.hpp:67
std::pair< TroposphereModel, AtmosphereModels > zhdModel
Troposphere ZHD model, atmosphere models.
Definition Troposphere.hpp:65
std::pair< MappingFunction, AtmosphereModels > zhdMappingFunction
Mapping function ZHD, atmosphere models.
Definition Troposphere.hpp:70
Zenith delays and mapping factors.
Definition ZenithDelay.hpp:21