Enroute Flight Navigation
A navigation app for VFR pilots
Temperature.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
36 Q_GADGET
37 QML_VALUE_TYPE(temperature)
38
39public:
46 static constexpr auto fromDegreeCelsius(double temperatureInDegreeCelsius) -> Temperature
47 {
48 Temperature result;
49 result.m_temperatureInDegreeKelvin = temperatureInDegreeCelsius+273.15;
50 return result;
51 }
52
59 static constexpr auto fromDegreeFarenheit(double temperatureInDegreeFarenheit) -> Temperature
60 {
61 Temperature result;
62 result.m_temperatureInDegreeKelvin = (temperatureInDegreeFarenheit - 32.0)*5.0/9.0 + 273.15;
63 return result;
64 }
65
72 static constexpr auto fromDegreeKelvin(double temperatureInDegreeKelvin) -> Temperature
73 {
74 Temperature result;
75 result.m_temperatureInDegreeKelvin = temperatureInDegreeKelvin;
76 return result;
77 }
78
83 [[nodiscard]] Q_INVOKABLE bool isFinite() const
84 {
85 return std::isfinite(m_temperatureInDegreeKelvin);
86 }
87
94 [[nodiscard]] Q_INVOKABLE std::partial_ordering operator<=>(const Units::Temperature& rhs) const = default;
95
100 [[nodiscard]] Q_INVOKABLE double toDegreeCelsius() const
101 {
102 return m_temperatureInDegreeKelvin-273.15;
103 }
104
109 [[nodiscard]] Q_INVOKABLE double toDegreeFarenheit() const
110 {
111 return (m_temperatureInDegreeKelvin - 273.15)*9.0/5.0 + 32.0;
112 }
113
118 [[nodiscard]] Q_INVOKABLE double toDegreeKelvin() const
119 {
120 return m_temperatureInDegreeKelvin;
121 }
122
123
124private:
125 // temperature in Pascal
126 double m_temperatureInDegreeKelvin{ NAN };
127};
128} // namespace Units
129
130auto operator<<(QDataStream &out, Units::Temperature t) -> QDataStream &;
131auto operator>>(QDataStream &in, Units::Temperature &t) -> QDataStream &;
132
133// Declare meta types
134Q_DECLARE_METATYPE(Units::Temperature)
Convenience class for temperature computations.
Definition Temperature.h:35
Q_INVOKABLE bool isFinite() const
Checks if the temperature is valid.
Definition Temperature.h:83
Q_INVOKABLE double toDegreeKelvin() const
Convert to degree Kelvin.
Q_INVOKABLE std::partial_ordering operator<=>(const Units::Temperature &rhs) const =default
Comparison.
static constexpr auto fromDegreeCelsius(double temperatureInDegreeCelsius) -> Temperature
Constructs a temperature.
Definition Temperature.h:46
static constexpr auto fromDegreeKelvin(double temperatureInDegreeKelvin) -> Temperature
Constructs a temperature.
Definition Temperature.h:72
static constexpr auto fromDegreeFarenheit(double temperatureInDegreeFarenheit) -> Temperature
Constructs a temperature.
Definition Temperature.h:59
Q_INVOKABLE double toDegreeCelsius() const
Convert to degree Celsius.
Q_INVOKABLE double toDegreeFarenheit() const
Convert to degree Farenheit.
Conversion between units used in aviation.
Definition Angle.h:34