0.3.0
Loading...
Searching...
No Matches
Pressure.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 <cstdint>
17#include <fmt/format.h>
18
19namespace NAV
20{
21
23enum class PressureModel : uint8_t
24{
25 None,
26 ConstNN,
27 ISA,
28 GPT2,
29 GPT3,
30 COUNT,
31};
32
36const char* to_string(PressureModel pressureModel);
37
41bool ComboPressureModel(const char* label, PressureModel& pressureModel);
42
47[[nodiscard]] double calcTotalPressure(double altitudeMSL, PressureModel pressureModel);
48
49} // namespace NAV
50
51#ifndef DOXYGEN_IGNORE
52
54template<>
55struct fmt::formatter<NAV::PressureModel> : fmt::formatter<std::string>
56{
61 template<typename FormatContext>
62 auto format(const NAV::PressureModel& data, FormatContext& ctx) const
63 {
64 return fmt::formatter<std::string>::format(NAV::to_string(data), ctx);
65 }
66};
67
68#endif
@ None
None.
Definition GlobalActions.hpp:21
@ COUNT
Amount of items in the enum.
const char * to_string(gui::widgets::PositionWithFrame::ReferenceFrame refFrame)
Converts the enum to a string.
PressureModel
Available pressure Models.
Definition Pressure.hpp:24
@ ConstNN
Constant value at zero altitude.
@ ISA
ICAO Standard Atmosphere.
double calcTotalPressure(double altitudeMSL, PressureModel pressureModel)
Calculates the total pressure.
bool ComboPressureModel(const char *label, PressureModel &pressureModel)
Shows a ComboBox to select the pressure model.