]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_initializemaps3.cpp
First commit of properties code. JSBSim now has a basic property tree all
[flightgear.git] / src / FDM / UIUCModel / uiuc_initializemaps3.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_initializemaps3 ()
69 {
70         ice_map["iceTime"] = iceTime_flag;
71         ice_map["transientTime"] =  transientTime_flag;
72         ice_map["eta_final"] = eta_final_flag;
73         ice_map["kCDo"] = kCDo_flag;
74         ice_map["kCDK"] = kCDK_flag;
75         ice_map["kCD_a"] = kCD_a_flag;
76         ice_map["kCD_de"] = kCD_de_flag;
77         ice_map["kCLo"] = kCLo_flag;
78         ice_map["kCL_a"] = kCL_a_flag;
79         ice_map["kCL_adot"] = kCL_adot_flag;
80         ice_map["kCL_q"] = kCL_q_flag;
81         ice_map["kCL_de"] = kCL_de_flag;
82         ice_map["kCmo"] = kCmo_flag;
83         ice_map["kCm_a"] = kCm_a_flag;
84         ice_map["kCm_adot"] = kCm_adot_flag;
85         ice_map["kCm_q"] = kCm_q_flag;
86         ice_map["kCm_de"] = kCm_de_flag;
87         ice_map["kCYo"] = kCYo_flag;
88         ice_map["kCY_beta"] = kCY_beta_flag;
89         ice_map["kCY_p"] = kCY_p_flag;
90         ice_map["kCY_r"] = kCY_r_flag;
91         ice_map["kCY_da"] = kCY_da_flag;
92         ice_map["kCY_dr"] = kCY_dr_flag;
93         ice_map["kClo"] = kClo_flag;
94         ice_map["kCl_beta"] = kCl_beta_flag;
95         ice_map["kCl_p"] = kCl_p_flag;
96         ice_map["kCl_r"] = kCl_r_flag;
97         ice_map["kCl_da"] = kCl_da_flag;
98         ice_map["kCl_dr"] = kCl_dr_flag;
99         ice_map["kCno"] = kCno_flag;
100         ice_map["kCn_beta"] = kCn_beta_flag;
101         ice_map["kCn_p"] = kCn_p_flag;
102         ice_map["kCn_r"] = kCn_r_flag;
103         ice_map["kCn_da"] = kCn_da_flag;
104         ice_map["kCn_dr"] = kCn_dr_flag;
105 }
106
107 // end uiuc_initializemaps.cpp