]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_map_CL.cpp
Port over remaining Point3D usage to the more type and unit safe SG* classes.
[flightgear.git] / src / FDM / UIUCModel / uiuc_map_CL.cpp
1 /********************************************************************** 
2  
3  FILENAME:     uiuc_map_CL.cpp 
4
5 ---------------------------------------------------------------------- 
6
7  DESCRIPTION:  initializes the CL map
8
9 ----------------------------------------------------------------------
10  
11  STATUS:       alpha version
12
13 ----------------------------------------------------------------------
14  
15  REFERENCES:   
16  
17 ----------------------------------------------------------------------
18  
19  HISTORY:      04/08/2000   initial release
20                06/18/2001   Added CZfa
21                10/25/2001   (RD) Added new variables needed for the non-
22                             linear Twin Otter model at zero flaps
23                             (CZfxxf0)
24                11/12/2001   (RD) Added new variables needed for the non-
25                             linear Twin Otter model with flaps
26                             (CZfxxf).  Zero flap vairables removed.
27
28 ----------------------------------------------------------------------
29  
30  AUTHOR(S):    Bipin Sehgal       <bsehgal@uiuc.edu>
31                Jeff Scott         <jscott@mail.com>
32                Robert Deters      <rdeters@uiuc.edu>
33  
34 ----------------------------------------------------------------------
35  
36  VARIABLES:
37  
38 ----------------------------------------------------------------------
39  
40  INPUTS:       none
41  
42 ----------------------------------------------------------------------
43  
44  OUTPUTS:      none
45  
46 ----------------------------------------------------------------------
47  
48  CALLED BY:    uiuc_initializemaps.cpp
49  
50 ----------------------------------------------------------------------
51  
52  CALLS TO:     none
53  
54 ----------------------------------------------------------------------
55  
56  COPYRIGHT:    (C) 2000 by Michael Selig
57  
58  This program is free software; you can redistribute it and/or
59  modify it under the terms of the GNU General Public License
60  as published by the Free Software Foundation.
61  
62  This program is distributed in the hope that it will be useful,
63  but WITHOUT ANY WARRANTY; without even the implied warranty of
64  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
65  GNU General Public License for more details.
66
67  You should have received a copy of the GNU General Public License
68  along with this program; if not, write to the Free Software
69  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
70
71 **********************************************************************/
72
73 #include "uiuc_map_CL.h"
74
75
76 void uiuc_map_CL()
77 {
78   CL_map["CLo"]                   =      CLo_flag                   ;
79   CL_map["CL_a"]                  =      CL_a_flag                  ;
80   CL_map["CL_adot"]               =      CL_adot_flag               ;
81   CL_map["CL_q"]                  =      CL_q_flag                  ;
82   CL_map["CL_ih"]                 =      CL_ih_flag                 ;
83   CL_map["CL_de"]                 =      CL_de_flag                 ;
84   CL_map["CL_df"]                 =      CL_df_flag                 ;
85   CL_map["CL_ds"]                 =      CL_ds_flag                 ;
86   CL_map["CL_dg"]                 =      CL_dg_flag                 ;
87   CL_map["CLfa"]                  =      CLfa_flag                  ;
88   CL_map["CLfade"]                =      CLfade_flag                ; 
89   CL_map["CLfdf"]                 =      CLfdf_flag                 ;
90   CL_map["CLfadf"]                =      CLfadf_flag                ; 
91   CL_map["CZo"]                   =      CZo_flag                   ;
92   CL_map["CZ_a"]                  =      CZ_a_flag                  ;
93   CL_map["CZ_a2"]                 =      CZ_a2_flag                 ;
94   CL_map["CZ_a3"]                 =      CZ_a3_flag                 ;
95   CL_map["CZ_adot"]               =      CZ_adot_flag               ;
96   CL_map["CZ_q"]                  =      CZ_q_flag                  ;
97   CL_map["CZ_de"]                 =      CZ_de_flag                 ;
98   CL_map["CZ_deb2"]               =      CZ_deb2_flag               ;
99   CL_map["CZ_df"]                 =      CZ_df_flag                 ;
100   CL_map["CZ_adf"]                =      CZ_adf_flag                ;
101   CL_map["CZfa"]                  =      CZfa_flag                  ;
102   CL_map["CZfabetaf"]             =      CZfabetaf_flag             ;
103   CL_map["CZfadef"]               =      CZfadef_flag               ;
104   CL_map["CZfaqf"]                =      CZfaqf_flag                ;
105 }
106
107 // end uiuc_map_CL.cpp