Enroute Flight Navigation
A navigation app for VFR pilots
Atmosphere.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 "units/Density.h"
24#include "units/Distance.h"
25#include "units/Pressure.h"
26#include "units/Temperature.h"
27
28
29namespace Navigation {
30
35
37{
38 Q_GADGET
39 QML_VALUE_TYPE(atmosphere)
40
41public:
51
58 Q_INVOKABLE static Units::Density density(Units::Distance h);
59
66 Q_INVOKABLE static Units::Distance height(Units::Density d);
67
75
83
92 Q_INVOKABLE static double relativeHumidity(Units::Temperature temperature, Units::Temperature dewpoint);
93};
94
95} // namespace Navigation
Atmospherical data.
Definition Atmosphere.h:37
static Q_INVOKABLE Units::Distance height(Units::Pressure pressure)
Computation of height as a function of pressure.
static Q_INVOKABLE Units::Density density(Units::Pressure p, Units::Temperature t)
Computation of density as a function of pressure and temperature, using the perfect gas law.
static Q_INVOKABLE Units::Pressure pressure(Units::Distance height)
Computation of pressure as a function of height.
static Q_INVOKABLE Units::Distance height(Units::Density d)
Computation of height as a function of density.
static Q_INVOKABLE Units::Density density(Units::Distance h)
Computation of density as a function of height.
static Q_INVOKABLE double relativeHumidity(Units::Temperature temperature, Units::Temperature dewpoint)
Computation of relative humidity as a function of temperature and dewpoint.
Convenience class for density computations.
Definition Density.h:35
Convenience class for distance computations.
Definition Distance.h:35
Convenience class for pressure computations.
Definition Pressure.h:35
Convenience class for temperature computations.
Definition Temperature.h:35