Enroute Flight Navigation
A navigation app for VFR pilots
VolumeFlow.h
1/***************************************************************************
2 * Copyright (C) 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 <QObject>
24#include <QQmlEngine>
25#include <QtMath>
26
27
28namespace Units {
29
35 class VolumeFlow {
36 Q_GADGET
37 QML_VALUE_TYPE(volumeFlow)
38
39 public:
46 Q_INVOKABLE static constexpr Units::VolumeFlow fromLPH(double volumeFlowInLPH)
47 {
48 VolumeFlow result;
49 result.m_volumeFlowInLPH = volumeFlowInLPH;
50 return result;
51 }
52
59 Q_INVOKABLE static constexpr Units::VolumeFlow fromGPH(double volumeFlowInGPH)
60 {
61 VolumeFlow result;
62 result.m_volumeFlowInLPH = LitersPerGallon*volumeFlowInGPH;
63 return result;
64 }
65
70 [[nodiscard]] Q_INVOKABLE bool isFinite() const
71 {
72 return std::isfinite(m_volumeFlowInLPH);
73 }
74
81 [[nodiscard]] Q_INVOKABLE std::partial_ordering operator<=>(const Units::VolumeFlow& rhs) const = default;
82
87 [[nodiscard]] Q_INVOKABLE double toLPH() const
88 {
89 return m_volumeFlowInLPH;
90 }
91
96 [[nodiscard]] Q_INVOKABLE double toGPH() const
97 {
98 return m_volumeFlowInLPH/LitersPerGallon;
99 }
100
101 private:
102 static constexpr double LitersPerGallon = 4.54609;
103
104 // Speed in meters per second
105 double m_volumeFlowInLPH{ NAN };
106 };
107} // namespace Units
108
109
110// Declare meta types
111Q_DECLARE_METATYPE(Units::VolumeFlow)
Convenience class for volume flow computations.
Definition VolumeFlow.h:35
static Q_INVOKABLE constexpr Units::VolumeFlow fromGPH(double volumeFlowInGPH)
Constructs a volume flow.
Definition VolumeFlow.h:59
Q_INVOKABLE double toGPH() const
Convert to gallons per hour.
Definition VolumeFlow.h:96
Q_INVOKABLE std::partial_ordering operator<=>(const Units::VolumeFlow &rhs) const =default
Comparison.
static Q_INVOKABLE constexpr Units::VolumeFlow fromLPH(double volumeFlowInLPH)
Constructs a volume flow.
Definition VolumeFlow.h:46
Q_INVOKABLE double toLPH() const
Convert to liters per hour.
Definition VolumeFlow.h:87
Q_INVOKABLE bool isFinite() const
Checks if the volume is valid.
Definition VolumeFlow.h:70
Conversion between units used in aviation.
Definition Angle.h:34