1 /**********************************************************************
2 
3  FILENAME:     uiuc_map_misc.cpp
4 
5 ----------------------------------------------------------------------
6 
7  DESCRIPTION:  initializes the misc map
8 
9 ----------------------------------------------------------------------
10 
11  STATUS:       alpha version
12 
13 ----------------------------------------------------------------------
14 
15  REFERENCES:
16 
17 ----------------------------------------------------------------------
18 
19  HISTORY:      04/08/2000   initial release
20                --/--/2002   (RD) added flapper
21 
22 ----------------------------------------------------------------------
23 
24  AUTHOR(S):    Bipin Sehgal       <bsehgal@uiuc.edu>
25                Jeff Scott         <jscott@mail.com>
26                Robert Deters      <rdeters@uiuc.edu>
27 
28 ----------------------------------------------------------------------
29 
30  VARIABLES:
31 
32 ----------------------------------------------------------------------
33 
34  INPUTS:       none
35 
36 ----------------------------------------------------------------------
37 
38  OUTPUTS:      none
39 
40 ----------------------------------------------------------------------
41 
42  CALLED BY:    uiuc_initializemaps.cpp
43 
44 ----------------------------------------------------------------------
45 
46  CALLS TO:     none
47 
48 ----------------------------------------------------------------------
49 
50  COPYRIGHT:    (C) 2000 by Michael Selig
51 
52  This program is free software; you can redistribute it and/or
53  modify it under the terms of the GNU General Public License
54  as published by the Free Software Foundation.
55 
56  This program is distributed in the hope that it will be useful,
57  but WITHOUT ANY WARRANTY; without even the implied warranty of
58  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
59  GNU General Public License for more details.
60 
61  You should have received a copy of the GNU General Public License
62  along with this program; if not, write to the Free Software
63  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
64 
65 **********************************************************************/
66 
67 #include "uiuc_map_misc.h"
68 
69 
uiuc_map_misc()70 void uiuc_map_misc()
71 {
72   misc_map["simpleHingeMomentCoef"] =    simpleHingeMomentCoef_flag ;
73   //misc_map["dfTimefdf"]             =    dfTimefdf_flag             ;
74   misc_map["flapper"]               =    flapper_flag               ;
75   misc_map["flapper_phi_init"]      =    flapper_phi_init_flag      ;
76 }
77 
78 // end uiuc_map_misc.cpp
79