Enroute Flight Navigation
A navigation app for VFR pilots
Density.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
35class Density {
36 Q_GADGET
37 QML_VALUE_TYPE(density)
38
39public:
46 static constexpr auto fromKgPerCubeMeter(double densityInKgPerCubeMeter) -> Density
47 {
48 Density result;
49 result.m_densityInKgPerCubeMeter = densityInKgPerCubeMeter;
50 return result;
51 }
52
53
58 [[nodiscard]] Q_INVOKABLE bool isFinite() const
59 {
60 return std::isfinite(m_densityInKgPerCubeMeter);
61 }
62
69 [[nodiscard]] Q_INVOKABLE std::partial_ordering operator<=>(const Units::Density& rhs) const = default;
70
75 [[nodiscard]] Q_INVOKABLE double toKgPerCubeMeter() const
76 {
77 return m_densityInKgPerCubeMeter;
78 }
79
80
81private:
82 // Density in kg per m³
83 double m_densityInKgPerCubeMeter{ NAN };
84};
85} // namespace Units
86
87
88// Declare meta types
89Q_DECLARE_METATYPE(Units::Density)
Convenience class for density computations.
Definition Density.h:35
Q_INVOKABLE std::partial_ordering operator<=>(const Units::Density &rhs) const =default
Comparison.
static constexpr auto fromKgPerCubeMeter(double densityInKgPerCubeMeter) -> Density
Constructs a density.
Definition Density.h:46
Q_INVOKABLE bool isFinite() const
Checks if the Density is valid.
Definition Density.h:58
Q_INVOKABLE double toKgPerCubeMeter() const
Convert to density to kg per m³degree Kelvin.
Definition Density.h:75
Conversion between units used in aviation.
Definition Angle.h:34