Enroute Flight Navigation
A navigation app for VFR pilots
|
Atmospherical data. More...
#include <Atmosphere.h>
Static Public Member Functions | |
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::Density | density (Units::Distance h) |
Computation of density 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::Distance | height (Units::Pressure pressure) |
Computation of height as a function of pressure. | |
static Q_INVOKABLE Units::Pressure | pressure (Units::Distance height) |
Computation of pressure 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. | |
Atmospherical data.
This class provides the standard computation routines for the ICAO atmosphere, for the height range of 0-11km
Definition at line 36 of file Atmosphere.h.
|
static |
Computation of density as a function of height.
h | height |
|
static |
Computation of density as a function of pressure and temperature, using the perfect gas law.
p | Pressure for which the density is computed |
t | Temperature for which the density is computed |
|
static |
Computation of height as a function of density.
d | Air density |
|
static |
Computation of height as a function of pressure.
pressure | Air pressure |
|
static |
Computation of pressure as a function of height.
height | Barometric height above the 1013.25 hPa level (which equals 0 Meter) |
|
static |
Computation of relative humidity as a function of temperature and dewpoint.
temperature | Air temperature |
dewpoint | Dew point |