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.cpp
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Source: FGForce.cpp
4 Author: Tony Peden
5 Date started: 6/10/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--------------------------------------------------------------------------------
296/10/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 forces from
37their native coord system to the body system. This includes computing the
38moments due to the difference between the point of application and the cg.
39
40*/
41
42#include "FGForce.h"
43#include "FGFDMExec.h"
44#include "models/FGAuxiliary.h"
45
46using namespace std;
47
48namespace JSBSim {
49
50//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51
53 : fdmex(FDMExec), MassBalance(fdmex->GetMassBalance()), ttype(tNone)
54{
55 vFn.InitMatrix();
56 vMn.InitMatrix();
57 vOrient.InitMatrix();
58 vXYZn.InitMatrix();
59 vActingXYZn.InitMatrix();
60
61 vFb.InitMatrix();
62 vM.InitMatrix();
63
64 mT = { 1., 0., 0.,
65 0., 1., 0.,
66 0., 0., 1. };
67
68 Debug(0);
69}
70
71//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
72
74{
75 Debug(1);
76}
77
78//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
79
80const FGColumnVector3& FGForce::GetBodyForces(void)
81{
82 vFb = Transform()*vFn;
83
84 // Find the distance from this vector's acting location to the cg; this
85 // needs to be done like this to convert from structural to body coords.
86 // CG and RP values are in inches
87
88 FGColumnVector3 vDXYZ = MassBalance->StructuralToBody(vActingXYZn);
89
90 vM = vMn + vDXYZ*vFb;
91
92 return vFb;
93}
94
95//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
96
97const FGMatrix33& FGForce::Transform(void) const
98{
99 switch(ttype) {
100 case tWindBody:
101 return fdmex->GetAuxiliary()->GetTw2b();
102 case tLocalBody:
103 return fdmex->GetPropagate()->GetTl2b();
104 case tInertialBody:
105 return fdmex->GetPropagate()->GetTi2b();
106 case tCustom:
107 case tNone:
108 return mT;
109 default:
110 {
111 const string s("Unrecognized tranform requested from FGForce::Transform()");
112 cout << s << endl;
113 throw BaseException(s);
114 }
115 }
116}
117
118//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
119
120void FGForce::UpdateCustomTransformMatrix(void)
121{
122 double cp,sp,cr,sr,cy,sy;
123 double srsp, crcy, crsy;
124
125 cp=cos(vOrient(ePitch)); sp=sin(vOrient(ePitch));
126 cr=cos(vOrient(eRoll)); sr=sin(vOrient(eRoll));
127 cy=cos(vOrient(eYaw)); sy=sin(vOrient(eYaw));
128
129 srsp = sr*sp;
130 crcy = cr*cy;
131 crsy = cr*sy;
132
133 mT(1,1) = cp*cy;
134 mT(2,1) = cp*sy;
135 mT(3,1) = -sp;
136
137 mT(1,2) = srsp*cy - crsy;
138 mT(2,2) = srsp*sy + crcy;
139 mT(3,2) = sr*cp;
140
141 mT(1,3) = crcy*sp + sr*sy;
142 mT(2,3) = crsy*sp - sr*cy;
143 mT(3,3) = cr*cp;
144}
145
146//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
147
148void FGForce::SetAnglesToBody(double broll, double bpitch, double byaw)
149{
150 if (ttype == tCustom) {
151 vOrient(ePitch) = bpitch;
152 vOrient(eRoll) = broll;
153 vOrient(eYaw) = byaw;
154
155 UpdateCustomTransformMatrix();
156 }
157}
158
159//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
160// The bitmasked value choices are as follows:
161// unset: In this case (the default) JSBSim would only print
162// out the normally expected messages, essentially echoing
163// the config files as they are read. If the environment
164// variable is not set, debug_lvl is set to 1 internally
165// 0: This requests JSBSim not to output any messages
166// whatsoever.
167// 1: This value explicity requests the normal JSBSim
168// startup messages
169// 2: This value asks for a message to be printed out when
170// a class is instantiated
171// 4: When this value is set, a message is displayed when a
172// FGModel object executes its Run() method
173// 8: When this value is set, various runtime state variables
174// are printed out periodically
175// 16: When set various parameters are sanity checked and
176// a message is printed out when they go out of bounds
177
178void FGForce::Debug(int from)
179{
180 if (debug_lvl <= 0) return;
181
182 if (debug_lvl & 1) { // Standard console startup message output
183 if (from == 0) { // Constructor
184
185 }
186 }
187 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
188 if (from == 0) cout << "Instantiated: FGForce" << endl;
189 if (from == 1) cout << "Destroyed: FGForce" << endl;
190 }
191 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
192 }
193 if (debug_lvl & 8 ) { // Runtime state variables
194 }
195 if (debug_lvl & 16) { // Sanity checking
196 }
197 if (debug_lvl & 64) {
198 if (from == 0) { // Constructor
199 }
200 }
201}
202}
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
std::shared_ptr< FGPropagate > GetPropagate(void) const
Returns the FGPropagate pointer.
std::shared_ptr< FGAuxiliary > GetAuxiliary(void) const
Returns the FGAuxiliary pointer.
virtual ~FGForce()
Destructor.
Definition FGForce.cpp:73
FGForce(FGFDMExec *FDMExec)
Constructor.
Definition FGForce.cpp:52