0.4.1
Loading...
Searching...
No Matches
GMFCoeffs.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
9/// @file GMFCoeffs.hpp
10/// @brief GMF Coefficients
11/// @author T. Topp (topp@ins.uni-stuttgart.de)
12/// @date 2024-04-21
13/// @note See \cite Böhm2006a Böhm2006: Global Mapping Function (GMF): A new empirical mapping function based on numerical weather model data
14/// @note See https://vmf.geo.tuwien.ac.at/codes/ for code sources in matlab.
15
16#pragma once
17
18#include <array>
19
20namespace NAV::internal::GMF
21{
22
23/// @brief Hydrostatic coefficient 'a' mean values
24extern std::array<double, 55> ah_mean;
25/// @brief Hydrostatic coefficient 'b' mean values
26extern std::array<double, 55> bh_mean;
27/// @brief Hydrostatic coefficient 'a' amplitude
28extern std::array<double, 55> ah_amp;
29/// @brief Hydrostatic coefficient 'b' amplitude
30extern std::array<double, 55> bh_amp;
31
32/// @brief Wet coefficient 'a' mean values
33extern std::array<double, 55> aw_mean;
34/// @brief Wet coefficient 'b' mean values
35extern std::array<double, 55> bw_mean;
36/// @brief Wet coefficient 'a' amplitude
37extern std::array<double, 55> aw_amp;
38/// @brief Wet coefficient 'b' amplitude
39extern std::array<double, 55> bw_amp;
40
41} // namespace NAV::internal::GMF
std::array< double, 55 > ah_mean
Hydrostatic coefficient 'a' mean values.
Definition GMFCoeffs.cpp:21
std::array< double, 55 > bh_mean
Hydrostatic coefficient 'b' mean values.
Definition GMFCoeffs.cpp:35
std::array< double, 55 > ah_amp
Hydrostatic coefficient 'a' amplitude.
Definition GMFCoeffs.cpp:49
std::array< double, 55 > bw_mean
Wet coefficient 'b' mean values.
Definition GMFCoeffs.cpp:91
std::array< double, 55 > aw_amp
Wet coefficient 'a' amplitude.
std::array< double, 55 > bh_amp
Hydrostatic coefficient 'b' amplitude.
Definition GMFCoeffs.cpp:63
std::array< double, 55 > aw_mean
Wet coefficient 'a' mean values.
Definition GMFCoeffs.cpp:77
std::array< double, 55 > bw_amp
Wet coefficient 'b' amplitude.