]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AIBase.cxx
Be a bit more descriptive on "PT_vs_hpt: ran out of layers"
[flightgear.git] / src / AIModel / AIBase.cxx
1 // FGAIBase - abstract base class for AI objects
2 // Written by David Culp, started Nov 2003, based on
3 // David Luff's FGAIEntity class.
4 // - davidculp2@comcast.net
5 //
6 // With additions by Mathias Froehlich & Vivian Meazza 2004 -2007
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21
22
23 #ifdef HAVE_CONFIG_H
24 #  include <config.h>
25 #endif
26
27 #include <simgear/compiler.h>
28
29 #include <string>
30
31 #include <osg/ref_ptr>
32 #include <osg/Node>
33 #include <osgDB/FileUtils>
34
35 #include <simgear/math/SGMath.hxx>
36 #include <simgear/misc/sg_path.hxx>
37 #include <simgear/scene/model/modellib.hxx>
38 #include <simgear/scene/util/SGNodeMasks.hxx>
39 #include <simgear/debug/logstream.hxx>
40 #include <simgear/props/props.hxx>
41
42 #include <Main/globals.hxx>
43 #include <Scenery/scenery.hxx>
44 #include <Scripting/NasalSys.hxx>
45
46 #include "AIBase.hxx"
47 #include "AIManager.hxx"
48
49 const char *default_model = "Models/Geometry/glider.ac";
50 const double FGAIBase::e = 2.71828183;
51 const double FGAIBase::lbs_to_slugs = 0.031080950172;   //conversion factor
52
53 using namespace simgear;
54
55 FGAIBase::FGAIBase(object_type ot) :
56     props( NULL ),
57     model_removed( fgGetNode("/ai/models/model-removed", true) ),
58     manager( NULL ),
59     fp( NULL ),
60
61     _impact_lat(0),
62     _impact_lon(0),
63     _impact_elev(0),
64     _impact_hdg(0),
65     _impact_pitch(0),
66     _impact_roll(0),
67     _impact_speed(0),
68
69     _refID( _newAIModelID() ),
70     _otype(ot),
71     _initialized(false)
72 {
73     tgt_heading = hdg = tgt_altitude_ft = tgt_speed = 0.0;
74     tgt_roll = roll = tgt_pitch = tgt_yaw = tgt_vs = vs = pitch = 0.0;
75     bearing = elevation = range = rdot = 0.0;
76     x_shift = y_shift = rotation = 0.0;
77     in_range = false;
78     invisible = false;
79     no_roll = true;
80     life = 900;
81     delete_me = false;
82     _impact_reported = false;
83     _collision_reported = false;
84     _expiry_reported = false;
85
86     _subID = 0;
87
88     _x_offset = 0;
89     _y_offset = 0;
90     _z_offset = 0;
91
92     _pitch_offset = 0;
93     _roll_offset = 0;
94     _yaw_offset = 0;
95
96     userpos = SGGeod::fromDeg(0, 0);
97
98     pos = SGGeod::fromDeg(0, 0);
99     speed = 0;
100     altitude_ft = 0;
101     speed_north_deg_sec = 0;
102     speed_east_deg_sec = 0;
103     turn_radius_ft = 0;
104
105     ft_per_deg_lon = 0;
106     ft_per_deg_lat = 0;
107
108     horiz_offset = 0;
109     vert_offset = 0;
110     ht_diff = 0;
111
112     serviceable = false;
113
114     fp = 0;
115
116     rho = 1;
117     T = 280;
118     p = 1e5;
119     a = 340;
120     Mach = 0;
121 }
122
123 FGAIBase::~FGAIBase() {
124     // Unregister that one at the scenery manager
125     if (globals->get_scenery()) {
126         globals->get_scenery()->get_scene_graph()->removeChild(aip.getSceneGraph());
127     }
128
129     if (props) {
130         SGPropertyNode* parent = props->getParent();
131
132         if (parent)
133             model_removed->setStringValue(props->getPath());
134     }
135     delete fp;
136     fp = 0;
137 }
138
139 void FGAIBase::readFromScenario(SGPropertyNode* scFileNode)
140 {
141     if (!scFileNode)
142         return;
143
144     setPath(scFileNode->getStringValue("model",
145             fgGetString("/sim/multiplay/default-model", default_model)));
146
147     setHeading(scFileNode->getDoubleValue("heading", 0.0));
148     setSpeed(scFileNode->getDoubleValue("speed", 0.0));
149     setAltitude(scFileNode->getDoubleValue("altitude", 0.0));
150     setLongitude(scFileNode->getDoubleValue("longitude", 0.0));
151     setLatitude(scFileNode->getDoubleValue("latitude", 0.0));
152     setBank(scFileNode->getDoubleValue("roll", 0.0));
153
154     SGPropertyNode* submodels = scFileNode->getChild("submodels");
155
156     if (submodels) {
157         setServiceable(submodels->getBoolValue("serviceable", false));
158         setSMPath(submodels->getStringValue("path", ""));
159     }
160
161 }
162
163 void FGAIBase::update(double dt) {
164
165     if (_otype == otStatic)
166         return;
167
168     if (_otype == otBallistic)
169         CalculateMach();
170
171     ft_per_deg_lat = 366468.96 - 3717.12 * cos(pos.getLatitudeRad());
172     ft_per_deg_lon = 365228.16 * cos(pos.getLatitudeRad());
173 }
174
175 void FGAIBase::Transform() {
176
177     if (!invisible) {
178         aip.setVisible(true);
179         aip.setPosition(pos);
180
181         if (no_roll)
182             aip.setOrientation(0.0, pitch, hdg);
183         else
184             aip.setOrientation(roll, pitch, hdg);
185
186         aip.update();
187     } else {
188         aip.setVisible(false);
189         aip.update();
190     }
191
192 }
193
194 bool FGAIBase::init(bool search_in_AI_path) {
195     osg::ref_ptr<osgDB::ReaderWriter::Options> opt=
196         new osgDB::ReaderWriter::Options(*osgDB::Registry::instance()->getOptions());
197
198     if(search_in_AI_path)
199     {
200         SGPath ai_path(globals->get_fg_root());
201         ai_path.append("AI");
202         opt->getDatabasePathList().push_front(ai_path.str());
203     }
204
205     string f = osgDB::findDataFile(model_path, opt.get());
206
207     if(f.empty())
208         f = fgGetString("/sim/multiplay/default-model", default_model);
209
210     model = load3DModel(f, props);
211
212     if (model.valid() && _initialized == false) {
213         aip.init( model.get() );
214         aip.setVisible(true);
215         invisible = false;
216         globals->get_scenery()->get_scene_graph()->addChild(aip.getSceneGraph());
217         _initialized = true;
218
219     } else if (!model_path.empty()) {
220         SG_LOG(SG_INPUT, SG_WARN, "AIBase: Could not load model " << model_path);
221     }
222
223     setDie(false);
224     return true;
225 }
226
227 void FGAIBase::initModel(osg::Node *node)
228 {
229     if (model.valid()) {
230         if( _path != ""){
231             props->setStringValue("submodels/path", _path.c_str());
232             SG_LOG(SG_INPUT, SG_DEBUG, "AIBase: submodels/path " << _path);
233         }
234         fgSetString("/ai/models/model-added", props->getPath().c_str());
235     } else if (!model_path.empty()) {
236         SG_LOG(SG_INPUT, SG_WARN, "AIBase: Could not load model " << model_path);
237     }
238
239     //props->setStringValue("submodels/path", _path.c_str()); 
240     setDie(false);
241 }
242
243
244 osg::Node* FGAIBase::load3DModel(const string &path, SGPropertyNode *prop_root)
245 {
246   model = SGModelLib::loadPagedModel(path, prop_root, new FGNasalModelData(prop_root));
247   initModel(model.get());
248   return model.get();
249 }
250
251 bool FGAIBase::isa( object_type otype ) {
252     return otype == _otype;
253 }
254
255
256 void FGAIBase::bind() {
257     props->tie("id", SGRawValueMethods<FGAIBase,int>(*this,
258         &FGAIBase::getID));
259     props->tie("velocities/true-airspeed-kt",  SGRawValuePointer<double>(&speed));
260     props->tie("velocities/vertical-speed-fps",
261         SGRawValueMethods<FGAIBase,double>(*this,
262         &FGAIBase::_getVS_fps,
263         &FGAIBase::_setVS_fps));
264
265     props->tie("position/altitude-ft",
266         SGRawValueMethods<FGAIBase,double>(*this,
267         &FGAIBase::_getAltitude,
268         &FGAIBase::_setAltitude));
269     props->tie("position/latitude-deg",
270         SGRawValueMethods<FGAIBase,double>(*this,
271         &FGAIBase::_getLatitude,
272         &FGAIBase::_setLatitude));
273     props->tie("position/longitude-deg",
274         SGRawValueMethods<FGAIBase,double>(*this,
275         &FGAIBase::_getLongitude,
276         &FGAIBase::_setLongitude));
277
278     props->tie("position/global-x",
279         SGRawValueMethods<FGAIBase,double>(*this,
280         &FGAIBase::_getCartPosX,
281         0));
282     props->tie("position/global-y",
283         SGRawValueMethods<FGAIBase,double>(*this,
284         &FGAIBase::_getCartPosY,
285         0));
286     props->tie("position/global-z",
287         SGRawValueMethods<FGAIBase,double>(*this,
288         &FGAIBase::_getCartPosZ,
289         0));
290     props->tie("callsign",
291         SGRawValueMethods<FGAIBase,const char*>(*this,
292         &FGAIBase::_getCallsign,
293         0));
294
295     props->tie("orientation/pitch-deg",   SGRawValuePointer<double>(&pitch));
296     props->tie("orientation/roll-deg",    SGRawValuePointer<double>(&roll));
297     props->tie("orientation/true-heading-deg", SGRawValuePointer<double>(&hdg));
298
299     props->tie("radar/in-range", SGRawValuePointer<bool>(&in_range));
300     props->tie("radar/bearing-deg",   SGRawValuePointer<double>(&bearing));
301     props->tie("radar/elevation-deg", SGRawValuePointer<double>(&elevation));
302     props->tie("radar/range-nm", SGRawValuePointer<double>(&range));
303     props->tie("radar/h-offset", SGRawValuePointer<double>(&horiz_offset));
304     props->tie("radar/v-offset", SGRawValuePointer<double>(&vert_offset));
305     props->tie("radar/x-shift", SGRawValuePointer<double>(&x_shift));
306     props->tie("radar/y-shift", SGRawValuePointer<double>(&y_shift));
307     props->tie("radar/rotation", SGRawValuePointer<double>(&rotation));
308     props->tie("radar/ht-diff-ft", SGRawValuePointer<double>(&ht_diff));
309     props->tie("subID", SGRawValuePointer<int>(&_subID));
310     props->tie("controls/lighting/nav-lights",
311         SGRawValueFunctions<bool>(_isNight));
312     props->setBoolValue("controls/lighting/beacon", true);
313     props->setBoolValue("controls/lighting/strobe", true);
314     props->setBoolValue("controls/glide-path", true);
315
316     props->setStringValue("controls/flight/lateral-mode", "roll");
317     props->setDoubleValue("controls/flight/target-hdg", hdg);
318     props->setDoubleValue("controls/flight/target-roll", roll);
319
320     props->setStringValue("controls/flight/longitude-mode", "alt");
321     props->setDoubleValue("controls/flight/target-alt", altitude_ft);
322     props->setDoubleValue("controls/flight/target-pitch", pitch);
323
324    props->setDoubleValue("controls/flight/target-spd", speed);
325
326 }
327
328 void FGAIBase::unbind() {
329     props->untie("id");
330     props->untie("velocities/true-airspeed-kt");
331     props->untie("velocities/vertical-speed-fps");
332
333     props->untie("position/altitude-ft");
334     props->untie("position/latitude-deg");
335     props->untie("position/longitude-deg");
336     props->untie("position/global-x");
337     props->untie("position/global-y");
338     props->untie("position/global-z");
339     props->untie("callsign");
340
341     props->untie("orientation/pitch-deg");
342     props->untie("orientation/roll-deg");
343     props->untie("orientation/true-heading-deg");
344
345     props->untie("radar/in-range");
346     props->untie("radar/bearing-deg");
347     props->untie("radar/elevation-deg");
348     props->untie("radar/range-nm");
349     props->untie("radar/h-offset");
350     props->untie("radar/v-offset");
351     props->untie("radar/x-shift");
352     props->untie("radar/y-shift");
353     props->untie("radar/rotation");
354     props->untie("radar/ht-diff-ft");
355
356     props->untie("controls/lighting/nav-lights");
357
358     props->setBoolValue("/sim/controls/radar/", true);
359
360 }
361
362 double FGAIBase::UpdateRadar(FGAIManager* manager) {
363     bool control = fgGetBool("/sim/controls/radar", true);
364
365     if(!control) return 0;
366
367     double radar_range_ft2 = fgGetDouble("/instrumentation/radar/range");
368     bool force_on = fgGetBool("/instrumentation/radar/debug-mode", false);
369     radar_range_ft2 *= SG_NM_TO_METER * SG_METER_TO_FEET * 1.1; // + 10%
370     radar_range_ft2 *= radar_range_ft2;
371
372     double user_latitude  = manager->get_user_latitude();
373     double user_longitude = manager->get_user_longitude();
374     double lat_range = fabs(pos.getLatitudeDeg() - user_latitude) * ft_per_deg_lat;
375     double lon_range = fabs(pos.getLongitudeDeg() - user_longitude) * ft_per_deg_lon;
376     double range_ft2 = lat_range*lat_range + lon_range*lon_range;
377
378     //
379     // Test whether the target is within radar range.
380     //
381     in_range = (range_ft2 && (range_ft2 <= radar_range_ft2));
382
383     if ( in_range || force_on ) {
384         props->setBoolValue("radar/in-range", true);
385
386         // copy values from the AIManager
387         double user_altitude  = manager->get_user_altitude();
388         double user_heading   = manager->get_user_heading();
389         double user_pitch     = manager->get_user_pitch();
390         //double user_yaw       = manager->get_user_yaw();
391         //double user_speed     = manager->get_user_speed();
392
393         // calculate range to target in feet and nautical miles
394         double range_ft = sqrt( range_ft2 );
395         range = range_ft / 6076.11549;
396
397         // calculate bearing to target
398         if (pos.getLatitudeDeg() >= user_latitude) {
399             bearing = atan2(lat_range, lon_range) * SG_RADIANS_TO_DEGREES;
400             if (pos.getLongitudeDeg() >= user_longitude) {
401                 bearing = 90.0 - bearing;
402             } else {
403                 bearing = 270.0 + bearing;
404             }
405         } else {
406             bearing = atan2(lon_range, lat_range) * SG_RADIANS_TO_DEGREES;
407             if (pos.getLongitudeDeg() >= user_longitude) {
408                 bearing = 180.0 - bearing;
409             } else {
410                 bearing = 180.0 + bearing;
411             }
412         }
413
414         // This is an alternate way to compute bearing and distance which
415         // agrees with the original scheme within about 0.1 degrees.
416         //
417         // Point3D start( user_longitude * SGD_DEGREES_TO_RADIANS,
418         //                user_latitude * SGD_DEGREES_TO_RADIANS, 0 );
419         // Point3D dest( pos.getLongitudeRad(), pos.getLatitudeRad(), 0 );
420         // double gc_bearing, gc_range;
421         // calc_gc_course_dist( start, dest, &gc_bearing, &gc_range );
422         // gc_range *= SG_METER_TO_NM;
423         // gc_bearing *= SGD_RADIANS_TO_DEGREES;
424         // printf("orig b = %.3f %.2f  gc b= %.3f, %.2f\n",
425         //        bearing, range, gc_bearing, gc_range);
426
427         // calculate look left/right to target, without yaw correction
428         horiz_offset = bearing - user_heading;
429         if (horiz_offset > 180.0) horiz_offset -= 360.0;
430         if (horiz_offset < -180.0) horiz_offset += 360.0;
431
432         // calculate elevation to target
433         elevation = atan2( altitude_ft - user_altitude, range_ft ) * SG_RADIANS_TO_DEGREES;
434
435         // calculate look up/down to target
436         vert_offset = elevation - user_pitch;
437
438         /* this calculation needs to be fixed, but it isn't important anyway
439         // calculate range rate
440         double recip_bearing = bearing + 180.0;
441         if (recip_bearing > 360.0) recip_bearing -= 360.0;
442         double my_horiz_offset = recip_bearing - hdg;
443         if (my_horiz_offset > 180.0) my_horiz_offset -= 360.0;
444         if (my_horiz_offset < -180.0) my_horiz_offset += 360.0;
445         rdot = (-user_speed * cos( horiz_offset * SG_DEGREES_TO_RADIANS ))
446         +(-speed * 1.686 * cos( my_horiz_offset * SG_DEGREES_TO_RADIANS ));
447         */
448
449         // now correct look left/right for yaw
450         // horiz_offset += user_yaw; // FIXME: WHY WOULD WE WANT TO ADD IN SIDE-SLIP HERE?
451
452         // calculate values for radar display
453         y_shift = range * cos( horiz_offset * SG_DEGREES_TO_RADIANS);
454         x_shift = range * sin( horiz_offset * SG_DEGREES_TO_RADIANS);
455         rotation = hdg - user_heading;
456         if (rotation < 0.0) rotation += 360.0;
457         ht_diff = altitude_ft - user_altitude;
458
459     }
460
461     return range_ft2;
462 }
463
464 /*
465 * Getters and Setters
466 */
467
468 SGVec3d FGAIBase::getCartPosAt(const SGVec3d& _off) const {
469     // Transform that one to the horizontal local coordinate system.
470     SGQuatd hlTrans = SGQuatd::fromLonLat(pos);
471
472     // and postrotate the orientation of the AIModel wrt the horizontal
473     // local frame
474     hlTrans *= SGQuatd::fromYawPitchRollDeg(hdg, pitch, roll);
475
476     // The offset converted to the usual body fixed coordinate system
477     // rotated to the earth fixed coordinates axis
478     SGVec3d off = hlTrans.backTransform(_off);
479
480     // Add the position offset of the AIModel to gain the earth centered position
481     SGVec3d cartPos = SGVec3d::fromGeod(pos);
482
483     return cartPos + off;
484 }
485
486 SGVec3d FGAIBase::getCartPos() const {
487     SGVec3d cartPos = SGVec3d::fromGeod(pos);
488     return cartPos;
489 }
490
491 bool FGAIBase::getGroundElevationM(const SGGeod& pos, double& elev,
492                                    const SGMaterial** material) const {
493     return globals->get_scenery()->get_elevation_m(pos, elev, material,
494                                                    model.get());
495 }
496
497 double FGAIBase::_getCartPosX() const {
498     SGVec3d cartPos = getCartPos();
499     return cartPos.x();
500 }
501
502 double FGAIBase::_getCartPosY() const {
503     SGVec3d cartPos = getCartPos();
504     return cartPos.y();
505 }
506
507 double FGAIBase::_getCartPosZ() const {
508     SGVec3d cartPos = getCartPos();
509     return cartPos.z();
510 }
511
512 void FGAIBase::_setLongitude( double longitude ) {
513     pos.setLongitudeDeg(longitude);
514 }
515
516 void FGAIBase::_setLatitude ( double latitude )  {
517     pos.setLatitudeDeg(latitude);
518 }
519
520 void FGAIBase::_setUserPos(){
521     userpos.setLatitudeDeg(manager->get_user_latitude());
522     userpos.setLongitudeDeg(manager->get_user_longitude());
523     userpos.setElevationM(manager->get_user_altitude() * SG_FEET_TO_METER);
524 }
525
526 void FGAIBase::_setSubID( int s ) {
527     _subID = s;
528 }
529
530 double FGAIBase::_getLongitude() const {
531     return pos.getLongitudeDeg();
532 }
533
534 double FGAIBase::_getLatitude() const {
535     return pos.getLatitudeDeg();
536 }
537
538 double FGAIBase::_getElevationFt() const {
539     return pos.getElevationFt();
540 }
541
542 double FGAIBase::_getRdot() const {
543     return rdot;
544 }
545
546 double FGAIBase::_getVS_fps() const {
547     return vs*60.0;
548 }
549
550 double FGAIBase::_get_speed_east_fps() const {
551     return speed_east_deg_sec * ft_per_deg_lon;
552 }
553
554 double FGAIBase::_get_speed_north_fps() const {
555     return speed_north_deg_sec * ft_per_deg_lat;
556 }
557
558 void FGAIBase::_setVS_fps( double _vs ) {
559     vs = _vs/60.0;
560 }
561
562 double FGAIBase::_getAltitude() const {
563     return altitude_ft;
564 }
565
566 bool FGAIBase::_getServiceable() const {
567     return serviceable;
568 }
569
570 SGPropertyNode* FGAIBase::_getProps() const {
571     return props;
572 }
573
574 void FGAIBase::_setAltitude( double _alt ) {
575     setAltitude( _alt );
576 }
577
578 bool FGAIBase::_isNight() {
579     return (fgGetFloat("/sim/time/sun-angle-rad") > 1.57);
580 }
581
582 bool FGAIBase::_getCollisionData() {
583     return _collision_reported;
584 }
585
586 bool FGAIBase::_getExpiryData() {
587     return _expiry_reported;
588 }
589
590 bool FGAIBase::_getImpactData() {
591     return _impact_reported;
592 }
593
594 double FGAIBase::_getImpactLat() const {
595     return _impact_lat;
596 }
597
598 double FGAIBase::_getImpactLon() const {
599     return _impact_lon;
600 }
601
602 double FGAIBase::_getImpactElevFt() const {
603     return _impact_elev * SG_METER_TO_FEET;
604 }
605
606 double FGAIBase::_getImpactPitch() const {
607     return _impact_pitch;
608 }
609
610 double FGAIBase::_getImpactRoll() const {
611     return _impact_roll;
612 }
613
614 double FGAIBase::_getImpactHdg() const {
615     return _impact_hdg;
616 }
617
618 double FGAIBase::_getImpactSpeed() const {
619     return _impact_speed;
620 }
621
622 int FGAIBase::getID() const {
623     return  _refID;
624 }
625
626 int FGAIBase::_getSubID() const {
627     return  _subID;
628 }
629
630 double FGAIBase::_getSpeed() const {
631     return speed;
632 }
633
634 double FGAIBase::_getRoll() const {
635     return roll;
636 }
637
638 double FGAIBase::_getPitch() const {
639     return pitch;
640 }
641
642 double FGAIBase::_getHeading() const {
643     return hdg;
644 }
645
646 double  FGAIBase::_getXOffset() const {
647     return _x_offset;
648 }
649
650 double  FGAIBase::_getYOffset() const {
651     return _y_offset;
652 }
653
654 double  FGAIBase::_getZOffset() const {
655     return _z_offset;
656 }
657
658 const char* FGAIBase::_getPath() const {
659     return model_path.c_str();
660 }
661
662 const char* FGAIBase::_getSMPath() const {
663     return _path.c_str();
664 }
665
666 const char* FGAIBase::_getName() const {
667     return _name.c_str();
668 }
669
670 const char* FGAIBase::_getCallsign() const {
671     return _callsign.c_str();
672 }
673
674 const char* FGAIBase::_getSubmodel() const {
675     return _submodel.c_str();
676 }
677
678 void FGAIBase::CalculateMach() {
679     // Calculate rho at altitude, using standard atmosphere
680     // For the temperature T and the pressure p,
681     double altitude = altitude_ft;
682
683     if (altitude < 36152) {             // curve fits for the troposphere
684         T = 59 - 0.00356 * altitude;
685         p = 2116 * pow( ((T + 459.7) / 518.6) , 5.256);
686     } else if ( 36152 < altitude && altitude < 82345 ) {    // lower stratosphere
687         T = -70;
688         p = 473.1 * pow( e , 1.73 - (0.000048 * altitude) );
689     } else {                                    //  upper stratosphere
690         T = -205.05 + (0.00164 * altitude);
691         p = 51.97 * pow( ((T + 459.7) / 389.98) , -11.388);
692     }
693
694     rho = p / (1718 * (T + 459.7));
695
696     // calculate the speed of sound at altitude
697     // a = sqrt ( g * R * (T + 459.7))
698     // where:
699     // a = speed of sound [ft/s]
700     // g = specific heat ratio, which is usually equal to 1.4
701     // R = specific gas constant, which equals 1716 ft-lb/slug/R
702     a = sqrt ( 1.4 * 1716 * (T + 459.7));
703
704     // calculate Mach number
705     Mach = speed/a;
706
707     // cout  << "Speed(ft/s) "<< speed <<" Altitude(ft) "<< altitude << " Mach " << Mach << endl;
708 }
709
710 int FGAIBase::_newAIModelID() {
711     static int id = 0;
712
713     if (!++id)
714         id++;   // id = 0 is not allowed.
715
716     return id;
717 }
718