]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AIBase.cxx
d143296a18f04b8f931701721924fb4bf5634fd8
[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
231         fgSetString("/ai/models/model-added", props->getPath().c_str());
232
233     } else if (!model_path.empty()) {
234         SG_LOG(SG_INPUT, SG_WARN, "AIBase: Could not load model " << model_path);
235     }
236
237     props->setStringValue("submodels/path", _path.c_str());
238     setDie(false);
239 }
240
241
242 osg::Node* FGAIBase::load3DModel(const string &path, SGPropertyNode *prop_root)
243 {
244   model = SGModelLib::loadPagedModel(path, prop_root, new FGNasalModelData(prop_root));
245   initModel(model.get());
246   return model.get();
247 }
248
249 bool FGAIBase::isa( object_type otype ) {
250     return otype == _otype;
251 }
252
253
254 void FGAIBase::bind() {
255     props->tie("id", SGRawValueMethods<FGAIBase,int>(*this,
256         &FGAIBase::getID));
257     props->tie("velocities/true-airspeed-kt",  SGRawValuePointer<double>(&speed));
258     props->tie("velocities/vertical-speed-fps",
259         SGRawValueMethods<FGAIBase,double>(*this,
260         &FGAIBase::_getVS_fps,
261         &FGAIBase::_setVS_fps));
262
263     props->tie("position/altitude-ft",
264         SGRawValueMethods<FGAIBase,double>(*this,
265         &FGAIBase::_getAltitude,
266         &FGAIBase::_setAltitude));
267     props->tie("position/latitude-deg",
268         SGRawValueMethods<FGAIBase,double>(*this,
269         &FGAIBase::_getLatitude,
270         &FGAIBase::_setLatitude));
271     props->tie("position/longitude-deg",
272         SGRawValueMethods<FGAIBase,double>(*this,
273         &FGAIBase::_getLongitude,
274         &FGAIBase::_setLongitude));
275
276     props->tie("position/global-x",
277         SGRawValueMethods<FGAIBase,double>(*this,
278         &FGAIBase::_getCartPosX,
279         0));
280     props->tie("position/global-y",
281         SGRawValueMethods<FGAIBase,double>(*this,
282         &FGAIBase::_getCartPosY,
283         0));
284     props->tie("position/global-z",
285         SGRawValueMethods<FGAIBase,double>(*this,
286         &FGAIBase::_getCartPosZ,
287         0));
288     props->tie("callsign",
289         SGRawValueMethods<FGAIBase,const char*>(*this,
290         &FGAIBase::_getCallsign,
291         0));
292
293     props->tie("orientation/pitch-deg",   SGRawValuePointer<double>(&pitch));
294     props->tie("orientation/roll-deg",    SGRawValuePointer<double>(&roll));
295     props->tie("orientation/true-heading-deg", SGRawValuePointer<double>(&hdg));
296
297     props->tie("radar/in-range", SGRawValuePointer<bool>(&in_range));
298     props->tie("radar/bearing-deg",   SGRawValuePointer<double>(&bearing));
299     props->tie("radar/elevation-deg", SGRawValuePointer<double>(&elevation));
300     props->tie("radar/range-nm", SGRawValuePointer<double>(&range));
301     props->tie("radar/h-offset", SGRawValuePointer<double>(&horiz_offset));
302     props->tie("radar/v-offset", SGRawValuePointer<double>(&vert_offset));
303     props->tie("radar/x-shift", SGRawValuePointer<double>(&x_shift));
304     props->tie("radar/y-shift", SGRawValuePointer<double>(&y_shift));
305     props->tie("radar/rotation", SGRawValuePointer<double>(&rotation));
306     props->tie("radar/ht-diff-ft", SGRawValuePointer<double>(&ht_diff));
307     props->tie("subID", SGRawValuePointer<int>(&_subID));
308     props->tie("controls/lighting/nav-lights",
309         SGRawValueFunctions<bool>(_isNight));
310     props->setBoolValue("controls/lighting/beacon", true);
311     props->setBoolValue("controls/lighting/strobe", true);
312     props->setBoolValue("controls/glide-path", true);
313
314     props->setStringValue("controls/flight/lateral-mode", "roll");
315     props->setDoubleValue("controls/flight/target-hdg", hdg);
316     props->setDoubleValue("controls/flight/target-roll", roll);
317
318     props->setStringValue("controls/flight/longitude-mode", "alt");
319     props->setDoubleValue("controls/flight/target-alt", altitude_ft);
320     props->setDoubleValue("controls/flight/target-pitch", pitch);
321
322    props->setDoubleValue("controls/flight/target-spd", speed);
323
324 }
325
326 void FGAIBase::unbind() {
327     props->untie("id");
328     props->untie("velocities/true-airspeed-kt");
329     props->untie("velocities/vertical-speed-fps");
330
331     props->untie("position/altitude-ft");
332     props->untie("position/latitude-deg");
333     props->untie("position/longitude-deg");
334     props->untie("position/global-x");
335     props->untie("position/global-y");
336     props->untie("position/global-z");
337     props->untie("callsign");
338
339     props->untie("orientation/pitch-deg");
340     props->untie("orientation/roll-deg");
341     props->untie("orientation/true-heading-deg");
342
343     props->untie("radar/in-range");
344     props->untie("radar/bearing-deg");
345     props->untie("radar/elevation-deg");
346     props->untie("radar/range-nm");
347     props->untie("radar/h-offset");
348     props->untie("radar/v-offset");
349     props->untie("radar/x-shift");
350     props->untie("radar/y-shift");
351     props->untie("radar/rotation");
352     props->untie("radar/ht-diff-ft");
353
354     props->untie("controls/lighting/nav-lights");
355
356     props->setBoolValue("/sim/controls/radar/", true);
357
358 }
359
360 double FGAIBase::UpdateRadar(FGAIManager* manager) {
361     bool control = fgGetBool("/sim/controls/radar", true);
362
363     if(!control) return 0;
364
365     double radar_range_ft2 = fgGetDouble("/instrumentation/radar/range");
366     bool force_on = fgGetBool("/instrumentation/radar/debug-mode", false);
367     radar_range_ft2 *= SG_NM_TO_METER * SG_METER_TO_FEET * 1.1; // + 10%
368     radar_range_ft2 *= radar_range_ft2;
369
370     double user_latitude  = manager->get_user_latitude();
371     double user_longitude = manager->get_user_longitude();
372     double lat_range = fabs(pos.getLatitudeDeg() - user_latitude) * ft_per_deg_lat;
373     double lon_range = fabs(pos.getLongitudeDeg() - user_longitude) * ft_per_deg_lon;
374     double range_ft2 = lat_range*lat_range + lon_range*lon_range;
375
376     //
377     // Test whether the target is within radar range.
378     //
379     in_range = (range_ft2 && (range_ft2 <= radar_range_ft2));
380
381     if ( in_range || force_on ) {
382         props->setBoolValue("radar/in-range", true);
383
384         // copy values from the AIManager
385         double user_altitude  = manager->get_user_altitude();
386         double user_heading   = manager->get_user_heading();
387         double user_pitch     = manager->get_user_pitch();
388         //double user_yaw       = manager->get_user_yaw();
389         //double user_speed     = manager->get_user_speed();
390
391         // calculate range to target in feet and nautical miles
392         double range_ft = sqrt( range_ft2 );
393         range = range_ft / 6076.11549;
394
395         // calculate bearing to target
396         if (pos.getLatitudeDeg() >= user_latitude) {
397             bearing = atan2(lat_range, lon_range) * SG_RADIANS_TO_DEGREES;
398             if (pos.getLongitudeDeg() >= user_longitude) {
399                 bearing = 90.0 - bearing;
400             } else {
401                 bearing = 270.0 + bearing;
402             }
403         } else {
404             bearing = atan2(lon_range, lat_range) * SG_RADIANS_TO_DEGREES;
405             if (pos.getLongitudeDeg() >= user_longitude) {
406                 bearing = 180.0 - bearing;
407             } else {
408                 bearing = 180.0 + bearing;
409             }
410         }
411
412         // This is an alternate way to compute bearing and distance which
413         // agrees with the original scheme within about 0.1 degrees.
414         //
415         // Point3D start( user_longitude * SGD_DEGREES_TO_RADIANS,
416         //                user_latitude * SGD_DEGREES_TO_RADIANS, 0 );
417         // Point3D dest( pos.getLongitudeRad(), pos.getLatitudeRad(), 0 );
418         // double gc_bearing, gc_range;
419         // calc_gc_course_dist( start, dest, &gc_bearing, &gc_range );
420         // gc_range *= SG_METER_TO_NM;
421         // gc_bearing *= SGD_RADIANS_TO_DEGREES;
422         // printf("orig b = %.3f %.2f  gc b= %.3f, %.2f\n",
423         //        bearing, range, gc_bearing, gc_range);
424
425         // calculate look left/right to target, without yaw correction
426         horiz_offset = bearing - user_heading;
427         if (horiz_offset > 180.0) horiz_offset -= 360.0;
428         if (horiz_offset < -180.0) horiz_offset += 360.0;
429
430         // calculate elevation to target
431         elevation = atan2( altitude_ft - user_altitude, range_ft ) * SG_RADIANS_TO_DEGREES;
432
433         // calculate look up/down to target
434         vert_offset = elevation - user_pitch;
435
436         /* this calculation needs to be fixed, but it isn't important anyway
437         // calculate range rate
438         double recip_bearing = bearing + 180.0;
439         if (recip_bearing > 360.0) recip_bearing -= 360.0;
440         double my_horiz_offset = recip_bearing - hdg;
441         if (my_horiz_offset > 180.0) my_horiz_offset -= 360.0;
442         if (my_horiz_offset < -180.0) my_horiz_offset += 360.0;
443         rdot = (-user_speed * cos( horiz_offset * SG_DEGREES_TO_RADIANS ))
444         +(-speed * 1.686 * cos( my_horiz_offset * SG_DEGREES_TO_RADIANS ));
445         */
446
447         // now correct look left/right for yaw
448         // horiz_offset += user_yaw; // FIXME: WHY WOULD WE WANT TO ADD IN SIDE-SLIP HERE?
449
450         // calculate values for radar display
451         y_shift = range * cos( horiz_offset * SG_DEGREES_TO_RADIANS);
452         x_shift = range * sin( horiz_offset * SG_DEGREES_TO_RADIANS);
453         rotation = hdg - user_heading;
454         if (rotation < 0.0) rotation += 360.0;
455         ht_diff = altitude_ft - user_altitude;
456
457     }
458
459     return range_ft2;
460 }
461
462 /*
463 * Getters and Setters
464 */
465
466 SGVec3d FGAIBase::getCartPosAt(const SGVec3d& _off) const {
467     // Transform that one to the horizontal local coordinate system.
468     SGQuatd hlTrans = SGQuatd::fromLonLat(pos);
469
470     // and postrotate the orientation of the AIModel wrt the horizontal
471     // local frame
472     hlTrans *= SGQuatd::fromYawPitchRollDeg(hdg, pitch, roll);
473
474     // The offset converted to the usual body fixed coordinate system
475     // rotated to the earth fiexed coordinates axis
476     SGVec3d off = hlTrans.backTransform(_off);
477
478     // Add the position offset of the AIModel to gain the earth centered position
479     SGVec3d cartPos = SGVec3d::fromGeod(pos);
480
481     return cartPos + off;
482 }
483
484 SGVec3d FGAIBase::getCartPos() const {
485     SGVec3d cartPos = SGVec3d::fromGeod(pos);
486     return cartPos;
487 }
488
489 bool FGAIBase::getGroundElevationM(const SGGeod& pos, double& elev,
490                                    const SGMaterial** material) const {
491     return globals->get_scenery()->get_elevation_m(pos, elev, material,
492                                                    model.get());
493 }
494
495 double FGAIBase::_getCartPosX() const {
496     SGVec3d cartPos = getCartPos();
497     return cartPos.x();
498 }
499
500 double FGAIBase::_getCartPosY() const {
501     SGVec3d cartPos = getCartPos();
502     return cartPos.y();
503 }
504
505 double FGAIBase::_getCartPosZ() const {
506     SGVec3d cartPos = getCartPos();
507     return cartPos.z();
508 }
509
510 void FGAIBase::_setLongitude( double longitude ) {
511     pos.setLongitudeDeg(longitude);
512 }
513
514 void FGAIBase::_setLatitude ( double latitude )  {
515     pos.setLatitudeDeg(latitude);
516 }
517
518 void FGAIBase::_setUserPos(){
519     userpos.setLatitudeDeg(manager->get_user_latitude());
520     userpos.setLongitudeDeg(manager->get_user_longitude());
521     userpos.setElevationM(manager->get_user_altitude() * SG_FEET_TO_METER);
522 }
523
524 void FGAIBase::_setSubID( int s ) {
525     _subID = s;
526 }
527
528 double FGAIBase::_getLongitude() const {
529     return pos.getLongitudeDeg();
530 }
531
532 double FGAIBase::_getLatitude() const {
533     return pos.getLatitudeDeg();
534 }
535
536 double FGAIBase::_getElevationFt () const {
537     return pos.getElevationFt();
538 }
539
540 double FGAIBase::_getRdot() const {
541     return rdot;
542 }
543
544 double FGAIBase::_getVS_fps() const {
545     return vs*60.0;
546 }
547
548 double FGAIBase::_get_speed_east_fps() const {
549     return speed_east_deg_sec * ft_per_deg_lon;
550 }
551
552 double FGAIBase::_get_speed_north_fps() const {
553     return speed_north_deg_sec * ft_per_deg_lat;
554 }
555
556 void FGAIBase::_setVS_fps( double _vs ) {
557     vs = _vs/60.0;
558 }
559
560 double FGAIBase::_getAltitude() const {
561     return altitude_ft;
562 }
563
564 bool FGAIBase::_getServiceable() const {
565     return serviceable;
566 }
567
568 SGPropertyNode* FGAIBase::_getProps() const {
569     return props;
570 }
571
572 void FGAIBase::_setAltitude( double _alt ) {
573     setAltitude( _alt );
574 }
575
576 bool FGAIBase::_isNight() {
577     return (fgGetFloat("/sim/time/sun-angle-rad") > 1.57);
578 }
579
580 bool FGAIBase::_getCollisionData() {
581     return _collision_reported;
582 }
583
584 bool FGAIBase::_getExpiryData() {
585     return _expiry_reported;
586 }
587
588 bool FGAIBase::_getImpactData() {
589     return _impact_reported;
590 }
591
592 double FGAIBase::_getImpactLat() const {
593     return _impact_lat;
594 }
595
596 double FGAIBase::_getImpactLon() const {
597     return _impact_lon;
598 }
599
600 double FGAIBase::_getImpactElevFt() const {
601     return _impact_elev * SG_METER_TO_FEET;
602 }
603
604 double FGAIBase::_getImpactPitch() const {
605     return _impact_pitch;
606 }
607
608 double FGAIBase::_getImpactRoll() const {
609     return _impact_roll;
610 }
611
612 double FGAIBase::_getImpactHdg() const {
613     return _impact_hdg;
614 }
615
616 double FGAIBase::_getImpactSpeed() const {
617     return _impact_speed;
618 }
619
620 int FGAIBase::getID() const {
621     return  _refID;
622 }
623
624 int FGAIBase::_getSubID() const {
625     return  _subID;
626 }
627
628 double FGAIBase::_getSpeed() const {
629     return speed;
630 }
631
632 double FGAIBase::_getRoll() const {
633     return roll;
634 }
635
636 double FGAIBase::_getPitch() const {
637     return pitch;
638 }
639
640 double FGAIBase::_getHeading() const {
641     return hdg;
642 }
643
644 double  FGAIBase::_getXOffset() const {
645     return _x_offset;
646 }
647
648 double  FGAIBase::_getYOffset() const {
649     return _y_offset;
650 }
651
652 double  FGAIBase::_getZOffset() const {
653     return _z_offset;
654 }
655
656 const char* FGAIBase::_getPath() const {
657     return model_path.c_str();
658 }
659
660 const char* FGAIBase::_getSMPath() const {
661     return _path.c_str();
662 }
663
664 const char* FGAIBase::_getName() const {
665     return _name.c_str();
666 }
667
668 const char* FGAIBase::_getCallsign() const {
669     return _callsign.c_str();
670 }
671
672 const char* FGAIBase::_getSubmodel() const {
673     return _submodel.c_str();
674 }
675
676 void FGAIBase::CalculateMach() {
677     // Calculate rho at altitude, using standard atmosphere
678     // For the temperature T and the pressure p,
679     double altitude = altitude_ft;
680
681     if (altitude < 36152) {             // curve fits for the troposphere
682         T = 59 - 0.00356 * altitude;
683         p = 2116 * pow( ((T + 459.7) / 518.6) , 5.256);
684     } else if ( 36152 < altitude && altitude < 82345 ) {    // lower stratosphere
685         T = -70;
686         p = 473.1 * pow( e , 1.73 - (0.000048 * altitude) );
687     } else {                                    //  upper stratosphere
688         T = -205.05 + (0.00164 * altitude);
689         p = 51.97 * pow( ((T + 459.7) / 389.98) , -11.388);
690     }
691
692     rho = p / (1718 * (T + 459.7));
693
694     // calculate the speed of sound at altitude
695     // a = sqrt ( g * R * (T + 459.7))
696     // where:
697     // a = speed of sound [ft/s]
698     // g = specific heat ratio, which is usually equal to 1.4
699     // R = specific gas constant, which equals 1716 ft-lb/slug/R
700     a = sqrt ( 1.4 * 1716 * (T + 459.7));
701
702     // calculate Mach number
703     Mach = speed/a;
704
705     // cout  << "Speed(ft/s) "<< speed <<" Altitude(ft) "<< altitude << " Mach " << Mach << endl;
706 }
707
708 int FGAIBase::_newAIModelID() {
709     static int id = 0;
710
711     if (!++id)
712         id++;   // id = 0 is not allowed.
713
714     return id;
715 }
716