1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 Module: FGTranslation.cpp
6 Purpose: Integrates the translational EOM
9 ------------- Copyright (C) 1999 Jon S. Berndt (jsb@hal-pc.org) -------------
11 This program is free software; you can redistribute it and/or modify it under
12 the terms of the GNU General Public License as published by the Free Software
13 Foundation; either version 2 of the License, or (at your option) any later
16 This program is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
21 You should have received a copy of the GNU General Public License along with
22 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
23 Place - Suite 330, Boston, MA 02111-1307, USA.
25 Further information about the GNU General Public License can also be found on
26 the world wide web at http://www.gnu.org.
28 FUNCTIONAL DESCRIPTION
29 --------------------------------------------------------------------------------
30 This class integrates the translational EOM.
33 --------------------------------------------------------------------------------
35 7/23/99 TP Added data member and modified Run and PutState to calcuate
38 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39 COMMENTS, REFERENCES, and NOTES
40 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
41 [1] Cooke, Zyda, Pratt, and McGhee, "NPSNET: Flight Simulation Dynamic Modeling
42 Using Quaternions", Presence, Vol. 1, No. 4, pp. 404-420 Naval Postgraduate
44 [2] D. M. Henderson, "Euler Angles, Quaternions, and Transformation Matrices",
46 [3] Richard E. McFarland, "A Standard Kinematic Model for Flight Simulation at
47 NASA-Ames", NASA CR-2497, January 1975
48 [4] Barnes W. McCormick, "Aerodynamics, Aeronautics, and Flight Mechanics",
49 Wiley & Sons, 1979 ISBN 0-471-03032-5
50 [5] Bernard Etkin, "Dynamics of Flight, Stability and Control", Wiley & Sons,
51 1982 ISBN 0-471-08936-2
53 The order of rotations used in this class corresponds to a 3-2-1 sequence,
54 or Y-P-R, or Z-Y-X, if you prefer.
56 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
58 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
60 #include "FGTranslation.h"
61 #include "FGRotation.h"
62 #include "FGAtmosphere.h"
64 #include "FGFDMExec.h"
66 #include "FGMassBalance.h"
67 #include "FGAircraft.h"
68 #include "FGPosition.h"
69 #include "FGAuxiliary.h"
71 #include "FGPropertyManager.h"
75 static const char *IdSrc = "$Id$";
76 static const char *IdHdr = ID_TRANSLATION;
78 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
80 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
83 FGTranslation::FGTranslation(FGFDMExec* fdmex) : FGModel(fdmex)
85 Name = "FGTranslation";
95 vUVWdot_prev[0].InitMatrix();
96 vUVWdot_prev[1].InitMatrix();
97 vUVWdot_prev[2].InitMatrix();
103 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
105 FGTranslation::~FGTranslation(void)
111 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
113 bool FGTranslation::Run(void)
115 if (!FGModel::Run()) {
118 mVel(1,2) = -vUVW(eW);
119 mVel(1,3) = vUVW(eV);
120 mVel(2,1) = vUVW(eW);
122 mVel(2,3) = -vUVW(eU);
123 mVel(3,1) = -vUVW(eV);
124 mVel(3,2) = vUVW(eU);
127 vUVWdot = mVel*Rotation->GetPQR() + Aircraft->GetBodyAccel();
129 vUVW += State->Integrate(FGState::TRAPZ, State->Getdt()*rate, vUVWdot, vUVWdot_prev);
131 vAeroUVW = vUVW + State->GetTl2b()*Atmosphere->GetWindNED();
133 Vt = vAeroUVW.Magnitude();
135 if (vAeroUVW(eW) != 0.0)
136 alpha = vAeroUVW(eU)*vAeroUVW(eU) > 0.0 ? atan2(vAeroUVW(eW), vAeroUVW(eU)) : 0.0;
137 if (vAeroUVW(eV) != 0.0)
138 beta = vAeroUVW(eU)*vAeroUVW(eU)+vAeroUVW(eW)*vAeroUVW(eW) > 0.0 ? atan2(vAeroUVW(eV),
139 sqrt(vAeroUVW(eU)*vAeroUVW(eU) + vAeroUVW(eW)*vAeroUVW(eW))) : 0.0;
141 // stolen, quite shamelessly, from LaRCsim
142 double mUW = (vAeroUVW(eU)*vAeroUVW(eU) + vAeroUVW(eW)*vAeroUVW(eW));
144 if (vAeroUVW(eU) != 0.0)
145 signU = vAeroUVW(eU)/fabs(vAeroUVW(eU));
147 if ( (mUW == 0.0) || (Vt == 0.0) ) {
151 adot = (vAeroUVW(eU)*vAeroUVW(eW) - vAeroUVW(eW)*vUVWdot(eU))/mUW;
152 bdot = (signU*mUW*vUVWdot(eV) - vAeroUVW(eV)*(vAeroUVW(eU)*vUVWdot(eU)
153 + vAeroUVW(eW)*vUVWdot(eW)))/(Vt*Vt*sqrt(mUW));
156 alpha = beta = adot = bdot = 0;
159 qbar = 0.5*Atmosphere->GetDensity()*Vt*Vt;
160 qbarUW = 0.5*Atmosphere->GetDensity()*(vAeroUVW(eU)*vAeroUVW(eU) + vAeroUVW(eW)*vAeroUVW(eW));
161 qbarUV = 0.5*Atmosphere->GetDensity()*(vAeroUVW(eU)*vAeroUVW(eU) + vAeroUVW(eV)*vAeroUVW(eV));
162 Mach = Vt / State->Geta();
164 if (debug_lvl > 1) Debug(1);
172 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
174 void FGTranslation::bind(void)
176 typedef double (FGTranslation::*PMF)(int) const;
177 PropertyManager->Tie("velocities/u-fps", this,1,
178 (PMF)&FGTranslation::GetUVW /*,
179 &FGTranslation::SetUVW,
181 PropertyManager->Tie("velocities/v-fps", this,2,
182 (PMF)&FGTranslation::GetUVW /*,
183 &FGTranslation::SetUVW,
185 PropertyManager->Tie("velocities/w-fps", this,3,
186 (PMF)&FGTranslation::GetUVW /*,
187 &FGTranslation::SetUVW,
189 PropertyManager->Tie("accelerations/udot-fps", this,1,
190 (PMF)&FGTranslation::GetUVWdot);
191 PropertyManager->Tie("accelerations/vdot-fps", this,2,
192 (PMF)&FGTranslation::GetUVWdot);
193 PropertyManager->Tie("accelerations/wdot-fps", this,3,
194 (PMF)&FGTranslation::GetUVWdot);
195 PropertyManager->Tie("velocities/u-aero-fps", this,1,
196 (PMF)&FGTranslation::GetAeroUVW);
197 PropertyManager->Tie("velocities/v-aero-fps", this,2,
198 (PMF)&FGTranslation::GetAeroUVW);
199 PropertyManager->Tie("velocities/w-aero-fps", this,3,
200 (PMF)&FGTranslation::GetAeroUVW);
201 PropertyManager->Tie("aero/alpha-rad", this,
202 &FGTranslation::Getalpha,
203 &FGTranslation::Setalpha,
205 PropertyManager->Tie("aero/beta-rad", this,
206 &FGTranslation::Getbeta,
207 &FGTranslation::Setbeta,
209 PropertyManager->Tie("aero/mag-beta-rad", this,
210 &FGTranslation::GetMagBeta);
211 PropertyManager->Tie("aero/qbar-psf", this,
212 &FGTranslation::Getqbar,
213 &FGTranslation::Setqbar,
215 PropertyManager->Tie("aero/qbarUW-psf", this,
216 &FGTranslation::GetqbarUW,
217 &FGTranslation::SetqbarUW,
219 PropertyManager->Tie("aero/qbarUV-psf", this,
220 &FGTranslation::GetqbarUV,
221 &FGTranslation::SetqbarUV,
223 PropertyManager->Tie("velocities/vt-fps", this,
224 &FGTranslation::GetVt,
225 &FGTranslation::SetVt,
227 PropertyManager->Tie("velocities/mach-norm", this,
228 &FGTranslation::GetMach,
229 &FGTranslation::SetMach,
231 PropertyManager->Tie("aero/alphadot-rad_sec", this,
232 &FGTranslation::Getadot,
233 &FGTranslation::Setadot,
235 PropertyManager->Tie("aero/betadot-rad_sec", this,
236 &FGTranslation::Getbdot,
237 &FGTranslation::Setbdot,
241 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
243 void FGTranslation::unbind(void)
245 PropertyManager->Untie("velocities/u-fps");
246 PropertyManager->Untie("velocities/v-fps");
247 PropertyManager->Untie("velocities/w-fps");
248 PropertyManager->Untie("accelerations/udot-fps");
249 PropertyManager->Untie("accelerations/vdot-fps");
250 PropertyManager->Untie("accelerations/wdot-fps");
251 PropertyManager->Untie("velocities/u-aero-fps");
252 PropertyManager->Untie("velocities/v-aero-fps");
253 PropertyManager->Untie("velocities/w-aero-fps");
254 PropertyManager->Untie("aero/alpha-rad");
255 PropertyManager->Untie("aero/beta-rad");
256 PropertyManager->Untie("aero/qbar-psf");
257 PropertyManager->Untie("aero/qbarUW-psf");
258 PropertyManager->Untie("aero/qbarUV-psf");
259 PropertyManager->Untie("velocities/vt-fps");
260 PropertyManager->Untie("velocities/mach-norm");
261 PropertyManager->Untie("aero/alphadot-rad_sec");
262 PropertyManager->Untie("aero/betadot-rad_sec");
263 PropertyManager->Untie("aero/mag-beta-rad");
266 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
267 // The bitmasked value choices are as follows:
268 // unset: In this case (the default) JSBSim would only print
269 // out the normally expected messages, essentially echoing
270 // the config files as they are read. If the environment
271 // variable is not set, debug_lvl is set to 1 internally
272 // 0: This requests JSBSim not to output any messages
274 // 1: This value explicity requests the normal JSBSim
276 // 2: This value asks for a message to be printed out when
277 // a class is instantiated
278 // 4: When this value is set, a message is displayed when a
279 // FGModel object executes its Run() method
280 // 8: When this value is set, various runtime state variables
281 // are printed out periodically
282 // 16: When set various parameters are sanity checked and
283 // a message is printed out when they go out of bounds
285 void FGTranslation::Debug(int from)
287 if (debug_lvl <= 0) return;
289 if (debug_lvl & 1) { // Standard console startup message output
290 if (from == 0) { // Constructor
294 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
295 if (from == 0) cout << "Instantiated: FGTranslation" << endl;
296 if (from == 1) cout << "Destroyed: FGTranslation" << endl;
298 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
300 if (debug_lvl & 8 ) { // Runtime state variables
302 if (debug_lvl & 16) { // Sanity checking
303 if (fabs(vUVW(eU)) > 1e6)
304 cout << "FGTranslation::U velocity out of bounds: " << vUVW(eU) << endl;
305 if (fabs(vUVW(eV)) > 1e6)
306 cout << "FGTranslation::V velocity out of bounds: " << vUVW(eV) << endl;
307 if (fabs(vUVW(eW)) > 1e6)
308 cout << "FGTranslation::W velocity out of bounds: " << vUVW(eW) << endl;
309 if (fabs(vUVWdot(eU)) > 1e4)
310 cout << "FGTranslation::U acceleration out of bounds: " << vUVWdot(eU) << endl;
311 if (fabs(vUVWdot(eV)) > 1e4)
312 cout << "FGTranslation::V acceleration out of bounds: " << vUVWdot(eV) << endl;
313 if (fabs(vUVWdot(eW)) > 1e4)
314 cout << "FGTranslation::W acceleration out of bounds: " << vUVWdot(eW) << endl;
315 if (Mach > 100 || Mach < 0.00)
316 cout << "FGTranslation::Mach is out of bounds: " << Mach << endl;
317 if (qbar > 1e6 || qbar < 0.00)
318 cout << "FGTranslation::qbar is out of bounds: " << qbar << endl;
320 if (debug_lvl & 64) {
321 if (from == 0) { // Constructor
322 cout << IdSrc << endl;
323 cout << IdHdr << endl;