]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGAerodynamics.h
JSBSim tweaks.
[flightgear.git] / src / FDM / JSBSim / FGAerodynamics.h
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Header:       FGAerodynamics.h
4  Author:       Jon S. Berndt
5  Date started: 09/13/00
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 09/13/00   JSB   Created
29
30 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31 SENTRY
32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34 #ifndef FGAERODYNAMICS_H
35 #define FGAERODYNAMICS_H
36
37 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38 INCLUDES
39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41 #ifdef FGFS
42 #  include <simgear/compiler.h>
43 #  ifdef SG_HAVE_STD_INCLUDES
44 #    include <vector>
45 #    include <map>
46 #  else
47 #    include <vector.h>
48 #    include <map.h>
49 #  endif
50 #else
51 #  include <vector>
52 #  include <map>
53 #endif
54
55 #include "FGModel.h"
56 #include "FGConfigFile.h"
57 #include "FGState.h"
58 #include "FGMassBalance.h"
59 #include "FGTranslation.h"
60 #include "FGCoefficient.h"
61
62 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
63 DEFINITIONS
64 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
65
66 #define ID_AERODYNAMICS "$Id$"
67
68 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
69 FORWARD DECLARATIONS
70 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
71
72 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
73 COMMENTS, REFERENCES, and NOTES [use "class documentation" below for API docs]
74 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
75
76 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
77 CLASS DOCUMENTATION
78 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
79
80 /** Encapsulates the aerodynamic calculations.
81     This class owns and contains the list of coefficients that define the
82     aerodynamic properties of this aircraft. Here also, such unique phenomena
83     as ground effect and maximum lift curve tailoff are handled.
84     @author Jon S. Berndt
85     @version $Id$
86     @see -
87 */
88
89 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
90 CLASS DECLARATION
91 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
92
93 class FGAerodynamics : public FGModel {
94
95 public:
96   /** Constructor
97       @param Executive a pointer to the parent executive object */
98   FGAerodynamics(FGFDMExec*);
99   /// Destructor
100   ~FGAerodynamics();
101
102   /** Runs the Aerodynamics model; called by the Executive
103       @return false if no error */
104   bool Run(void);
105
106   /** Loads the Aerodynamics model
107       @return true if successful */
108   bool LoadAerodynamics(FGConfigFile* AC_cfg);
109
110   /** Outputs coefficient information.
111       Non-dimensionalizing parameter descriptions are output
112       for each aero coefficient defined.
113       @param multipliers the list of multipliers for this coefficient.*/
114   void DisplayCoeffFactors(vector <eParam> multipliers);
115
116   /** Gets the total aerodynamic force vector.
117       @return a force vector reference. */
118   FGColumnVector& GetForces(void) {return vForces;}
119
120   /** Gets the total aerodynamic moment vector.
121       @return a moment vector reference. */
122   FGColumnVector& GetMoments(void) {return vMoments;}
123
124   inline FGColumnVector GetvLastFs(void) { return vLastFs; }
125   inline float GetvLastFs(int axis) { return vLastFs(axis); }
126   inline FGColumnVector GetvFs(void) { return vFs; }
127   inline float GetvFs(int axis) { return vFs(axis); }
128   float GetLoD(void);
129
130     /** Gets the strings for the current set of coefficients.
131       @return a string containing the descriptive names for all coefficients */
132   string GetCoefficientStrings(void);
133
134   /** Gets the coefficient values.
135       @return a string containing the numeric values for the current set of
136       coefficients */
137   string GetCoefficientValues(void);
138
139   /// Gets the Normal Load Factor
140   float GetNlf(void);
141
142 private:
143   typedef map<string,int> AxisIndex;
144   AxisIndex AxisIdx;
145   typedef vector<FGCoefficient*> CoeffArray;
146   CoeffArray* Coeff;
147   FGColumnVector vFs;
148   FGColumnVector vForces;
149   FGColumnVector vMoments;
150   FGColumnVector vLastFs;
151   FGColumnVector vDXYZcg;
152
153   void Debug(void);
154 };
155
156 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
157 #endif
158