Enroute Flight Navigation
A navigation app for VFR pilots
Units.h
1/***************************************************************************
2 * Copyright (C) 2019-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 "units/Distance.h"
24#include "units/Speed.h"
25#include "units/Timespan.h"
26#include "units/Volume.h"
27#include "units/VolumeFlow.h"
28
29//
30// Operations
31//
32
33
42inline auto operator/(Units::Distance dist, Units::Timespan time) -> Units::Speed
43{
44 if ((!dist.isFinite()) || (!time.isFinite()) || (qFuzzyIsNull(time.toS()))) {
45 return {};
46}
47
48 return Units::Speed::fromMPS(dist.toM()/time.toS());
49}
50
51
60inline auto operator/(Units::Distance dist, Units::Speed speed) -> Units::Timespan
61{
62 if ((!dist.isFinite()) || (!speed.isFinite()) || (qFuzzyIsNull(speed.toMPS()))) {
63 return {};
64}
65
66 return Units::Timespan::fromS(dist.toM() / speed.toMPS());
67}
68
69
78inline auto operator*(Units::VolumeFlow volumeFlow, Units::Timespan time) -> Units::Volume
79{
80 if (!volumeFlow.isFinite() || !time.isFinite()) {
81 return {};
82}
83
84 return Units::Volume::fromL( volumeFlow.toLPH()*time.toH() );
85}
Convenience class for distance computations.
Definition Distance.h:35
Convenience class for speed computations.
Definition Speed.h:36
static Q_INVOKABLE constexpr Units::Speed fromMPS(double speedInMPS)
Constructs a speed.
Definition Speed.h:60
Convenience class for time computations.
Definition Timespan.h:35
static auto fromS(double timeInS) -> Timespan
Constructs a time.
Definition Timespan.h:71
Convenience class for volume flow computations.
Definition VolumeFlow.h:35
Convenience class for volume computations.
Definition Volume.h:35
static constexpr auto fromL(double volumeInL) -> Volume
Constructs a volume.
Definition Volume.h:46