Enroute Flight Navigation
A navigation app for VFR pilots
Volume.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 <QObject>
24#include <QQmlEngine>
25#include <QtMath>
26
27
28namespace Units {
29
35 class Volume {
36 Q_GADGET
37 QML_VALUE_TYPE(volume)
38
39 public:
46 static constexpr auto fromL(double volumeInL) -> Volume
47 {
48 Volume result;
49 result.m_volumeInL = volumeInL;
50 return result;
51 }
52
59 static constexpr auto fromGAL(double volumeInGAL) -> Volume
60 {
61 Volume result;
62 result.m_volumeInL = LitersPerGallon*volumeInGAL;
63 return result;
64 }
65
70 [[nodiscard]] Q_INVOKABLE bool isFinite() const
71 {
72 return std::isfinite(m_volumeInL);
73 }
74
82 {
83 m_volumeInL += other.m_volumeInL;
84 return *this;
85 }
86
93 [[nodiscard]] Q_INVOKABLE std::partial_ordering operator<=>(const Units::Volume& rhs) const = default;
94
99 [[nodiscard]] Q_INVOKABLE double toL() const
100 {
101 return m_volumeInL;
102 }
103
108 [[nodiscard]] Q_INVOKABLE double toGAL() const
109 {
110 return m_volumeInL/LitersPerGallon;
111 }
112
113 private:
114 static constexpr double LitersPerGallon = 4.54609;
115
116 // Speed in meters per second
117 double m_volumeInL{ NAN };
118 };
119} // namespace Units
120
121
122// Declare meta types
123Q_DECLARE_METATYPE(Units::Volume)
Convenience class for volume computations.
Definition Volume.h:35
Q_INVOKABLE bool isFinite() const
Checks if the volume is valid.
Definition Volume.h:70
Q_INVOKABLE std::partial_ordering operator<=>(const Units::Volume &rhs) const =default
Comparison.
Q_INVOKABLE Units::Volume & operator+=(Units::Volume other)
Add volume to this volume.
Definition Volume.h:81
Q_INVOKABLE double toGAL() const
Convert to gallons.
Definition Volume.h:108
Q_INVOKABLE double toL() const
Convert to liters.
Definition Volume.h:99
static constexpr auto fromL(double volumeInL) -> Volume
Constructs a volume.
Definition Volume.h:46
static constexpr auto fromGAL(double volumeInGAL) -> Volume
Constructs a volume.
Definition Volume.h:59
Conversion between units used in aviation.
Definition Angle.h:34