Enroute Flight Navigation
A navigation app for VFR pilots
Speed.h
1/***************************************************************************
2 * Copyright (C) 2019-2021 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 <QDataStream>
24#include <QObject>
25#include <QQmlEngine>
26#include <QtMath>
27
28
29namespace Units {
30
36 class Speed {
37 Q_GADGET
38 QML_VALUE_TYPE(speed)
39
40 public:
47 Q_INVOKABLE static constexpr Units::Speed fromFPM(double speedInFPM)
48 {
49 Speed result;
50 result._speedInMPS = speedInFPM/FPM_per_MPS;
51 return result;
52 }
53
60 Q_INVOKABLE static constexpr Units::Speed fromMPS(double speedInMPS)
61 {
62 Speed result;
63 result._speedInMPS = speedInMPS;
64 return result;
65 }
66
67
74 Q_INVOKABLE static constexpr Units::Speed fromMPH(double speedInMPH)
75 {
76 Speed result;
77 result._speedInMPS = speedInMPH*MPS_per_MPH;
78 return result;
79 }
80
87 Q_INVOKABLE static constexpr Units::Speed fromKN(double speedInKT)
88 {
89 Speed result;
90 result._speedInMPS = speedInKT / KN_per_MPS;
91 return result;
92 }
93
100 Q_INVOKABLE static constexpr Units::Speed fromKMH(double speedInKMH)
101 {
102 Speed result;
103 result._speedInMPS = speedInKMH / KMH_per_MPS;
104 return result;
105 }
106
111 [[nodiscard]] Q_INVOKABLE bool isFinite() const
112 {
113 return std::isfinite(_speedInMPS);
114 }
115
120 [[nodiscard]] Q_INVOKABLE bool isNegative() const
121 {
122 return _speedInMPS < 0.0;
123 }
124
131 Q_INVOKABLE double operator/(Units::Speed rhs) const
132 {
133 if (qFuzzyIsNull(rhs._speedInMPS)) {
134 return qQNaN();
135}
136 return _speedInMPS / rhs._speedInMPS;
137 }
138
145 Q_INVOKABLE Units::Speed operator+(Units::Speed rhs) const
146 {
147 return Units::Speed::fromMPS(_speedInMPS + rhs._speedInMPS);
148 }
149
156 Q_INVOKABLE Units::Speed operator-(Units::Speed rhs) const
157 {
158 return Units::Speed::fromMPS(_speedInMPS - rhs._speedInMPS);
159 }
160
167 [[nodiscard]] Q_INVOKABLE std::partial_ordering operator<=>(const Units::Speed& rhs) const = default;
168
173 [[nodiscard]] Q_INVOKABLE double toFPM() const
174 {
175 return _speedInMPS * FPM_per_MPS;
176 }
177
182 [[nodiscard]] Q_INVOKABLE double toMPS() const
183 {
184 return _speedInMPS;
185 }
186
191 [[nodiscard]] Q_INVOKABLE double toMPH() const
192 {
193 return _speedInMPS/MPS_per_MPH;
194 }
195
200 [[nodiscard]] Q_INVOKABLE double toKN() const
201 {
202 return _speedInMPS * KN_per_MPS;
203 }
204
209 [[nodiscard]] Q_INVOKABLE double toKMH() const
210 {
211 return _speedInMPS * KMH_per_MPS;
212 }
213
215 static constexpr double FPM_per_MPS = 196.85039370079;
216
218 static constexpr double MPS_per_MPH = 0.44704;
219
221 static constexpr double KMH_per_MPS = 3.6;
222
224 static constexpr double KN_per_MPS = 1.943844;
225
226
227
229 static constexpr double KMH_per_KT = KMH_per_MPS / KN_per_MPS;
230
231 private:
232 // Speed in meters per second
233 double _speedInMPS{ NAN };
234 };
235
236} // namespace Units
237
238
239//
240// Operations
241//
242
251inline auto operator*(double lhs, Units::Speed rhs ) -> Units::Speed
252{
253 return Units::Speed::fromMPS( lhs*rhs.toMPS() );
254}
255
256
265auto operator<<(QDataStream &out, Units::Speed speed) -> QDataStream &;
266
267
276auto operator>>(QDataStream &in, Units::Speed &speed) -> QDataStream &;
277
278
279// Declare meta types
280Q_DECLARE_METATYPE(Units::Speed)
Convenience class for speed computations.
Definition Speed.h:36
static constexpr double MPS_per_MPH
Unitless constant: one mile per hour / meters per second.
Definition Speed.h:218
static Q_INVOKABLE constexpr Units::Speed fromMPS(double speedInMPS)
Constructs a speed.
Definition Speed.h:60
static constexpr double KMH_per_KT
Unitless constant: one km/h / knot.
Definition Speed.h:229
static constexpr double KN_per_MPS
Unitless constant: one knot / meters per second.
Definition Speed.h:224
static constexpr double FPM_per_MPS
Unitless constant: one feet per minute / meters per second.
Definition Speed.h:215
Q_INVOKABLE bool isFinite() const
Checks if the speed is valid.
Definition Speed.h:111
Q_INVOKABLE double toFPM() const
Convert to feet per minute.
Definition Speed.h:173
static Q_INVOKABLE constexpr Units::Speed fromKMH(double speedInKMH)
Constructs a speed.
Definition Speed.h:100
static Q_INVOKABLE constexpr Units::Speed fromMPH(double speedInMPH)
Constructs a speed.
Definition Speed.h:74
Q_INVOKABLE std::partial_ordering operator<=>(const Units::Speed &rhs) const =default
Comparison.
static constexpr double KMH_per_MPS
Unitless constant: one km/h / meters per second.
Definition Speed.h:221
Q_INVOKABLE double toMPS() const
Convert to meters per second.
Definition Speed.h:182
Q_INVOKABLE double toKN() const
Convert to knots.
Definition Speed.h:200
static Q_INVOKABLE constexpr Units::Speed fromFPM(double speedInFPM)
Constructs a speed.
Definition Speed.h:47
Q_INVOKABLE Units::Speed operator-(Units::Speed rhs) const
Difference of two speeds.
Definition Speed.h:156
Q_INVOKABLE bool isNegative() const
Checks if the speed is negative.
Definition Speed.h:120
static Q_INVOKABLE constexpr Units::Speed fromKN(double speedInKT)
Constructs a speed.
Definition Speed.h:87
Q_INVOKABLE double toKMH() const
Convert to km/h.
Definition Speed.h:209
Q_INVOKABLE Units::Speed operator+(Units::Speed rhs) const
Adds two speeds.
Definition Speed.h:145
Q_INVOKABLE double operator/(Units::Speed rhs) const
Divides two speeds.
Definition Speed.h:131
Q_INVOKABLE double toMPH() const
Convert to meters per second.
Definition Speed.h:191
Conversion between units used in aviation.
Definition Angle.h:34