2717dba826
ability to run a nonlinear model with flaps. The files ls_model.c and uiuc_aero.c were changed since we had some functions with the same name. The name changes doesn't affect the code, it just makes it a little easier to read. There are changes in LaRCsim.cxx so UIUC models have engine sound. Could you send me an email when you receive this and/or when the changes make it to the CVS? Thanks. Also I noticed you have some outdated files that are no longer used in the UIUCModel directory. They are uiuc_initializemaps1.cpp, uiuc_initializemaps2.cpp, uiuc_initializemaps3.cpp, and uiuc_initializemaps4.cpp Rob
106 lines
4.2 KiB
C++
106 lines
4.2 KiB
C++
/**********************************************************************
|
|
|
|
FILENAME: uiuc_map_CD.cpp
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
DESCRIPTION: initializes the CD map
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
STATUS: alpha version
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
REFERENCES:
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
HISTORY: 04/08/2000 initial release
|
|
10/25/2001 (RD) Added new variables needed for the non-
|
|
linear Twin Otter model at zero flaps
|
|
(CXfxxf0)
|
|
11/12/2001 (RD) Added new variables needed for the non-
|
|
linear Twin Otter model with flaps
|
|
(CXfxxf). Zero flap vairables removed.
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
AUTHOR(S): Bipin Sehgal <bsehgal@uiuc.edu>
|
|
Jeff Scott <jscott@mail.com>
|
|
Robert Deters <rdeters@uiuc.edu>
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
VARIABLES:
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
INPUTS: none
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
OUTPUTS: none
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
CALLED BY: uiuc_initializemaps.cpp
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
CALLS TO: none
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
COPYRIGHT: (C) 2000 by Michael Selig
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
USA or view http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
**********************************************************************/
|
|
|
|
#include "uiuc_map_CD.h"
|
|
|
|
|
|
void uiuc_map_CD()
|
|
{
|
|
CD_map["CDo"] = CDo_flag ;
|
|
CD_map["CDK"] = CDK_flag ;
|
|
CD_map["CD_a"] = CD_a_flag ;
|
|
CD_map["CD_adot"] = CD_adot_flag ;
|
|
CD_map["CD_q"] = CD_q_flag ;
|
|
CD_map["CD_ih"] = CD_ih_flag ;
|
|
CD_map["CD_de"] = CD_de_flag ;
|
|
CD_map["CDfa"] = CDfa_flag ;
|
|
CD_map["CDfCL"] = CDfCL_flag ;
|
|
CD_map["CDfade"] = CDfade_flag ;
|
|
CD_map["CDfdf"] = CDfdf_flag ;
|
|
CD_map["CDfadf"] = CDfadf_flag ;
|
|
CD_map["CXo"] = CXo_flag ;
|
|
CD_map["CXK"] = CXK_flag ;
|
|
CD_map["CX_a"] = CX_a_flag ;
|
|
CD_map["CX_a2"] = CX_a2_flag ;
|
|
CD_map["CX_a3"] = CX_a3_flag ;
|
|
CD_map["CX_adot"] = CX_adot_flag ;
|
|
CD_map["CX_q"] = CX_q_flag ;
|
|
CD_map["CX_de"] = CX_de_flag ;
|
|
CD_map["CX_dr"] = CX_dr_flag ;
|
|
CD_map["CX_df"] = CX_df_flag ;
|
|
CD_map["CX_adf"] = CX_adf_flag ;
|
|
CD_map["CXfabetaf"] = CXfabetaf_flag ;
|
|
CD_map["CXfadef"] = CXfadef_flag ;
|
|
CD_map["CXfaqf"] = CXfaqf_flag ;
|
|
}
|
|
|
|
// end uiuc_map_CD.cpp
|