1 /*******************************************************************************
7 ------------- Copyright (C) 1999 Jon S. Berndt (jsb@hal-pc.org) -------------
9 This program is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free Software
11 Foundation; either version 2 of the License, or (at your option) any later
14 This program is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
19 You should have received a copy of the GNU General Public License along with
20 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21 Place - Suite 330, Boston, MA 02111-1307, USA.
23 Further information about the GNU General Public License can also be found on
24 the world wide web at http://www.gnu.org.
27 --------------------------------------------------------------------------------
30 ********************************************************************************
32 *******************************************************************************/
37 #define GRAVITY 32.174
38 #define INVGRAVITY 0.031081
39 #define EARTHRAD 20925650.00 // feet, equatorial
40 #define EARTHRADSQRD 437882827922500.0
41 #define ONESECOND 4.848136811E-6
42 #define Reng 1716 //Specific Gas Constant,ft^2/(sec^2*R)
43 #define SHRATIO 1.4 //Specific Heat Ratio
44 #define RADTODEG 57.29578
45 #define DEGTORAD 1.745329E-2
46 #define KTSTOFPS 1.68781
47 #define FPSTOKTS 0.592484
48 #define INCHTOFT 0.08333333
49 #define OMEGA_EARTH .00007272205217
50 #define NEEDED_CFG_VERSION "1.50"
51 #define JSBSIM_VERSION "0.9.0"
53 #define HPTOFTLBSSEC 550
54 #define METERS_TO_FEET 3.2808
56 #if defined ( sgi ) && !defined( __GNUC__ )
57 #define __STL_FUNCTION_TMPL_PARTIAL_ORDER
109 FG_LBARH, //normalized horizontal tail arm
110 FG_LBARV, //normalized vertical tail arm
113 FG_VBARH, //horizontal tail volume
114 FG_VBARV //vertical tail volume
129 /******************************************************************************/