]> git.mxchange.org Git - flightgear.git/blob - src/FDM/UIUCModel/uiuc_3Dinterpolation.h
Merge branch 'jsd/atmos' into topic/atmos-merge
[flightgear.git] / src / FDM / UIUCModel / uiuc_3Dinterpolation.h
1 #ifndef _COEF_FLAP_H_
2 #define _COEF_FLAP_H_
3
4 #include <FDM/LaRCsim/ls_generic.h>
5
6 #include "uiuc_aircraft.h"
7 #include "uiuc_2Dinterpolation.h"
8
9
10 double uiuc_3Dinterpolation( double third_Array[30],
11                              double full_xArray[30][100][100],
12                              double full_yArray[30][100],
13                              double full_zArray[30][100][100],
14                              int full_nxArray[30][100],
15                              int full_ny[30],
16                              int third_max,
17                              double third_bet,
18                              double x_value,
19                              double y_value);
20 double uiuc_3Dinterp_quick( double z[30],
21                             double x[100],
22                             double y[100],
23                             double fxyz[30][100][100],
24                             int xmax,
25                             int ymax,
26                             int zmax,
27                             double zp,
28                             double xp,
29                             double yp);
30
31 #endif // _COEF_FLAP_H_