Enroute Flight Navigation
A navigation app for VFR pilots
Pressure.h
1/***************************************************************************
2 * Copyright (C) 2023 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QObject>
24#include <QQmlEngine>
25#include <QtMath>
26
27
28namespace Units {
29
35 class Pressure {
36 Q_GADGET
37 QML_VALUE_TYPE(pressure)
38
39 public:
46 static constexpr auto fromHPa(double pressureInHPa) -> Pressure
47 {
48 Pressure result;
49 result.m_pressureInPa = 100.0*pressureInHPa;
50 return result;
51 }
52
59 static constexpr auto fromInHg(double pressureInInHg) -> Pressure
60 {
61 Pressure result;
62 result.m_pressureInPa = PascalPerInHg*pressureInInHg;
63 return result;
64 }
65
72 static constexpr auto fromPa(double pressureInPa) -> Pressure
73 {
74 Pressure result;
75 result.m_pressureInPa = pressureInPa;
76 return result;
77 }
78
83 [[nodiscard]] Q_INVOKABLE bool isFinite() const
84 {
85 return std::isfinite(m_pressureInPa);
86 }
87
95 {
96 m_pressureInPa += other.m_pressureInPa;
97 return *this;
98 }
99
106 [[nodiscard]] Q_INVOKABLE std::partial_ordering operator<=>(const Units::Pressure& rhs) const = default;
107
112 [[nodiscard]] Q_INVOKABLE double toHPa() const
113 {
114 return m_pressureInPa/100.0;
115 }
116
121 [[nodiscard]] Q_INVOKABLE double toInHg() const
122 {
123 return m_pressureInPa/PascalPerInHg;
124 }
125
130 [[nodiscard]] Q_INVOKABLE double toPa() const
131 {
132 return m_pressureInPa;
133 }
134
135 private:
136 static constexpr double PascalPerInHg = 3386.39;
137
138 // Pressure in Pascal
139 double m_pressureInPa{ NAN };
140 };
141} // namespace Units
142
143
152auto operator<<(QDataStream &out, Units::Pressure pressure) -> QDataStream &;
153
154
163auto operator>>(QDataStream &in, Units::Pressure &pressure) -> QDataStream &;
164
165
166// Declare meta types
167Q_DECLARE_METATYPE(Units::Pressure)
Convenience class for pressure computations.
Definition Pressure.h:35
Q_INVOKABLE double toPa() const
Convert to Pascal.
Definition Pressure.h:130
Q_INVOKABLE Units::Pressure & operator+=(Units::Pressure other)
Add pressure to this pressure.
Definition Pressure.h:94
Q_INVOKABLE double toInHg() const
Convert to Inches of Mercury.
Definition Pressure.h:121
static constexpr auto fromPa(double pressureInPa) -> Pressure
Constructs a pressure.
Definition Pressure.h:72
Q_INVOKABLE std::partial_ordering operator<=>(const Units::Pressure &rhs) const =default
Comparison.
static constexpr auto fromInHg(double pressureInInHg) -> Pressure
Constructs a pressure.
Definition Pressure.h:59
static constexpr auto fromHPa(double pressureInHPa) -> Pressure
Constructs a pressure.
Definition Pressure.h:46
Q_INVOKABLE double toHPa() const
Convert to Hectopascal.
Definition Pressure.h:112
Q_INVOKABLE bool isFinite() const
Checks if the pressure is valid.
Definition Pressure.h:83
Conversion between units used in aviation.
Definition Angle.h:34