JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
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 (jon@jsbsim.org) -------------
8
9 This program is free software; you can redistribute it and/or modify it under
10 the terms of the GNU Lesser General Public License as published by the Free
11 Software Foundation; either version 2 of the License, or (at your option) any
12 later 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 Lesser General Public License for more
17 details.
18
19 You should have received a copy of the GNU Lesser General Public License along
20 with this program; if not, write to the Free Software Foundation, Inc., 59
21 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be
24 found on the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
2809/13/00 JSB Created
29
30%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31SENTRY
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34#ifndef FGAERODYNAMICS_H
35#define FGAERODYNAMICS_H
36
37/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38INCLUDES
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41#include <string>
42#include <vector>
43#include <map>
44
45#include "FGModel.h"
46#include "math/FGFunction.h"
47#include "math/FGColumnVector3.h"
48#include "math/FGMatrix33.h"
49
50/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51FORWARD DECLARATIONS
52%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
54namespace JSBSim {
55
56/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
57CLASS DOCUMENTATION
58%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
59
109/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
110CLASS DECLARATION
111%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
112
113class JSBSIM_API FGAerodynamics : public FGModel
114{
115
116public:
119 FGAerodynamics(FGFDMExec* Executive);
121 ~FGAerodynamics() override;
122
123 bool InitModel(void) override;
124
132 bool Run(bool Holding) override;
133
139 bool Load(Element* element) override;
140
143 const FGColumnVector3& GetForces(void) const {return vForces;}
144
149 double GetForces(int n) const {return vForces(n);}
150
153 const FGColumnVector3& GetMoments(void) const {return vMoments;}
154
158 double GetMoments(int n) const {return vMoments(n);}
159
162 const FGColumnVector3& GetMomentsMRC(void) const {return vMomentsMRC;}
163
167 double GetMomentsMRC(int n) const {return vMomentsMRC(n);}
168
171 const FGColumnVector3& GetvFw(void) const { return vFw; }
172
177 double GetvFw(int axis) const { return vFw(axis); }
178
181 FGColumnVector3 GetForcesInStabilityAxes(void) const;
182
187 double GetForcesInStabilityAxes(int n) const { return GetForcesInStabilityAxes()(n); }
188
191 FGColumnVector3 GetMomentsInStabilityAxes(void) const { return Tb2s*vMoments; }
192
196 double GetMomentsInStabilityAxes(int n) const { return GetMomentsInStabilityAxes()(n); }
197
200 FGColumnVector3 GetMomentsInWindAxes(void) const { return in.Tb2w*vMoments; }
201
205 double GetMomentsInWindAxes(int n) const { return GetMomentsInWindAxes()(n); }
206
208 double GetLoD(void) const { return lod; }
209
211 double GetClSquared(void) const { return clsq; }
212 double GetAlphaCLMax(void) const { return alphaclmax; }
213 double GetAlphaCLMin(void) const { return alphaclmin; }
214
215 double GetHysteresisParm(void) const { return stall_hyst; }
216 double GetStallWarn(void) const { return impending_stall; }
217 double GetAlphaW(void) const { return alphaw; }
218
219 double GetBI2Vel(void) const { return bi2vel; }
220 double GetCI2Vel(void) const { return ci2vel; }
221
222 void SetAlphaCLMax(double tt) { alphaclmax=tt; }
223 void SetAlphaCLMin(double tt) { alphaclmin=tt; }
224
228 std::string GetAeroFunctionStrings(const std::string& delimeter) const;
229
234 std::string GetAeroFunctionValues(const std::string& delimeter) const;
235
236 std::vector <FGFunction*> * GetAeroFunctions(void) const { return AeroFunctions; }
237
238 struct Inputs {
239 double Alpha;
240 double Beta;
241 double Vt;
242 double Qbar;
243 double Wingarea;
244 double Wingspan;
245 double Wingchord;
246 double Wingincidence;
247 FGColumnVector3 RPBody;
248 FGMatrix33 Tb2w;
249 FGMatrix33 Tw2b;
250 } in;
251
252private:
253 enum eAxisType {atNone, atWind, atBodyAxialNormal, atBodyXYZ, atStability} forceAxisType, momentAxisType;
254 typedef std::map<std::string,int> AxisIndex;
255 AxisIndex AxisIdx;
256 FGFunction* AeroRPShift;
257 typedef std::vector <FGFunction*> AeroFunctionArray;
258 AeroFunctionArray* AeroFunctions;
259 FGMatrix33 Ts2b, Tb2s;
260 FGColumnVector3 vFnative;
261 FGColumnVector3 vFw;
262 FGColumnVector3 vForces;
263 AeroFunctionArray* AeroFunctionsAtCG;
264 FGColumnVector3 vFnativeAtCG;
265 FGColumnVector3 vForcesAtCG;
266 FGColumnVector3 vMoments;
267 FGColumnVector3 vMomentsMRC;
268 FGColumnVector3 vMomentsMRCBodyXYZ;
269 FGColumnVector3 vDXYZcg;
270 FGColumnVector3 vDeltaRP;
271 double alphaclmax, alphaclmin;
272 double alphaclmax0, alphaclmin0;
273 double alphahystmax, alphahystmin;
274 double impending_stall, stall_hyst;
275 double bi2vel, ci2vel,alphaw;
276 double clsq, lod, qbar_area;
277
278 typedef double (FGAerodynamics::*PMF)(int) const;
279 void DetermineAxisSystem(Element* document);
280 void ProcessAxesNameAndFrame(FGAerodynamics::eAxisType& axisType,
281 const std::string& name, const std::string& frame,
282 Element* el, const std::string& validNames);
283 void bind(void);
284 void BuildStabilityTransformMatrices(void);
285
286 void Debug(int from) override;
287};
288
289} // namespace JSBSim
290
291//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
292#endif
Encapsulates the aerodynamic calculations.
const FGColumnVector3 & GetMoments(void) const
Gets the total aerodynamic moment vector about the CG.
const FGColumnVector3 & GetMomentsMRC(void) const
Gets the total aerodynamic moment vector about the Moment Reference Center.
double GetForces(int n) const
Gets the aerodynamic force for an axis.
double GetMomentsInStabilityAxes(int n) const
Gets the aerodynamic moment about the CG for an axis.
FGColumnVector3 GetMomentsInWindAxes(void) const
Gets the total aerodynamic moment vector about the CG in the wind axes.
FGColumnVector3 GetMomentsInStabilityAxes(void) const
Gets the total aerodynamic moment vector about the CG in the stability axes.
double GetMomentsInWindAxes(int n) const
Gets the aerodynamic moment about the CG for an axis.
double GetLoD(void) const
Retrieves the lift over drag ratio.
double GetMomentsMRC(int n) const
Gets the aerodynamic moment about the Moment Reference Center for an axis.
double GetForcesInStabilityAxes(int n) const
Retrieves the aerodynamic forces in the stability axes, given an axis.
const FGColumnVector3 & GetvFw(void) const
Retrieves the aerodynamic forces in the wind axes.
double GetMoments(int n) const
Gets the aerodynamic moment about the CG for an axis.
double GetvFw(int axis) const
Retrieves the aerodynamic forces in the wind axes, given an axis.
double GetClSquared(void) const
Retrieves the square of the lift coefficient.
const FGColumnVector3 & GetForces(void) const
Gets the total aerodynamic force vector.
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
Represents a mathematical function.
Definition FGFunction.h:765
Handles matrix math operations.
Definition FGMatrix33.h:70
Base class for all scheduled JSBSim models.
Definition FGModel.h:70