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
31 lines
728 B
C
31 lines
728 B
C
#ifndef _COEF_FLAP_H_
|
|
#define _COEF_FLAP_H_
|
|
|
|
#include <FDM/LaRCsim/ls_generic.h>
|
|
|
|
#include "uiuc_aircraft.h"
|
|
#include "uiuc_2Dinterpolation.h"
|
|
|
|
|
|
double uiuc_3Dinterpolation( double third_Array[30],
|
|
double full_xArray[30][100][100],
|
|
double full_yArray[30][100],
|
|
double full_zArray[30][100][100],
|
|
int full_nxArray[30][100],
|
|
int full_ny[30],
|
|
int third_max,
|
|
double third_bet,
|
|
double x_value,
|
|
double y_value);
|
|
double uiuc_3Dinterp_quick( double z[30],
|
|
double x[100],
|
|
double y[100],
|
|
double fxyz[30][100][100],
|
|
int xmax,
|
|
int ymax,
|
|
int zmax,
|
|
double zp,
|
|
double xp,
|
|
double yp);
|
|
|
|
#endif // _COEF_FLAP_H_
|