37 QML_VALUE_TYPE(volume)
49 result.m_volumeInL = volumeInL;
62 result.m_volumeInL = LitersPerGallon*volumeInGAL;
70 [[nodiscard]] Q_INVOKABLE
bool isFinite()
const
72 return std::isfinite(m_volumeInL);
83 m_volumeInL += other.m_volumeInL;
99 [[nodiscard]] Q_INVOKABLE
double toL()
const
108 [[nodiscard]] Q_INVOKABLE
double toGAL()
const
110 return m_volumeInL/LitersPerGallon;
114 static constexpr double LitersPerGallon = 4.54609;
117 double m_volumeInL{ NAN };
Convenience class for volume computations.
Q_INVOKABLE bool isFinite() const
Checks if the volume is valid.
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.
Q_INVOKABLE double toGAL() const
Convert to gallons.
Q_INVOKABLE double toL() const
Convert to liters.
static constexpr auto fromL(double volumeInL) -> Volume
Constructs a volume.
static constexpr auto fromGAL(double volumeInGAL) -> Volume
Constructs a volume.
Conversion between units used in aviation.