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
FGExternalForce.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGExternalForce.h
4 Author: Jon Berndt, Dave Culp
5 Date started: 9/21/07
6
7 ------------- Copyright (C) 2007 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
26
27 HISTORY
28--------------------------------------------------------------------------------
299/21/07 JB Created
30
31%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32SENTRY
33%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
34
35#ifndef FGEXTERNALFORCE_H
36#define FGEXTERNALFORCE_H
37
38/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39INCLUDES
40%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
41
42#include "models/propulsion/FGForce.h"
43#include "input_output/FGPropertyManager.h"
44
45/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
46FORWARD DECLARATIONS
47%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
48
49namespace JSBSim {
50
51class FGParameter;
52class Element;
53
54/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
55CLASS DECLARATION
56%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
57
59{
60public:
61 FGPropertyVector3(void) {}
62 FGPropertyVector3(FGPropertyManager* pm, const std::string& baseName,
63 const std::string& xcmp, const std::string& ycmp,
64 const std::string& zcmp);
65
66 FGPropertyVector3& operator=(const FGColumnVector3& v) {
67 data[1]->setDoubleValue(v(2));
68 data[0]->setDoubleValue(v(1));
69 data[2]->setDoubleValue(v(3));
70
71 return *this;
72 }
73
74 operator FGColumnVector3() const {
75 return FGColumnVector3(data[0]->getDoubleValue(), data[1]->getDoubleValue(),
76 data[2]->getDoubleValue());
77 }
78
79 FGColumnVector3 operator*(double a) const {
80 return FGColumnVector3(a * data[0]->getDoubleValue(),
81 a * data[1]->getDoubleValue(),
82 a * data[2]->getDoubleValue());
83 }
84
85private:
86 FGPropertyNode_ptr data[3];
87};
88
89inline FGColumnVector3 operator*(double a, const FGPropertyVector3& v) {
90 return v*a;
91}
92
93/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
94CLASS DOCUMENTATION
95%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
96
212{
213public:
218 explicit FGExternalForce(FGFDMExec *FDMExec)
219 : FGForce(FDMExec), forceMagnitude(NULL), momentMagnitude(NULL)
220 { Debug(0); }
221
226
228 ~FGExternalForce() override;
229
230 void setForce(Element* el);
231 void setMoment(Element* el);
232 const FGColumnVector3& GetBodyForces(void) override;
233
234private:
235 FGParameter* bind(Element* el, const std::string& baseName,
237
238 std::string Name;
239 FGParameter *forceMagnitude, *momentMagnitude;
240 FGPropertyVector3 forceDirection, momentDirection;
241 void Debug(int from);
242};
243}
244#endif
This class implements a 3 element column vector.
Encapsulates code that models an individual arbitrary force, moment or a combination thereof.
FGExternalForce(const FGExternalForce &extForce)
Copy Constructor.
~FGExternalForce() override
Destructor.
FGExternalForce(FGFDMExec *FDMExec)
Constructor.
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
Represents various types of parameters.
Definition FGParameter.h:61