2000-09-06 19:52:37 +00:00
|
|
|
#ifndef _COEFFICIENTS_H_
|
|
|
|
#define _COEFFICIENTS_H_
|
2000-03-22 22:01:33 +00:00
|
|
|
|
|
|
|
#include "uiuc_aircraft.h"
|
2000-09-06 19:52:37 +00:00
|
|
|
#include "uiuc_controlInput.h"
|
|
|
|
#include "uiuc_coef_drag.h"
|
|
|
|
#include "uiuc_coef_lift.h"
|
|
|
|
#include "uiuc_coef_pitch.h"
|
|
|
|
#include "uiuc_coef_sideforce.h"
|
|
|
|
#include "uiuc_coef_roll.h"
|
|
|
|
#include "uiuc_coef_yaw.h"
|
2002-11-08 17:03:49 +00:00
|
|
|
#include "uiuc_iceboot.h" //Anne's code
|
2002-09-02 23:26:28 +00:00
|
|
|
#include "uiuc_iced_nonlin.h"
|
2002-11-08 17:03:49 +00:00
|
|
|
#include "uiuc_pah_ap.h"
|
|
|
|
#include "uiuc_1Dinterpolation.h"
|
|
|
|
#include "uiuc_3Dinterpolation.h"
|
2000-09-26 21:44:52 +00:00
|
|
|
#include <FDM/LaRCsim/ls_generic.h>
|
2001-09-14 20:36:34 +00:00
|
|
|
#include <FDM/LaRCsim/ls_cockpit.h> /*Long_control,Lat_control,Rudder_pedal */
|
|
|
|
#include <FDM/LaRCsim/ls_constants.h> /* RAD_TO_DEG, DEG_TO_RAD*/
|
2000-03-22 22:01:33 +00:00
|
|
|
|
2002-11-08 17:03:49 +00:00
|
|
|
extern double Simtime;
|
2000-03-22 22:01:33 +00:00
|
|
|
|
2002-09-02 23:26:28 +00:00
|
|
|
void uiuc_coefficients(double dt);
|
2000-09-06 19:52:37 +00:00
|
|
|
|
|
|
|
#endif // _COEFFICIENTS_H_
|