]> git.mxchange.org Git - simgear.git/blob - simgear/constants.h
5da9c9a610e0c8463337bd60913d97efab729073
[simgear.git] / simgear / constants.h
1 // constants.h -- various constant definitions
2 //
3 // Written by Curtis Olson, started February 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson - http://www.flightgear.org/~curt/
6 //
7 // This library is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU Library General Public
9 // License as published by the Free Software Foundation; either
10 // version 2 of the License, or (at your option) any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // Library General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23 /** \file constants.h
24  * Various constant definitions.
25  */
26
27
28 #ifndef _SG_CONSTANTS_H
29 #define _SG_CONSTANTS_H
30
31
32 #include <simgear/compiler.h>
33
34 #include <cmath>
35
36
37 // Make sure PI is defined in its various forms
38
39 #ifdef M_PI
40 #define SGD_PI      M_PI
41 #define SG_PI      M_PI
42 #else
43 #define SG_PI  3.1415926535f
44 #define SGD_PI  3.1415926535
45 #endif
46
47
48
49 /** 2 * PI */
50 #define SGD_2PI      SGD_PI * 2.0
51
52 /** PI / 2 */
53 #ifdef M_PI_2
54 #  define  SGD_PI_2  M_PI_2
55 #else
56 #  define  SGD_PI_2  1.57079632679489661923
57 #endif
58
59 /** PI / 4 */
60 #define SGD_PI_4     0.78539816339744830961
61
62
63 #define SGD_DEGREES_TO_RADIANS  (SGD_PI/180.0)
64 #define SGD_RADIANS_TO_DEGREES  (180.0/SGD_PI)
65
66 #define SG_DEGREES_TO_RADIANS SGD_DEGREES_TO_RADIANS
67 #define SG_RADIANS_TO_DEGREES SGD_RADIANS_TO_DEGREES
68
69 /** \def SG_E "e" */
70 #ifdef M_E
71 #  define SG_E     M_E
72 #else
73 #  define SG_E     2.7182818284590452354
74 #endif
75
76 /** pi/180/60/60, or about 100 feet at earths' equator */
77 #define SG_ONE_SECOND 4.848136811E-6
78
79
80 /** Radius of Earth in kilometers at the equator.  Another source had
81  *  6378.165 but this is probably close enough */
82 #define SG_EARTH_RAD 6378.155
83
84 // Maximum terrain elevation from sea level
85 #define SG_MAX_ELEVATION_M 9000.0
86
87 // Earth parameters for WGS 84, taken from LaRCsim/ls_constants.h
88
89 /** Value of earth radius from LaRCsim (ft) */
90 #define SG_EQUATORIAL_RADIUS_FT  20925650.
91
92 /** Value of earth radius from LaRCsim (meter) */
93 #define SG_EQUATORIAL_RADIUS_M   6378138.12
94
95 /** Radius squared (ft) */
96 #define SG_EQ_RAD_SQUARE_FT 437882827922500.
97
98 /** Radius squared (meter) */
99 #define SG_EQ_RAD_SQUARE_M   40680645877797.1344
100
101 // Conversions
102
103 /** Arc seconds to radians.  (arcsec*pi)/(3600*180) = rad */
104 #define SG_ARCSEC_TO_RAD    4.84813681109535993589e-06 
105
106 /** Radians to arc seconds.  (rad*3600*180)/pi = arcsec */
107 #define SG_RAD_TO_ARCSEC    206264.806247096355156
108
109 /** Feet to Meters */
110 #define SG_FEET_TO_METER    0.3048
111
112 /** Meters to Feet */
113 #define SG_METER_TO_FEET    3.28083989501312335958  
114
115 /** Meters to Nautical Miles.  1 nm = 6076.11549 feet */
116 #define SG_METER_TO_NM      0.0005399568034557235
117
118 /** Nautical Miles to Meters */
119 #define SG_NM_TO_METER      1852.0000
120
121 /** Meters to Statute Miles. */
122 #define SG_METER_TO_SM      0.0006213699494949496
123
124 /** Statute Miles to Meters. */
125 #define SG_SM_TO_METER      1609.3412196
126
127 /** Radians to Nautical Miles.  1 nm = 1/60 of a degree */
128 #define SG_NM_TO_RAD        0.00029088820866572159
129
130 /** Nautical Miles to Radians */
131 #define SG_RAD_TO_NM        3437.7467707849392526
132
133 /** meters per second to Knots */
134 #define SG_MPS_TO_KT        1.9438444924406046432
135
136 /** Knots to meters per second */
137 #define SG_KT_TO_MPS        0.5144444444444444444
138
139 /** Feet per second to Knots */
140 #define SG_FPS_TO_KT        0.5924838012958962841
141
142 /** Knots to Feet per second */
143 #define SG_KT_TO_FPS        1.6878098571011956874
144
145 /** meters per second to Miles per hour */
146 #define SG_MPS_TO_MPH       2.2369362920544020312
147
148 /** meetrs per hour to Miles per second */
149 #define SG_MPH_TO_MPS       0.44704
150
151 /** Meters per second to Kilometers per hour */
152 #define SG_MPS_TO_KMH       3.6
153
154 /** Kilometers per hour to meters per second */
155 #define SG_KMH_TO_MPS       0.2777777777777777778
156
157 /** Pascal to Inch Mercury */
158 #define SG_PA_TO_INHG       0.0002952998330101010
159
160 /** Inch Mercury to Pascal */
161 #define SG_INHG_TO_PA       3386.388640341
162
163
164 /** For divide by zero avoidance, this will be close enough to zero */
165 #define SG_EPSILON 0.0000001
166
167 /** Highest binobj format version we know how to read/write.  This starts at
168  *  0 and can go up to 65535 */
169 #define SG_BINOBJ_VERSION 6
170
171 /** for backwards compatibility */
172 #define SG_SCENERY_FILE_FORMAT "0.4"
173
174
175 #endif // _SG_CONSTANTS_H