Enroute Flight Navigation
A navigation app for VFR pilots
DensityAltitude.h
1/***************************************************************************
2 * Copyright (C) 2019-2022 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
28namespace Weather {
29
32public:
33 //
34 // Methods
35 //
36
45
46
56private:
57 // calculates the actual density altitude either with or without a given dewpoint
58 static Units::Distance calculateDensityAltitudeInternal(Units::Temperature oat, Units::Pressure qnh, Units::Distance geometricAltitude, Units::Temperature dewPoint, bool bWithDewPoint);
59
60 // calculates the vapour pressure using the Herman Wobus approximation polynominal curve
61 static Units::Pressure calculateVapourPressure(Units::Temperature dewPoint);
62
63 // calculates the air density
64 static Units::Pressure calculateAbsolutePressure(Units::Pressure qnh, Units::Distance height);
65
66 // calculates the air density either with or without a given dewpoint
67 static Units::Density calculateAirDensity(Units::Temperature temperature, Units::Pressure qnh, Units::Distance height, Units::Temperature dewPoint, bool bWithDewPoint);
68
69
70 // converts the geometricAltitude into geopotential altitude
71 static Units::Distance geometricAltitudeToGeopotentialAltitude(Units::Distance geometricAltitude);
72};
73
74} // namespace Weather
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
This class calculates the density altiude according to temperature, QNH, Altitude (and dewpoint)
static Units::Distance calculateDensityAltitude(Units::Temperature oat, Units::Pressure qnh, Units::Distance geometricAltitude, Units::Temperature dewPoint)
calculates the density altiude with dewpoint information
static Units::Distance calculateDensityAltitudeDryAirApproximation(Units::Temperature oat, Units::Pressure qnh, Units::Distance geometricAltitude)
calculates the density altiude without dewpoint information