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
FGForce.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGForce.h
4 Author: Tony Peden
5 Date started: 5/20/00
6
7 ------------- Copyright (C) 1999 Anthony K. Peden (apeden@earthlink.net) -----
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
26
27 HISTORY
28--------------------------------------------------------------------------------
295/20/00 TP Created
30
31
32FUNCTIONAL DESCRIPTION
33--------------------------------------------------------------------------------
34
35The purpose of this class is to provide storage for computed forces and
36encapsulate all the functionality associated with transforming those
37forces from their native coord system to the body system. This includes
38computing the moments due to the difference between the point of application
39and the cg.
40
41CAVEAT: if the custom transform is used for wind-to-body transforms then the
42 user *must* always pass this class the negative of beta. This is true
43 because sideslip angle does not follow the right hand rule i.e. it is
44 positive for aircraft nose left sideslip. Note that use of the custom
45 transform for this purpose shouldn't be necessary as it is already
46 provided by SetTransform(tWindBody) and is not subject to the same
47 restriction.
48
49%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
50SENTRY
51%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
52
53#ifndef FGFORCE_H
54#define FGFORCE_H
55
56/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
57INCLUDES
58%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
59
60#include "FGJSBBase.h"
61#include "math/FGMatrix33.h"
62#include "models/FGMassBalance.h"
63
64/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
65FORWARD DECLARATIONS
66%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
67
68namespace JSBSim {
69
70class FGFDMExec;
71
72/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
73CLASS DOCUMENTATION
74%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
75
217/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
218CLASS DECLARATION
219%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
220
221class JSBSIM_API FGForce : public FGJSBBase
222{
223public:
225 explicit FGForce(FGFDMExec *FDMExec);
226
228 virtual ~FGForce();
229
230 enum TransformType { tNone, tWindBody, tLocalBody, tInertialBody, tCustom };
231
232 virtual const FGColumnVector3& GetBodyForces(void);
233
234 inline double GetBodyXForce(void) const { return vFb(eX); }
235 inline double GetBodyYForce(void) const { return vFb(eY); }
236 inline double GetBodyZForce(void) const { return vFb(eZ); }
237 inline const FGColumnVector3& GetMoments(void) const { return vM; }
238
239 // Normal point of application, JSBsim structural coords
240 // (inches, x +back, y +right, z +up)
241 inline void SetLocation(double x, double y, double z) {
242 vXYZn(eX) = x;
243 vXYZn(eY) = y;
244 vXYZn(eZ) = z;
245 SetActingLocation(x, y, z);
246 }
247
256 inline void SetActingLocation(double x, double y, double z) {
257 vActingXYZn(eX) = x;
258 vActingXYZn(eY) = y;
259 vActingXYZn(eZ) = z;
260 }
261 inline void SetLocationX(double x) {vXYZn(eX) = x; vActingXYZn(eX) = x;}
262 inline void SetLocationY(double y) {vXYZn(eY) = y; vActingXYZn(eY) = y;}
263 inline void SetLocationZ(double z) {vXYZn(eZ) = z; vActingXYZn(eZ) = z;}
264 inline void SetActingLocationX(double x) {vActingXYZn(eX) = x;}
265 inline void SetActingLocationY(double y) {vActingXYZn(eY) = y;}
266 inline void SetActingLocationZ(double z) {vActingXYZn(eZ) = z;}
267 inline void SetLocation(const FGColumnVector3& vv) { vXYZn = vv; SetActingLocation(vv);}
268 inline void SetActingLocation(const FGColumnVector3& vv) { vActingXYZn = vv; }
269
270 inline double GetLocationX( void ) const { return vXYZn(eX);}
271 inline double GetLocationY( void ) const { return vXYZn(eY);}
272 inline double GetLocationZ( void ) const { return vXYZn(eZ);}
273 inline double GetActingLocationX( void ) const { return vActingXYZn(eX);}
274 inline double GetActingLocationY( void ) const { return vActingXYZn(eY);}
275 inline double GetActingLocationZ( void ) const { return vActingXYZn(eZ);}
276 const FGColumnVector3& GetLocation(void) const { return vXYZn; }
277 const FGColumnVector3& GetActingLocation(void) const { return vActingXYZn; }
278
279 //these angles are relative to body axes, not earth!!!!!
280 //I'm using these because pitch, roll, and yaw are easy to visualize,
281 //there's no equivalent to roll in wind axes i.e. alpha, ? , beta
282 //making up new names or using these is a toss-up: either way people
283 //are going to get confused.
284 //They are in radians.
285
286 void SetAnglesToBody(double broll, double bpitch, double byaw);
287 inline void SetAnglesToBody(const FGColumnVector3& vv) {
288 SetAnglesToBody(vv(eRoll), vv(ePitch), vv(eYaw));
289 }
290
291 void UpdateCustomTransformMatrix(void);
292 void SetPitch(double pitch) {vOrient(ePitch) = pitch; UpdateCustomTransformMatrix();}
293 void SetYaw(double yaw) {vOrient(eYaw) = yaw; UpdateCustomTransformMatrix();}
294
295 double GetPitch(void) const {return vOrient(ePitch);}
296 double GetYaw(void) const {return vOrient(eYaw);}
297
298 inline const FGColumnVector3& GetAnglesToBody(void) const {return vOrient;}
299 inline double GetAnglesToBody(int axis) const {return vOrient(axis);}
300
301 inline void SetTransformType(TransformType ii) { ttype=ii; }
302 inline TransformType GetTransformType(void) const { return ttype; }
303
304 const FGMatrix33& Transform(void) const;
305
306protected:
307 FGFDMExec *fdmex;
308 std::shared_ptr<FGMassBalance> MassBalance;
309 FGColumnVector3 vFn;
310 FGColumnVector3 vMn;
311 FGColumnVector3 vOrient;
312 TransformType ttype;
313 FGColumnVector3 vXYZn;
314 FGColumnVector3 vActingXYZn;
315 FGMatrix33 mT;
316
317private:
318 FGColumnVector3 vFb;
319 FGColumnVector3 vM;
320
321 void Debug(int from);
322};
323}
324#endif
325
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
Utility class that aids in the conversion of forces between coordinate systems and calculation of mom...
Definition FGForce.h:222
void SetActingLocation(double x, double y, double z)
Acting point of application.
Definition FGForce.h:256
JSBSim Base class.
Definition FGJSBBase.h:117