blob: 026ff7b923b9b93a5eccc7fd4ac375e6f25b1174 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef CONST_H
#define CONST_H
static const double GRAVITY = 9.80665;
static const double DRY_AIR_MOLAR_MASS = 0.028964;
static const double WATOR_VAPOR_MOLAR_MASS = 0.018016;
static const double UNIVERSAL_GAS_CONSTANT = 8.31432;
static const double SPECIFIC_GAST_CONSTANT_DRY_AIR = 287.057036320950;
static const double STD_AIR_DENSITY_ICAO = 1.22498;
static const double STD_AIR_DENSITY_ASM = 1.20886;
static const double BC_CONVERSION_FACTOR = 0.00068418;
#endif
|