]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_map_CD.cpp
Fix for bug 1304 - crash loading XML route
[flightgear.git] / src / FDM / UIUCModel / uiuc_map_CD.cpp
1 /********************************************************************** 
2  
3  FILENAME:     uiuc_map_CD.cpp 
4
5 ---------------------------------------------------------------------- 
6
7  DESCRIPTION:  initializes the CD map
8
9 ----------------------------------------------------------------------
10  
11  STATUS:       alpha version
12
13 ----------------------------------------------------------------------
14  
15  REFERENCES:   
16  
17 ----------------------------------------------------------------------
18  
19  HISTORY:      04/08/2000   initial release
20                10/25/2001   (RD) Added new variables needed for the non-
21                             linear Twin Otter model at zero flaps
22                             (CXfxxf0)
23                11/12/2001   (RD) Added new variables needed for the non-
24                             linear Twin Otter model with flaps
25                             (CXfxxf).  Zero flap vairables removed.
26
27 ----------------------------------------------------------------------
28  
29  AUTHOR(S):    Bipin Sehgal       <bsehgal@uiuc.edu>
30                Jeff Scott         <jscott@mail.com>
31                Robert Deters      <rdeters@uiuc.edu>
32
33 ----------------------------------------------------------------------
34  
35  VARIABLES:
36  
37 ----------------------------------------------------------------------
38  
39  INPUTS:       none
40  
41 ----------------------------------------------------------------------
42  
43  OUTPUTS:      none
44  
45 ----------------------------------------------------------------------
46  
47  CALLED BY:    uiuc_initializemaps.cpp
48  
49 ----------------------------------------------------------------------
50  
51  CALLS TO:     none
52  
53 ----------------------------------------------------------------------
54  
55  COPYRIGHT:    (C) 2000 by Michael Selig
56  
57  This program is free software; you can redistribute it and/or
58  modify it under the terms of the GNU General Public License
59  as published by the Free Software Foundation.
60  
61  This program is distributed in the hope that it will be useful,
62  but WITHOUT ANY WARRANTY; without even the implied warranty of
63  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
64  GNU General Public License for more details.
65
66  You should have received a copy of the GNU General Public License
67  along with this program; if not, write to the Free Software
68  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
69
70 **********************************************************************/
71
72 #include "uiuc_map_CD.h"
73
74
75 void uiuc_map_CD()
76 {
77   CD_map["CDo"]                   =      CDo_flag                   ;
78   CD_map["CDK"]                   =      CDK_flag                   ;
79   CD_map["CLK"]                   =      CLK_flag                   ;
80   CD_map["CD_a"]                  =      CD_a_flag                  ;
81   CD_map["CD_adot"]               =      CD_adot_flag               ;
82   CD_map["CD_q"]                  =      CD_q_flag                  ;
83   CD_map["CD_ih"]                 =      CD_ih_flag                 ;
84   CD_map["CD_de"]                 =      CD_de_flag                 ;
85   CD_map["CD_dr"]                 =      CD_dr_flag                 ;
86   CD_map["CD_da"]                 =      CD_da_flag                 ;
87   CD_map["CD_beta"]               =      CD_beta_flag               ;
88   CD_map["CD_df"]                 =      CD_df_flag                 ;
89   CD_map["CD_ds"]                 =      CD_ds_flag                 ;
90   CD_map["CD_dg"]                 =      CD_dg_flag                 ;
91   CD_map["CDfa"]                  =      CDfa_flag                  ;
92   CD_map["CDfCL"]                 =      CDfCL_flag                 ;
93   CD_map["CDfade"]                =      CDfade_flag                ;
94   CD_map["CDfdf"]                 =      CDfdf_flag                 ;
95   CD_map["CDfadf"]                =      CDfadf_flag                ;
96   CD_map["CXo"]                   =      CXo_flag                   ;
97   CD_map["CXK"]                   =      CXK_flag                   ;
98   CD_map["CX_a"]                  =      CX_a_flag                  ;
99   CD_map["CX_a2"]                 =      CX_a2_flag                 ;
100   CD_map["CX_a3"]                 =      CX_a3_flag                 ;
101   CD_map["CX_adot"]               =      CX_adot_flag               ;
102   CD_map["CX_q"]                  =      CX_q_flag                  ;
103   CD_map["CX_de"]                 =      CX_de_flag                 ;
104   CD_map["CX_dr"]                 =      CX_dr_flag                 ;
105   CD_map["CX_df"]                 =      CX_df_flag                 ;
106   CD_map["CX_adf"]                =      CX_adf_flag                ;
107   CD_map["CXfabetaf"]             =      CXfabetaf_flag             ;
108   CD_map["CXfadef"]               =      CXfadef_flag               ;
109   CD_map["CXfaqf"]                =      CXfaqf_flag                ;
110 }
111
112 // end uiuc_map_CD.cpp