7289eaa8ba
I have attached some revisions for the UIUCModel and some LaRCsim. The only thing you should need to check is LaRCsim.cxx. The file I attached is a revised version of 1.5 and the latest is 1.7. Also, uiuc_getwind.c and uiuc_getwind.h are no longer in the LaRCsim directory. They have been moved over to UIUCModel.
12 lines
490 B
C
12 lines
490 B
C
#ifndef _AERODEFLECTIONS_H_
|
|
#define _AERODEFLECTIONS_H_
|
|
|
|
#include "uiuc_aircraft.h" /* aileron, elevator, rudder */
|
|
#include "uiuc_find_position.h"
|
|
#include <FDM/LaRCsim/ls_cockpit.h> /* Long_control, Lat_control, Rudder_pedal */
|
|
#include <FDM/LaRCsim/ls_constants.h> /* RAD_TO_DEG, DEG_TO_RAD */
|
|
#include <FDM/LaRCsim/ls_generic.h> //For global LaRCsim variables
|
|
|
|
void uiuc_aerodeflections( double dt );
|
|
|
|
#endif // _AERODEFLECTIONS_H_
|