]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_initializemaps2.cpp
Code clean ups relating to FGOptions ... and moved it into globals-> space.
[flightgear.git] / src / FDM / UIUCModel / uiuc_initializemaps2.cpp
1 /********************************************************************** 
2  * 
3  * FILENAME:     uiuc_initializemaps.cpp 
4  *
5  * ---------------------------------------------------------------------- 
6  *
7  * DESCRIPTION:  Initializes the maps for various keywords 
8  *
9  * ----------------------------------------------------------------------
10  * 
11  * STATUS:       alpha version
12  *
13  * ----------------------------------------------------------------------
14  * 
15  * REFERENCES:   
16  * 
17  * ----------------------------------------------------------------------
18  * 
19  * HISTORY:      01/26/2000   initial release
20  * 
21  * ----------------------------------------------------------------------
22  * 
23  * AUTHOR(S):    Bipin Sehgal       <bsehgal@uiuc.edu>
24  * 
25  * ----------------------------------------------------------------------
26  * 
27  * VARIABLES:
28  * 
29  * ----------------------------------------------------------------------
30  * 
31  * INPUTS:       *
32  * 
33  * ----------------------------------------------------------------------
34  * 
35  * OUTPUTS:      *
36  * 
37  * ----------------------------------------------------------------------
38  * 
39  * CALLED BY:    uiuc_wrapper.cpp
40  * 
41  * ----------------------------------------------------------------------
42  * 
43  * CALLS TO:     *
44  * 
45  * ----------------------------------------------------------------------
46  * 
47  * COPYRIGHT:    (C) 2000 by Michael Selig
48  * 
49  * This program is free software; you can redistribute it and/or
50  * modify it under the terms of the GNU General Public License
51  * as published by the Free Software Foundation.
52  * 
53  * This program is distributed in the hope that it will be useful,
54  * but WITHOUT ANY WARRANTY; without even the implied warranty of
55  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
56  * GNU General Public License for more details.
57  * 
58  * You should have received a copy of the GNU General Public License
59  * along with this program; if not, write to the Free Software
60  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
61  * USA or view http://www.gnu.org/copyleft/gpl.html.
62  * 
63  ***********************************************************************/
64
65
66 #include "uiuc_initializemaps.h"
67
68 void uiuc_initializemaps2 ()
69 {
70         CL_map["CLo"] = CLo_flag;
71         CL_map["CL_a"] = CL_a_flag;
72         CL_map["CL_adot"] = CL_adot_flag;
73         CL_map["CL_q"] = CL_q_flag;
74         CL_map["CL_de"] = CL_de_flag;
75         CL_map["CLfa"] = CLfa_flag;
76         CL_map["CLfade"] = CLfade_flag; 
77
78
79         Cm_map["Cmo"] = Cmo_flag;
80         Cm_map["Cm_a"] = Cm_a_flag;
81         Cm_map["Cm_adot"] = Cm_adot_flag;
82         Cm_map["Cm_q"] = Cm_q_flag;
83         Cm_map["Cm_de"] = Cm_de_flag;
84         Cm_map["Cmfade"] = Cmfade_flag;
85
86
87         CY_map["CYo"] = CYo_flag;
88         CY_map["CY_beta"] = CY_beta_flag;
89         CY_map["CY_p"] = CY_p_flag;
90         CY_map["CY_r"] = CY_r_flag;
91         CY_map["CY_da"] = CY_da_flag;
92         CY_map["CY_dr"] = CY_dr_flag;
93         CY_map["CYfada"] = CYfada_flag;
94         CY_map["CYfbetadr"] = CYfbetadr_flag;
95
96
97         Cl_map["Clo"] = Clo_flag;
98         Cl_map["Cl_beta"] = Cl_beta_flag;
99         Cl_map["Cl_p"] = Cl_p_flag;
100         Cl_map["Cl_r"] = Cl_r_flag;
101         Cl_map["Cl_da"] = Cl_da_flag;
102         Cl_map["Cl_dr"] = Cl_dr_flag;
103         Cl_map["Clfada"] = Clfada_flag;
104         Cl_map["Clfbetadr"] = Clfbetadr_flag;
105         
106         Cn_map["Cno"] = Cno_flag;
107         Cn_map["Cn_beta"] = Cn_beta_flag;
108         Cn_map["Cn_p"] = Cn_p_flag;
109         Cn_map["Cn_r"] = Cn_r_flag;
110         Cn_map["Cn_da"] = Cn_da_flag;
111         Cn_map["Cn_dr"] = Cn_dr_flag;
112         Cn_map["Cnfada"] = Cnfada_flag;
113         Cn_map["Cnfbetadr"] = Cnfbetadr_flag;
114 }
115
116 // end uiuc_initializemaps.cpp