]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_map_gear.cpp
Merge branch 'jsd/atmos' into topic/atmos-merge
[flightgear.git] / src / FDM / UIUCModel / uiuc_map_gear.cpp
1 /********************************************************************** 
2  
3  FILENAME:     uiuc_map_gear.cpp 
4
5 ---------------------------------------------------------------------- 
6
7  DESCRIPTION:  initializes the gear map
8
9 ----------------------------------------------------------------------
10  
11  STATUS:       alpha version
12
13 ----------------------------------------------------------------------
14  
15  REFERENCES:   
16  
17 ----------------------------------------------------------------------
18  
19  HISTORY:      04/08/2000   initial release
20
21 ----------------------------------------------------------------------
22  
23  AUTHOR(S):    Bipin Sehgal       <bsehgal@uiuc.edu>
24                Jeff Scott         <jscott@mail.com>
25  
26 ----------------------------------------------------------------------
27  
28  VARIABLES:
29  
30 ----------------------------------------------------------------------
31  
32  INPUTS:       none
33  
34 ----------------------------------------------------------------------
35  
36  OUTPUTS:      none
37  
38 ----------------------------------------------------------------------
39  
40  CALLED BY:    uiuc_initializemaps.cpp
41  
42 ----------------------------------------------------------------------
43  
44  CALLS TO:     none
45  
46 ----------------------------------------------------------------------
47  
48  COPYRIGHT:    (C) 2000 by Michael Selig
49  
50  This program is free software; you can redistribute it and/or
51  modify it under the terms of the GNU General Public License
52  as published by the Free Software Foundation.
53  
54  This program is distributed in the hope that it will be useful,
55  but WITHOUT ANY WARRANTY; without even the implied warranty of
56  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57  GNU General Public License for more details.
58
59  You should have received a copy of the GNU General Public License
60  along with this program; if not, write to the Free Software
61  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
62
63 **********************************************************************/
64
65 #include "uiuc_map_gear.h"
66
67
68 void uiuc_map_gear()
69 {
70   gear_map["Dx_gear"]             =      Dx_gear_flag               ;
71   gear_map["Dy_gear"]             =      Dy_gear_flag               ;
72   gear_map["Dz_gear"]             =      Dz_gear_flag               ;
73   gear_map["cgear"]               =      cgear_flag                 ;
74   gear_map["kgear"]               =      kgear_flag                 ;
75   gear_map["muGear"]              =      muGear_flag                ;
76   gear_map["strutLength"]         =      strutLength_flag           ;
77   gear_map["gear_max"]            =      gear_max_flag              ;
78   gear_map["gear_rate"]           =      gear_rate_flag             ;
79   gear_map["use_gear"]            =      use_gear_flag              ;
80 }
81
82 // end uiuc_map_gear.cpp