]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_map_CD.cpp
I have attached revisions to the UIUC code. The revisions include the
[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., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
69  USA or view http://www.gnu.org/copyleft/gpl.html.
70  
71 **********************************************************************/
72
73 #include "uiuc_map_CD.h"
74
75
76 void uiuc_map_CD()
77 {
78   CD_map["CDo"]                   =      CDo_flag                   ;
79   CD_map["CDK"]                   =      CDK_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["CDfa"]                  =      CDfa_flag                  ;
86   CD_map["CDfCL"]                 =      CDfCL_flag                 ;
87   CD_map["CDfade"]                =      CDfade_flag                ;
88   CD_map["CDfdf"]                 =      CDfdf_flag                 ;
89   CD_map["CDfadf"]                =      CDfadf_flag                ;
90   CD_map["CXo"]                   =      CXo_flag                   ;
91   CD_map["CXK"]                   =      CXK_flag                   ;
92   CD_map["CX_a"]                  =      CX_a_flag                  ;
93   CD_map["CX_a2"]                 =      CX_a2_flag                 ;
94   CD_map["CX_a3"]                 =      CX_a3_flag                 ;
95   CD_map["CX_adot"]               =      CX_adot_flag               ;
96   CD_map["CX_q"]                  =      CX_q_flag                  ;
97   CD_map["CX_de"]                 =      CX_de_flag                 ;
98   CD_map["CX_dr"]                 =      CX_dr_flag                 ;
99   CD_map["CX_df"]                 =      CX_df_flag                 ;
100   CD_map["CX_adf"]                =      CX_adf_flag                ;
101   CD_map["CXfabetaf"]             =      CXfabetaf_flag             ;
102   CD_map["CXfadef"]               =      CXfadef_flag               ;
103   CD_map["CXfaqf"]                =      CXfaqf_flag                ;
104 }
105
106 // end uiuc_map_CD.cpp