Enroute Flight Navigation
A navigation app for VFR pilots
|
Convenience class for temperature computations. More...
#include <Temperature.h>
Public Member Functions | |
Q_INVOKABLE bool | isFinite () const |
Checks if the temperature is valid. | |
Q_INVOKABLE std::partial_ordering | operator<=> (const Units::Temperature &rhs) const =default |
Comparison. | |
Q_INVOKABLE double | toDegreeCelsius () const |
Convert to degree Celsius. | |
Q_INVOKABLE double | toDegreeFarenheit () const |
Convert to degree Farenheit. | |
Q_INVOKABLE double | toDegreeKelvin () const |
Convert to degree Kelvin. | |
Static Public Member Functions | |
static constexpr auto | fromDegreeCelsius (double temperatureInDegreeCelsius) -> Temperature |
Constructs a temperature. | |
static constexpr auto | fromDegreeFarenheit (double temperatureInDegreeFarenheit) -> Temperature |
Constructs a temperature. | |
static constexpr auto | fromDegreeKelvin (double temperatureInDegreeKelvin) -> Temperature |
Constructs a temperature. | |
Convenience class for temperature computations.
This extremely simple class allows computation with temperatures, without the need to worry about units. On construction, the temperature is set to NaN.
Definition at line 35 of file Temperature.h.
|
inlinestaticconstexpr |
Constructs a temperature.
temperatureInDegreeCelsius | temperature in degree Celsius |
Definition at line 46 of file Temperature.h.
|
inlinestaticconstexpr |
Constructs a temperature.
temperatureInDegreeFarenheit | temperature in Farenheit |
Definition at line 59 of file Temperature.h.
|
inlinestaticconstexpr |
Constructs a temperature.
temperatureInDegreeKelvin | temperature in degree Kevin |
Definition at line 72 of file Temperature.h.
|
inlinenodiscard |
Checks if the temperature is valid.
Definition at line 83 of file Temperature.h.
|
nodiscarddefault |
Comparison.
rhs | Right hand side of the comparison |
|
inlinenodiscard |
Convert to degree Celsius.
Definition at line 100 of file Temperature.h.
|
inlinenodiscard |
Convert to degree Farenheit.
Definition at line 109 of file Temperature.h.
|
inlinenodiscard |
Convert to degree Kelvin.
Definition at line 118 of file Temperature.h.