]> git.mxchange.org Git - flightgear.git/blob - JSBsim/FGCoefficient.h
New changes to address various feedback from initial release.
[flightgear.git] / JSBsim / FGCoefficient.h
1 /*******************************************************************************
2
3  Header:       FGCoefficient.h
4  Author:       Jon Berndt
5  Date started: 12/28/98
6
7  ------------- Copyright (C) 1999  Jon S. Berndt (jsb@hal-pc.org) -------------
8
9  This program is free software; you can redistribute it and/or modify it under
10  the terms of the GNU General Public License as published by the Free Software
11  Foundation; either version 2 of the License, or (at your option) any later
12  version.
13
14  This program is distributed in the hope that it will be useful, but WITHOUT
15  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  details.
18
19  You should have received a copy of the GNU General Public License along with
20  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21  Place - Suite 330, Boston, MA  02111-1307, USA.
22
23  Further information about the GNU General Public License can also be found on
24  the world wide web at http://www.gnu.org.
25
26 HISTORY
27 --------------------------------------------------------------------------------
28 12/28/98   JSB   Created
29
30 ********************************************************************************
31 SENTRY
32 *******************************************************************************/
33
34 #ifndef FGCOEFFICIENT_H
35 #define FGCOEFFICIENT_H
36
37 /*******************************************************************************
38 INCLUDES
39 *******************************************************************************/
40 #include <fstream.h>
41
42 /*******************************************************************************
43 DEFINES
44 *******************************************************************************/
45 #define FG_QBAR         1
46 #define FG_WINGAREA     2
47 #define FG_WINGSPAN     4
48 #define FG_CBAR         8
49 #define FG_ALPHA       16
50 #define FG_ALPHADOT    32
51 #define FG_BETA        64
52 #define FG_BETADOT    128
53 #define FG_PITCHRATE  256
54 #define FG_ROLLRATE   512
55 #define FG_YAWRATE   1024
56 #define FG_ELEVATOR  2048
57 #define FG_AILERON   4096
58 #define FG_RUDDER    8192
59 #define FG_MACH     16384
60 #define FG_ALTITUDE 32768L
61
62 /*******************************************************************************
63 CLASS DECLARATION
64 *******************************************************************************/
65
66 class FGFDMExec;
67 class FGState;
68 class FGAtmosphere;
69 class FGFCS;
70 class FGAircraft;
71 class FGTranslation;
72 class FGRotation;
73 class FGPosition;
74 class FGAuxiliary;
75 class FGOutput;
76
77 class FGCoefficient
78 {
79 public:
80   FGCoefficient(FGFDMExec*);
81   FGCoefficient(FGFDMExec*, int, int);
82   FGCoefficient(FGFDMExec*, int);
83   FGCoefficient(FGFDMExec*, char*);
84   ~FGCoefficient(void);
85
86   bool Allocate(int);
87   bool Allocate(int, int);
88
89   float Value(float, float);
90   float Value(float);
91   float Value(void);
92
93 protected:
94
95 private:
96   float StaticValue;
97   float *Table2D;
98   float **Table3D;
99   int rows, columns;
100   char filename[50];
101   char description[50];
102   char name[10];
103   int type;
104   char method[15];
105   int multipliers;
106   long int mult_idx[10];
107   int mult_count;
108   float LookupR, LookupC;
109
110   float GetCoeffVal(int);
111
112   FGFDMExec*      FDMExec;
113   FGState*        State;
114   FGAtmosphere*   Atmosphere;
115   FGFCS*          FCS;
116   FGAircraft*     Aircraft;
117   FGTranslation*  Translation;
118   FGRotation*     Rotation;
119   FGPosition*     Position;
120   FGAuxiliary*    Auxiliary;
121   FGOutput*       Output;
122 };
123
124 /******************************************************************************/
125 #endif