]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/models/FGAerodynamics.cpp
829697024ae7143df6f7e4131c5cfe330de2deff
[flightgear.git] / src / FDM / JSBSim / models / FGAerodynamics.cpp
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Module:       FGAerodynamics.cpp
4  Author:       Jon S. Berndt
5  Date started: 09/13/00
6  Purpose:      Encapsulates the aerodynamic forces
7
8  ------------- Copyright (C) 2000  Jon S. Berndt (jon@jsbsim.org) -------------
9
10  This program is free software; you can redistribute it and/or modify it under
11  the terms of the GNU Lesser General Public License as published by the Free Software
12  Foundation; either version 2 of the License, or (at your option) any later
13  version.
14
15  This program is distributed in the hope that it will be useful, but WITHOUT
16  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
18  details.
19
20  You should have received a copy of the GNU Lesser General Public License along with
21  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
22  Place - Suite 330, Boston, MA  02111-1307, USA.
23
24  Further information about the GNU Lesser General Public License can also be found on
25  the world wide web at http://www.gnu.org.
26
27 FUNCTIONAL DESCRIPTION
28 --------------------------------------------------------------------------------
29
30 HISTORY
31 --------------------------------------------------------------------------------
32 09/13/00   JSB   Created
33 04/22/01   JSB   Moved code into here from FGAircraft
34
35 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36 INCLUDES
37 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
38
39 #include <FGFDMExec.h>
40 #include "FGAerodynamics.h"
41 #include "FGPropagate.h"
42 #include "FGAircraft.h"
43 #include "FGAuxiliary.h"
44 #include "FGMassBalance.h"
45 #include <input_output/FGPropertyManager.h>
46
47 namespace JSBSim {
48
49 static const char *IdSrc = "$Id$";
50 static const char *IdHdr = ID_AERODYNAMICS;
51
52 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
53 CLASS IMPLEMENTATION
54 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
55
56
57 FGAerodynamics::FGAerodynamics(FGFDMExec* FDMExec) : FGModel(FDMExec)
58 {
59   Name = "FGAerodynamics";
60
61   AxisIdx["DRAG"]   = 0;
62   AxisIdx["SIDE"]   = 1;
63   AxisIdx["LIFT"]   = 2;
64   AxisIdx["ROLL"]   = 3;
65   AxisIdx["PITCH"]  = 4;
66   AxisIdx["YAW"]    = 5;
67
68   AxisIdx["AXIAL"]  = 0;
69   AxisIdx["NORMAL"] = 2;
70
71   AxisIdx["X"] = 0;
72   AxisIdx["Y"] = 1;
73   AxisIdx["Z"] = 2;
74
75   axisType = atNone;
76
77   Coeff = new CoeffArray[6];
78
79   impending_stall = stall_hyst = 0.0;
80   alphaclmin = alphaclmax = 0.0;
81   alphahystmin = alphahystmax = 0.0;
82   clsq = lod = 0.0;
83   alphaw = 0.0;
84   bi2vel = ci2vel = 0.0;
85   AeroRPShift = 0;
86   vDeltaRP.InitMatrix();
87
88   bind();
89
90   Debug(0);
91 }
92
93 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
94
95 FGAerodynamics::~FGAerodynamics()
96 {
97   unsigned int i,j;
98
99   for (i=0; i<6; i++)
100     for (j=0; j<Coeff[i].size(); j++)
101       delete Coeff[i][j];
102
103   delete[] Coeff;
104
105   for (i=0; i<variables.size(); i++)
106     delete variables[i];
107
108   delete AeroRPShift;
109
110   Debug(1);
111 }
112
113 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
114
115 bool FGAerodynamics::InitModel(void)
116 {
117   if (!FGModel::InitModel()) return false;
118
119   impending_stall = stall_hyst = 0.0;
120   alphaclmin = alphaclmax = 0.0;
121   alphahystmin = alphahystmax = 0.0;
122   clsq = lod = 0.0;
123   alphaw = 0.0;
124   bi2vel = ci2vel = 0.0;
125   AeroRPShift = 0;
126   vDeltaRP.InitMatrix();
127
128   return true;
129 }
130 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
131
132 bool FGAerodynamics::Run(void)
133 {
134   unsigned int axis_ctr, ctr, i;
135   double alpha, twovel;
136
137   if (FGModel::Run()) return true;
138   if (FDMExec->Holding()) return false; // if paused don't execute
139
140   // calculate some oft-used quantities for speed
141
142   twovel = 2*Auxiliary->GetVt();
143   if (twovel != 0) {
144     bi2vel = Aircraft->GetWingSpan() / twovel;
145     ci2vel = Aircraft->Getcbar() / twovel;
146   }
147   alphaw = Auxiliary->Getalpha() + Aircraft->GetWingIncidence();
148   alpha = Auxiliary->Getalpha();
149   qbar_area = Aircraft->GetWingArea() * Auxiliary->Getqbar();
150
151   if (alphaclmax != 0) {
152     if (alpha > 0.85*alphaclmax) {
153       impending_stall = 10*(alpha/alphaclmax - 0.85);
154     } else {
155       impending_stall = 0;
156     }
157   }
158
159   if (alphahystmax != 0.0 && alphahystmin != 0.0) {
160     if (alpha > alphahystmax) {
161        stall_hyst = 1;
162     } else if (alpha < alphahystmin) {
163        stall_hyst = 0;
164     }
165   }
166
167   vFw.InitMatrix();
168   vFnative.InitMatrix();
169
170   // Tell the variable functions to cache their values, so while the aerodynamic
171   // functions are being calculated for each axis, these functions do not get
172   // calculated each time, but instead use the values that have already
173   // been calculated for this frame.
174
175   for (i=0; i<variables.size(); i++) variables[i]->cacheValue(true);
176
177   for (axis_ctr = 0; axis_ctr < 3; axis_ctr++) {
178     for (ctr=0; ctr < Coeff[axis_ctr].size(); ctr++) {
179       vFnative(axis_ctr+1) += Coeff[axis_ctr][ctr]->GetValue();
180     }
181   }
182
183   // Note that we still need to convert to wind axes here, because it is
184   // used in the L/D calculation, and we still may want to look at Lift
185   // and Drag.
186
187   switch (axisType) {
188     case atBodyXYZ:       // Forces already in body axes; no manipulation needed
189       vFw = GetTb2w()*vFnative;
190       vForces = vFnative;
191       break;
192     case atLiftDrag:      // Copy forces into wind axes
193       vFw = vFnative;
194       vFw(eDrag)*=-1; vFw(eLift)*=-1;
195       vForces = GetTw2b()*vFw;
196       break;
197     case atAxialNormal:   // Convert native forces into Axial|Normal|Side system
198       vFw = GetTb2w()*vFnative;
199       vFnative(eX)*=-1; vFnative(eZ)*=-1;
200       vForces = vFnative;
201       break;
202     default:
203       cerr << endl << "  A proper axis type has NOT been selected. Check "
204                    << "your aerodynamics definition." << endl;
205       exit(-1);
206   }
207
208   // Calculate aerodynamic reference point shift, if any
209   if (AeroRPShift) vDeltaRP(eX) = AeroRPShift->GetValue()*Aircraft->Getcbar()*12.0;
210
211   // Calculate lift coefficient squared
212   if ( Auxiliary->Getqbar() > 0) {
213     clsq = vFw(eLift) / (Aircraft->GetWingArea()*Auxiliary->Getqbar());
214     clsq *= clsq;
215   }
216
217   // Calculate lift Lift over Drag
218   if ( fabs(vFw(eDrag)) > 0.0) lod = fabs( vFw(eLift) / vFw(eDrag) );
219
220   vDXYZcg = MassBalance->StructuralToBody(Aircraft->GetXYZrp() + vDeltaRP);
221
222   vMoments = vDXYZcg*vForces; // M = r X F
223
224   for (axis_ctr = 0; axis_ctr < 3; axis_ctr++) {
225     for (ctr = 0; ctr < Coeff[axis_ctr+3].size(); ctr++) {
226       vMoments(axis_ctr+1) += Coeff[axis_ctr+3][ctr]->GetValue();
227     }
228   }
229
230   return false;
231 }
232
233 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
234 //
235 // From Stevens and Lewis, "Aircraft Control and Simulation", 3rd Ed., the
236 // transformation from body to wind axes is defined (where "a" is alpha and "B"
237 // is beta):
238 //
239 //   cos(a)*cos(B)     sin(B)    sin(a)*cos(B)
240 //  -cos(a)*sin(B)     cos(B)   -sin(a)*sin(B)
241 //  -sin(a)              0       cos(a)
242 //
243 // The transform from wind to body axes is then,
244 //
245 //   cos(a)*cos(B)  -cos(a)*sin(B)  -sin(a)
246 //          sin(B)          cos(B)     0
247 //   sin(a)*cos(B)  -sin(a)*sin(B)   cos(a)
248
249 FGMatrix33& FGAerodynamics::GetTw2b(void)
250 {
251   double ca, cb, sa, sb;
252
253   double alpha = Auxiliary->Getalpha();
254   double beta  = Auxiliary->Getbeta();
255
256   ca = cos(alpha);
257   sa = sin(alpha);
258   cb = cos(beta);
259   sb = sin(beta);
260
261   mTw2b(1,1) =  ca*cb;
262   mTw2b(1,2) = -ca*sb;
263   mTw2b(1,3) = -sa;
264   mTw2b(2,1) =  sb;
265   mTw2b(2,2) =  cb;
266   mTw2b(2,3) =  0.0;
267   mTw2b(3,1) =  sa*cb;
268   mTw2b(3,2) = -sa*sb;
269   mTw2b(3,3) =  ca;
270
271   return mTw2b;
272 }
273
274 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
275
276 FGMatrix33& FGAerodynamics::GetTb2w(void)
277 {
278   double alpha,beta;
279   double ca, cb, sa, sb;
280
281   alpha = Auxiliary->Getalpha();
282   beta  = Auxiliary->Getbeta();
283
284   ca = cos(alpha);
285   sa = sin(alpha);
286   cb = cos(beta);
287   sb = sin(beta);
288
289   mTb2w(1,1) = ca*cb;
290   mTb2w(1,2) = sb;
291   mTb2w(1,3) = sa*cb;
292   mTb2w(2,1) = -ca*sb;
293   mTb2w(2,2) = cb;
294   mTb2w(2,3) = -sa*sb;
295   mTb2w(3,1) = -sa;
296   mTb2w(3,2) = 0.0;
297   mTb2w(3,3) = ca;
298
299   return mTb2w;
300 }
301
302 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
303
304 bool FGAerodynamics::Load(Element *element)
305 {
306   string parameter, axis, scratch;
307   string scratch_unit="";
308   string fname="", file="";
309   Element *temp_element, *axis_element, *function_element;
310
311   string separator = "/";
312
313   fname = element->GetAttributeValue("file");
314   if (!fname.empty()) {
315     file = FDMExec->GetFullAircraftPath() + separator + fname;
316     document = LoadXMLDocument(file);
317   } else {
318     document = element;
319   }
320
321   FGModel::Load(element); // Perform base class Load
322
323   DetermineAxisSystem(); // Detemine if Lift/Side/Drag, etc. is used.
324
325   Debug(2);
326
327   if (temp_element = document->FindElement("alphalimits")) {
328     scratch_unit = temp_element->GetAttributeValue("unit");
329     if (scratch_unit.empty()) scratch_unit = "RAD";
330     alphaclmin = temp_element->FindElementValueAsNumberConvertFromTo("min", scratch_unit, "RAD");
331     alphaclmax = temp_element->FindElementValueAsNumberConvertFromTo("max", scratch_unit, "RAD");
332   }
333
334   if (temp_element = document->FindElement("hysteresis_limits")) {
335     scratch_unit = temp_element->GetAttributeValue("unit");
336     if (scratch_unit.empty()) scratch_unit = "RAD";
337     alphahystmin = temp_element->FindElementValueAsNumberConvertFromTo("min", scratch_unit, "RAD");
338     alphahystmax = temp_element->FindElementValueAsNumberConvertFromTo("max", scratch_unit, "RAD");
339   }
340
341   if (temp_element = document->FindElement("aero_ref_pt_shift_x")) {
342     function_element = temp_element->FindElement("function");
343     AeroRPShift = new FGFunction(PropertyManager, function_element);
344   }
345
346   function_element = document->FindElement("function");
347   while (function_element) {
348     variables.push_back( new FGFunction(PropertyManager, function_element) );
349     function_element = document->FindNextElement("function");
350   }
351
352   axis_element = document->FindElement("axis");
353   while (axis_element) {
354     CoeffArray ca;
355     axis = axis_element->GetAttributeValue("name");
356     function_element = axis_element->FindElement("function");
357     while (function_element) {
358       ca.push_back( new FGFunction(PropertyManager, function_element) );
359       function_element = axis_element->FindNextElement("function");
360     }
361     Coeff[AxisIdx[axis]] = ca;
362     axis_element = document->FindNextElement("axis");
363   }
364
365   return true;
366 }
367
368 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
369 //
370 // This private class function checks to verify consistency in the choice of
371 // aerodynamic axes used in the config file. One set of LIFT|DRAG|SIDE, or 
372 // X|Y|Z, or AXIAL|NORMAL|SIDE must be chosen; mixed system axes are not allowed.
373 // Note that if the "SIDE" axis specifier is entered first in a config file, 
374 // a warning message will be given IF the AXIAL|NORMAL specifiers are also given.
375 // This is OK, and the warning is due to the SIDE specifier used for both
376 // the Lift/Drag and Axial/Normal axis systems.
377
378 void FGAerodynamics::DetermineAxisSystem()
379 {
380   Element* axis_element = document->FindElement("axis");
381   string axis;
382   while (axis_element) {
383     axis = axis_element->GetAttributeValue("name");
384     if (axis == "LIFT" || axis == "DRAG" || axis == "SIDE") {
385       if (axisType == atNone) axisType = atLiftDrag;
386       else if (axisType != atLiftDrag) {
387         cerr << endl << "  Mixed aerodynamic axis systems have been used in the"
388                      << " aircraft config file." << endl;
389       }
390     } else if (axis == "AXIAL" || axis == "NORMAL") {
391       if (axisType == atNone) axisType = atAxialNormal;
392       else if (axisType != atAxialNormal) {
393         cerr << endl << "  Mixed aerodynamic axis systems have been used in the"
394                      << " aircraft config file." << endl;
395       }
396     } else if (axis == "X" || axis == "Y" || axis == "Z") {
397       if (axisType == atNone) axisType = atBodyXYZ;
398       else if (axisType != atBodyXYZ) {
399         cerr << endl << "  Mixed aerodynamic axis systems have been used in the"
400                      << " aircraft config file." << endl;
401       }
402     } else if (axis != "ROLL" && axis != "PITCH" && axis != "YAW") { // error
403       cerr << endl << "  An unknown axis type, " << axis << " has been specified"
404                    << " in the aircraft configuration file." << endl;
405       exit(-1);
406     }
407     axis_element = document->FindNextElement("axis");
408   }
409   if (axisType == atNone) {
410     axisType = atLiftDrag;
411     cerr << endl << "  The aerodynamic axis system has been set by default"
412                  << " to the Lift/Side/Drag system." << endl;
413   }
414 }
415
416 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
417
418 string FGAerodynamics::GetCoefficientStrings(string delimeter)
419 {
420   string CoeffStrings = "";
421   bool firstime = true;
422   unsigned int axis, sd;
423
424   for (sd = 0; sd < variables.size(); sd++) {
425     if (firstime) {
426       firstime = false;
427     } else {
428       CoeffStrings += delimeter;
429     }
430     CoeffStrings += variables[sd]->GetName();
431   }
432
433   for (axis = 0; axis < 6; axis++) {
434     for (sd = 0; sd < Coeff[axis].size(); sd++) {
435       if (firstime) {
436         firstime = false;
437       } else {
438         CoeffStrings += delimeter;
439       }
440       CoeffStrings += Coeff[axis][sd]->GetName();
441     }
442   }
443   return CoeffStrings;
444 }
445
446 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
447
448 string FGAerodynamics::GetCoefficientValues(string delimeter)
449 {
450   string SDValues = "";
451   bool firstime = true;
452   unsigned int sd;
453
454   for (sd = 0; sd < variables.size(); sd++) {
455     if (firstime) {
456       firstime = false;
457     } else {
458       SDValues += delimeter;
459     }
460     SDValues += variables[sd]->GetValueAsString();
461   }
462
463   for (unsigned int axis = 0; axis < 6; axis++) {
464     for (unsigned int sd = 0; sd < Coeff[axis].size(); sd++) {
465       if (firstime) {
466         firstime = false;
467       } else {
468         SDValues += delimeter;
469       }
470       SDValues += Coeff[axis][sd]->GetValueAsString();
471     }
472   }
473
474   return SDValues;
475 }
476
477 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
478
479 void FGAerodynamics::bind(void)
480 {
481   typedef double (FGAerodynamics::*PMF)(int) const;
482
483   PropertyManager->Tie("forces/fbx-aero-lbs", this,1,
484                        (PMF)&FGAerodynamics::GetForces);
485   PropertyManager->Tie("forces/fby-aero-lbs", this,2,
486                        (PMF)&FGAerodynamics::GetForces);
487   PropertyManager->Tie("forces/fbz-aero-lbs", this,3,
488                        (PMF)&FGAerodynamics::GetForces);
489   PropertyManager->Tie("moments/l-aero-lbsft", this,1,
490                        (PMF)&FGAerodynamics::GetMoments);
491   PropertyManager->Tie("moments/m-aero-lbsft", this,2,
492                        (PMF)&FGAerodynamics::GetMoments);
493   PropertyManager->Tie("moments/n-aero-lbsft", this,3,
494                        (PMF)&FGAerodynamics::GetMoments);
495   PropertyManager->Tie("forces/fwx-aero-lbs", this,1,
496                        (PMF)&FGAerodynamics::GetvFw);
497   PropertyManager->Tie("forces/fwy-aero-lbs", this,2,
498                        (PMF)&FGAerodynamics::GetvFw);
499   PropertyManager->Tie("forces/fwz-aero-lbs", this,3,
500                        (PMF)&FGAerodynamics::GetvFw);
501   PropertyManager->Tie("forces/lod-norm", this,
502                        &FGAerodynamics::GetLoD);
503   PropertyManager->Tie("aero/cl-squared", this,
504                        &FGAerodynamics::GetClSquared);
505   PropertyManager->Tie("aero/qbar-area", &qbar_area);
506   PropertyManager->Tie("aero/alpha-max-rad", this,
507                        &FGAerodynamics::GetAlphaCLMax,
508                        &FGAerodynamics::SetAlphaCLMax,
509                        true);
510   PropertyManager->Tie("aero/alpha-min-rad", this,
511                        &FGAerodynamics::GetAlphaCLMin,
512                        &FGAerodynamics::SetAlphaCLMin,
513                        true);
514   PropertyManager->Tie("aero/bi2vel", this,
515                        &FGAerodynamics::GetBI2Vel);
516   PropertyManager->Tie("aero/ci2vel", this,
517                        &FGAerodynamics::GetCI2Vel);
518   PropertyManager->Tie("aero/alpha-wing-rad", this,
519                        &FGAerodynamics::GetAlphaW);
520   PropertyManager->Tie("systems/stall-warn-norm", this,
521                         &FGAerodynamics::GetStallWarn);
522   PropertyManager->Tie("aero/stall-hyst-norm", this,
523                         &FGAerodynamics::GetHysteresisParm);
524 }
525
526 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
527 //    The bitmasked value choices are as follows:
528 //    unset: In this case (the default) JSBSim would only print
529 //       out the normally expected messages, essentially echoing
530 //       the config files as they are read. If the environment
531 //       variable is not set, debug_lvl is set to 1 internally
532 //    0: This requests JSBSim not to output any messages
533 //       whatsoever.
534 //    1: This value explicity requests the normal JSBSim
535 //       startup messages
536 //    2: This value asks for a message to be printed out when
537 //       a class is instantiated
538 //    4: When this value is set, a message is displayed when a
539 //       FGModel object executes its Run() method
540 //    8: When this value is set, various runtime state variables
541 //       are printed out periodically
542 //    16: When set various parameters are sanity checked and
543 //       a message is printed out when they go out of bounds
544
545 void FGAerodynamics::Debug(int from)
546 {
547   if (debug_lvl <= 0) return;
548
549   if (debug_lvl & 1) { // Standard console startup message output
550     if (from == 2) { // Loader
551       switch (axisType) {
552         case (atLiftDrag):
553           cout << endl << "  Aerodynamics (Lift|Side|Drag axes):" << endl << endl;
554           break;
555         case (atAxialNormal):
556           cout << endl << "  Aerodynamics (Axial|Side|Normal axes):" << endl << endl;
557           break;
558         case (atBodyXYZ):
559           cout << endl << "  Aerodynamics (X|Y|Z axes):" << endl << endl;
560           break;
561       }
562     }
563   }
564   if (debug_lvl & 2 ) { // Instantiation/Destruction notification
565     if (from == 0) cout << "Instantiated: FGAerodynamics" << endl;
566     if (from == 1) cout << "Destroyed:    FGAerodynamics" << endl;
567   }
568   if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
569   }
570   if (debug_lvl & 8 ) { // Runtime state variables
571   }
572   if (debug_lvl & 16) { // Sanity checking
573   }
574   if (debug_lvl & 64) {
575     if (from == 0) { // Constructor
576       cout << IdSrc << endl;
577       cout << IdHdr << endl;
578     }
579   }
580 }
581
582 } // namespace JSBSim