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.
20 lines
326 B
C
20 lines
326 B
C
#ifndef _GETWIND_H_
|
|
#define _GETWIND_H_
|
|
|
|
#include <math.h>
|
|
#include "uiuc_aircraft.h"
|
|
#include <FDM/LaRCsim/ls_generic.h> //For global state variables
|
|
#include <FDM/LaRCsim/ls_constants.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern double Simtime;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
void uiuc_getwind();
|
|
#endif // _GETWIND_H_
|