63 result._speedInMPS = speedInMPS;
113 return std::isfinite(_speedInMPS);
122 return _speedInMPS < 0.0;
133 if (qFuzzyIsNull(rhs._speedInMPS)) {
136 return _speedInMPS / rhs._speedInMPS;
173 [[nodiscard]] Q_INVOKABLE
double toFPM()
const
182 [[nodiscard]] Q_INVOKABLE
double toMPS()
const
191 [[nodiscard]] Q_INVOKABLE
double toMPH()
const
200 [[nodiscard]] Q_INVOKABLE
double toKN()
const
209 [[nodiscard]] Q_INVOKABLE
double toKMH()
const
233 double _speedInMPS{ NAN };
265auto operator<<(QDataStream &out,
Units::Speed speed) -> QDataStream &;
276auto operator>>(QDataStream &in,
Units::Speed &speed) -> QDataStream &;
Convenience class for speed computations.
static constexpr double MPS_per_MPH
Unitless constant: one mile per hour / meters per second.
static Q_INVOKABLE constexpr Units::Speed fromMPS(double speedInMPS)
Constructs a speed.
static constexpr double KMH_per_KT
Unitless constant: one km/h / knot.
static constexpr double KN_per_MPS
Unitless constant: one knot / meters per second.
static constexpr double FPM_per_MPS
Unitless constant: one feet per minute / meters per second.
Q_INVOKABLE bool isFinite() const
Checks if the speed is valid.
Q_INVOKABLE double toFPM() const
Convert to feet per minute.
static Q_INVOKABLE constexpr Units::Speed fromKMH(double speedInKMH)
Constructs a speed.
static Q_INVOKABLE constexpr Units::Speed fromMPH(double speedInMPH)
Constructs a speed.
Q_INVOKABLE std::partial_ordering operator<=>(const Units::Speed &rhs) const =default
Comparison.
static constexpr double KMH_per_MPS
Unitless constant: one km/h / meters per second.
Q_INVOKABLE double toMPS() const
Convert to meters per second.
Q_INVOKABLE double toKN() const
Convert to knots.
static Q_INVOKABLE constexpr Units::Speed fromFPM(double speedInFPM)
Constructs a speed.
Q_INVOKABLE Units::Speed operator-(Units::Speed rhs) const
Difference of two speeds.
Q_INVOKABLE bool isNegative() const
Checks if the speed is negative.
static Q_INVOKABLE constexpr Units::Speed fromKN(double speedInKT)
Constructs a speed.
Q_INVOKABLE double toKMH() const
Convert to km/h.
Q_INVOKABLE Units::Speed operator+(Units::Speed rhs) const
Adds two speeds.
Q_INVOKABLE double operator/(Units::Speed rhs) const
Divides two speeds.
Q_INVOKABLE double toMPH() const
Convert to meters per second.
Conversion between units used in aviation.