1 /**********************************************************************
3 FILENAME: uiuc_map_CL.cpp
5 ----------------------------------------------------------------------
7 DESCRIPTION: initializes the CL map
9 ----------------------------------------------------------------------
13 ----------------------------------------------------------------------
17 ----------------------------------------------------------------------
19 HISTORY: 04/08/2000 initial release
21 10/25/2001 (RD) Added new variables needed for the non-
22 linear Twin Otter model at zero flaps
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.
28 ----------------------------------------------------------------------
30 AUTHOR(S): Bipin Sehgal <bsehgal@uiuc.edu>
31 Jeff Scott <jscott@mail.com>
32 Robert Deters <rdeters@uiuc.edu>
34 ----------------------------------------------------------------------
38 ----------------------------------------------------------------------
42 ----------------------------------------------------------------------
46 ----------------------------------------------------------------------
48 CALLED BY: uiuc_initializemaps.cpp
50 ----------------------------------------------------------------------
54 ----------------------------------------------------------------------
56 COPYRIGHT: (C) 2000 by Michael Selig
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.
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.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
70 USA or view http://www.gnu.org/copyleft/gpl.html.
72 **********************************************************************/
74 #include "uiuc_map_CL.h"
79 CL_map["CLo"] = CLo_flag ;
80 CL_map["CL_a"] = CL_a_flag ;
81 CL_map["CL_adot"] = CL_adot_flag ;
82 CL_map["CL_q"] = CL_q_flag ;
83 CL_map["CL_ih"] = CL_ih_flag ;
84 CL_map["CL_de"] = CL_de_flag ;
85 CL_map["CL_df"] = CL_df_flag ;
86 CL_map["CL_ds"] = CL_ds_flag ;
87 CL_map["CL_dg"] = CL_dg_flag ;
88 CL_map["CLfa"] = CLfa_flag ;
89 CL_map["CLfade"] = CLfade_flag ;
90 CL_map["CLfdf"] = CLfdf_flag ;
91 CL_map["CLfadf"] = CLfadf_flag ;
92 CL_map["CZo"] = CZo_flag ;
93 CL_map["CZ_a"] = CZ_a_flag ;
94 CL_map["CZ_a2"] = CZ_a2_flag ;
95 CL_map["CZ_a3"] = CZ_a3_flag ;
96 CL_map["CZ_adot"] = CZ_adot_flag ;
97 CL_map["CZ_q"] = CZ_q_flag ;
98 CL_map["CZ_de"] = CZ_de_flag ;
99 CL_map["CZ_deb2"] = CZ_deb2_flag ;
100 CL_map["CZ_df"] = CZ_df_flag ;
101 CL_map["CZ_adf"] = CZ_adf_flag ;
102 CL_map["CZfa"] = CZfa_flag ;
103 CL_map["CZfabetaf"] = CZfabetaf_flag ;
104 CL_map["CZfadef"] = CZfadef_flag ;
105 CL_map["CZfaqf"] = CZfaqf_flag ;
108 // end uiuc_map_CL.cpp