1 /**********************************************************************
3 FILENAME: uiuc_map_CD.cpp
5 ----------------------------------------------------------------------
7 DESCRIPTION: initializes the CD map
9 ----------------------------------------------------------------------
13 ----------------------------------------------------------------------
17 ----------------------------------------------------------------------
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
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.
27 ----------------------------------------------------------------------
29 AUTHOR(S): Bipin Sehgal <bsehgal@uiuc.edu>
30 Jeff Scott <jscott@mail.com>
31 Robert Deters <rdeters@uiuc.edu>
33 ----------------------------------------------------------------------
37 ----------------------------------------------------------------------
41 ----------------------------------------------------------------------
45 ----------------------------------------------------------------------
47 CALLED BY: uiuc_initializemaps.cpp
49 ----------------------------------------------------------------------
53 ----------------------------------------------------------------------
55 COPYRIGHT: (C) 2000 by Michael Selig
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.
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.
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.
71 **********************************************************************/
73 #include "uiuc_map_CD.h"
78 CD_map["CDo"] = CDo_flag ;
79 CD_map["CDK"] = CDK_flag ;
80 CD_map["CLK"] = CLK_flag ;
81 CD_map["CD_a"] = CD_a_flag ;
82 CD_map["CD_adot"] = CD_adot_flag ;
83 CD_map["CD_q"] = CD_q_flag ;
84 CD_map["CD_ih"] = CD_ih_flag ;
85 CD_map["CD_de"] = CD_de_flag ;
86 CD_map["CD_dr"] = CD_dr_flag ;
87 CD_map["CD_da"] = CD_da_flag ;
88 CD_map["CD_beta"] = CD_beta_flag ;
89 CD_map["CD_df"] = CD_df_flag ;
90 CD_map["CD_ds"] = CD_ds_flag ;
91 CD_map["CD_dg"] = CD_dg_flag ;
92 CD_map["CDfa"] = CDfa_flag ;
93 CD_map["CDfCL"] = CDfCL_flag ;
94 CD_map["CDfade"] = CDfade_flag ;
95 CD_map["CDfdf"] = CDfdf_flag ;
96 CD_map["CDfadf"] = CDfadf_flag ;
97 CD_map["CXo"] = CXo_flag ;
98 CD_map["CXK"] = CXK_flag ;
99 CD_map["CX_a"] = CX_a_flag ;
100 CD_map["CX_a2"] = CX_a2_flag ;
101 CD_map["CX_a3"] = CX_a3_flag ;
102 CD_map["CX_adot"] = CX_adot_flag ;
103 CD_map["CX_q"] = CX_q_flag ;
104 CD_map["CX_de"] = CX_de_flag ;
105 CD_map["CX_dr"] = CX_dr_flag ;
106 CD_map["CX_df"] = CX_df_flag ;
107 CD_map["CX_adf"] = CX_adf_flag ;
108 CD_map["CXfabetaf"] = CXfabetaf_flag ;
109 CD_map["CXfadef"] = CXfadef_flag ;
110 CD_map["CXfaqf"] = CXfaqf_flag ;
113 // end uiuc_map_CD.cpp