0.2.0
Loading...
Searching...
No Matches
GPT2Coeffs.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
15
16#pragma once
17
18#include <array>
19
20namespace NAV::internal
21{
22
25{
26 double lat{};
27 double lon{};
28 double p_A0{};
29 double p_A1{};
30 double p_B1{};
31 double p_A2{};
32 double p_B2{};
33 double T_A0{};
34 double T_A1{};
35 double T_B1{};
36 double T_A2{};
37 double T_B2{};
38 double Q_A0{};
39 double Q_A1{};
40 double Q_B1{};
41 double Q_A2{};
42 double Q_B2{};
43 double dT_A0{};
44 double dT_A1{};
45 double dT_B1{};
46 double dT_A2{};
47 double dT_B2{};
48 double undulation{};
49 double Hs{};
50 double h_A0{};
51 double h_A1{};
52 double h_B1{};
53 double h_A2{};
54 double h_B2{};
55 double w_A0{};
56 double w_A1{};
57 double w_B1{};
58 double w_A2{};
59 double w_B2{};
60 double la_A0{};
61 double la_A1{};
62 double la_B1{};
63 double la_A2{};
64 double la_B2{};
65 double Tm_A0{};
66 double Tm_A1{};
67 double Tm_B1{};
68 double Tm_A2{};
69 double Tm_B2{};
70};
71
73extern std::array<GPT2Data, 64800> GPT2_grid;
74
75} // namespace NAV::internal
EGM96 coefficients.
Definition GMFCoeffs.hpp:21
std::array< GPT2Data, 64800 > GPT2_grid
GPT2 grid.
Parameters of the GP2 grid in in 1 degree x 1 degree resolution.
Definition GPT2Coeffs.hpp:25
double p_A1
pressure: cosine amplitude for the annual variation
Definition GPT2Coeffs.hpp:29
double Q_A2
specific humidity: cosine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:41
double w_B2
wet mapping function coefficient: sine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:59
double w_A2
wet mapping function coefficient: cosine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:58
double Hs
orthometric grid height in m
Definition GPT2Coeffs.hpp:49
double dT_B1
temperature lapse rate: sine amplitude for the annual variation
Definition GPT2Coeffs.hpp:45
double lon
longitude
Definition GPT2Coeffs.hpp:27
double w_A0
wet mapping function coefficient: mean value
Definition GPT2Coeffs.hpp:55
double Tm_A0
weighted mean temperature: mean value
Definition GPT2Coeffs.hpp:65
double h_A2
hydrostatic mapping function coefficient: cosine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:53
double dT_A0
temperature lapse rate: mean value
Definition GPT2Coeffs.hpp:43
double p_B1
pressure: sine amplitude for the annual variation
Definition GPT2Coeffs.hpp:30
double dT_A2
temperature lapse rate: cosine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:46
double dT_B2
temperature lapse rate: sine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:47
double lat
latitude
Definition GPT2Coeffs.hpp:26
double h_B1
hydrostatic mapping function coefficient: sine amplitude for the annual variation
Definition GPT2Coeffs.hpp:52
double Q_A1
specific humidity: cosine amplitude for the annual variation
Definition GPT2Coeffs.hpp:39
double T_A1
temperature: cosine amplitude for the annual variation
Definition GPT2Coeffs.hpp:34
double la_B2
water vapour decrease factor: sine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:64
double Tm_B2
weighted mean temperature: sine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:69
double Tm_A2
weighted mean temperature: cosine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:68
double Q_A0
specific humidity: mean value
Definition GPT2Coeffs.hpp:38
double h_A1
hydrostatic mapping function coefficient: cosine amplitude for the annual variation
Definition GPT2Coeffs.hpp:51
double la_B1
water vapour decrease factor: sine amplitude for the annual variation
Definition GPT2Coeffs.hpp:62
double w_A1
wet mapping function coefficient: cosine amplitude for the annual variation
Definition GPT2Coeffs.hpp:56
double p_A0
pressure: mean value
Definition GPT2Coeffs.hpp:28
double h_A0
hydrostatic mapping function coefficient: mean value
Definition GPT2Coeffs.hpp:50
double T_B2
temperature: sine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:37
double Q_B2
specific humidity: sine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:42
double p_A2
pressure: cosine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:31
double T_A2
temperature: cosine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:36
double dT_A1
temperature lapse rate: cosine amplitude for the annual variation
Definition GPT2Coeffs.hpp:44
double la_A1
water vapour decrease factor: cosine amplitude for the annual variation
Definition GPT2Coeffs.hpp:61
double la_A2
water vapour decrease factor: cosine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:63
double T_B1
temperature: sine amplitude for the annual variation
Definition GPT2Coeffs.hpp:35
double Tm_A1
weighted mean temperature: cosine amplitude for the annual variation
Definition GPT2Coeffs.hpp:66
double Q_B1
specific humidity: sine amplitude for the annual variation
Definition GPT2Coeffs.hpp:40
double T_A0
temperature: mean value
Definition GPT2Coeffs.hpp:33
double p_B2
pressure: sine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:32
double w_B1
wet mapping function coefficient: sine amplitude for the annual variation
Definition GPT2Coeffs.hpp:57
double la_A0
water vapour decrease factor: mean value
Definition GPT2Coeffs.hpp:60
double h_B2
hydrostatic mapping function coefficient: sine amplitude for the semi-annual variation
Definition GPT2Coeffs.hpp:54
double undulation
geoid undulation in m
Definition GPT2Coeffs.hpp:48
double Tm_B1
weighted mean temperature: sine amplitude for the annual variation
Definition GPT2Coeffs.hpp:67