]> git.mxchange.org Git - flightgear.git/blob - src/FDM/flight.cxx
- make certain UVW velocities don't overright airspeed-kt at startup
[flightgear.git] / src / FDM / flight.cxx
1 // flight.cxx -- a general interface to the various flight models
2 //
3 // Written by Curtis Olson, started May 1997.
4 //
5 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #include <stdio.h>
25
26 #include <simgear/constants.h>
27 #include <simgear/debug/logstream.hxx>
28 #include <simgear/math/sg_geodesy.hxx>
29 #include <simgear/timing/timestamp.hxx>
30
31 #include <Scenery/scenery.hxx>
32 #include <FDM/LaRCsim/ls_interface.h>
33 #include <Main/globals.hxx>
34 #include <Main/fg_props.hxx>
35
36 #include "External.hxx"
37 #include "flight.hxx"
38 #include "JSBSim.hxx"
39 #include "LaRCsim.hxx"
40 #include "Balloon.h"
41
42
43 // base_fdm_state is the internal state that is updated in integer
44 // multiples of "dt".  This leads to "jitter" with respect to the real
45 // world time, so we introduce cur_fdm_state which is extrapolated by
46 // the difference between sim time and real world time
47
48 FGInterface *cur_fdm_state;
49 FGInterface base_fdm_state;
50
51 inline void init_vec(FG_VECTOR_3 vec) {
52     vec[0] = 0.0; vec[1] = 0.0; vec[2] = 0.0;
53 }  
54
55 FGEngInterface::FGEngInterface() {
56     
57     // inputs
58     Throttle=0;
59     Mixture=0;
60     Prop_Advance=0;
61
62     // outputs
63     RPM=0;
64     Manifold_Pressure=0;
65     MaxHP=0;
66     Percentage_Power=0;
67     EGT=0;
68     prop_thrust=0;
69 }
70
71 FGEngInterface::~FGEngInterface(void) {
72 }
73
74
75 // Constructor
76 FGInterface::FGInterface() {
77     _setup();
78 }  
79
80 FGInterface::FGInterface( double dt ) {
81     
82     _setup();
83     delta_t = dt;
84     remainder = elapsed = multi_loop = 0;
85 }
86
87 // Destructor
88 FGInterface::~FGInterface() {
89 //   unbind();                  // FIXME: should be called explicitly
90 }
91
92
93 /**
94  * Set default values for the state of the FDM.
95  *
96  * This method is invoked by the constructors.
97  */
98 void
99 FGInterface::_setup ()
100 {
101     init_vec( d_pilot_rp_body_v );
102     init_vec( d_cg_rp_body_v );
103     init_vec( f_body_total_v );
104     init_vec( f_local_total_v );
105     init_vec( f_aero_v );
106     init_vec( f_engine_v );
107     init_vec( f_gear_v );
108     init_vec( m_total_rp_v );
109     init_vec( m_total_cg_v );
110     init_vec( m_aero_v );
111     init_vec( m_engine_v );
112     init_vec( m_gear_v );
113     init_vec( v_dot_local_v );
114     init_vec( v_dot_body_v );
115     init_vec( a_cg_body_v );
116     init_vec( a_pilot_body_v );
117     init_vec( n_cg_body_v );
118     init_vec( n_pilot_body_v );
119     init_vec( omega_dot_body_v );
120     init_vec( v_local_v );
121     init_vec( v_local_rel_ground_v ); 
122     init_vec( v_local_airmass_v );    
123     init_vec( v_local_rel_airmass_v );  
124     init_vec( v_local_gust_v ); 
125     init_vec( v_wind_body_v );     
126     init_vec( omega_body_v );         
127     init_vec( omega_local_v );        
128     init_vec( omega_total_v );       
129     init_vec( euler_rates_v );
130     init_vec( geocentric_rates_v );   
131     init_vec( geocentric_position_v );
132     init_vec( geodetic_position_v );
133     init_vec( euler_angles_v );
134     init_vec( d_cg_rwy_local_v );     
135     init_vec( d_cg_rwy_rwy_v );       
136     init_vec( d_pilot_rwy_local_v );  
137     init_vec( d_pilot_rwy_rwy_v );    
138     init_vec( t_local_to_body_m[0] );
139     init_vec( t_local_to_body_m[1] );
140     init_vec( t_local_to_body_m[2] );
141     
142     mass=i_xx=i_yy=i_zz=i_xz=0;
143     nlf=0;  
144     v_rel_wind=v_true_kts=v_rel_ground=v_inertial=0;
145     v_ground_speed=v_equiv=v_equiv_kts=0;
146     v_calibrated=v_calibrated_kts=0;
147     gravity=0;            
148     centrifugal_relief=0; 
149     alpha=beta=alpha_dot=beta_dot=0;   
150     cos_alpha=sin_alpha=cos_beta=sin_beta=0;
151     cos_phi=sin_phi=cos_theta=sin_theta=cos_psi=sin_psi=0;
152     gamma_vert_rad=gamma_horiz_rad=0;    
153     sigma=density=v_sound=mach_number=0;
154     static_pressure=total_pressure=impact_pressure=0;
155     dynamic_pressure=0;
156     static_temperature=total_temperature=0;
157     sea_level_radius=earth_position_angle=0;
158     runway_altitude=runway_latitude=runway_longitude=0;
159     runway_heading=0;
160     radius_to_rwy=0;
161     climb_rate=0;           
162     sin_lat_geocentric=cos_lat_geocentric=0;
163     sin_latitude=cos_latitude=0;
164     sin_longitude=cos_longitude=0;
165     altitude_agl=0;
166 }
167
168
169 /**
170  * Initialize the state of the FDM.
171  *
172  * Subclasses of FGInterface may do their own, additional initialization,
173  * but normally they should invoke this method explicitly first as
174  * FGInterface::init() to make sure the basic structures are set up
175  * properly.
176  */
177 void
178 FGInterface::init ()
179 {
180   SG_LOG(SG_FLIGHT, SG_INFO, "Start initializing FGInterface");
181
182   stamp();
183   set_remainder(0);
184
185                                 // Set initial position
186   SG_LOG(SG_FLIGHT, SG_INFO, "...initializing position...");
187   set_Longitude(fgGetDouble("/position/longitude-deg") * SGD_DEGREES_TO_RADIANS);
188   set_Latitude(fgGetDouble("/position/latitude-deg") * SGD_DEGREES_TO_RADIANS);
189   double ground_elev_m = scenery.cur_elev + 1;
190   double ground_elev_ft = ground_elev_m * METERS_TO_FEET;
191   if (fgGetBool("/sim/startup/onground") ||
192       fgGetDouble("/position/altitude-ft") < ground_elev_ft)
193     fgSetDouble("/position/altitude-ft", ground_elev_ft);
194   set_Altitude(fgGetDouble("/position/altitude-ft"));
195
196                                 // Set ground elevation
197   SG_LOG(SG_FLIGHT, SG_INFO,
198          "...initializing ground elevation to "
199          << ground_elev_ft << "ft...");
200   fgFDMSetGroundElevation("jsb", ground_elev_m);
201
202                                 // Set sea-level radius
203   SG_LOG(SG_FLIGHT, SG_INFO, "...initializing sea-level radius...");
204   double sea_level_radius_meters;
205   double lat_geoc;
206   sgGeodToGeoc(get_Latitude(), get_Altitude(),
207                &sea_level_radius_meters, &lat_geoc);
208   set_Sea_level_radius(sea_level_radius_meters * SG_METER_TO_FEET);
209
210                                 // Set initial velocities
211   SG_LOG(SG_FLIGHT, SG_INFO, "...initializing velocities...");
212   if (!fgHasNode("/sim/startup/speed-set")) {
213     set_V_calibrated_kts(0.0);
214   } else {
215     const string speedset = fgGetString("/sim/startup/speed-set");
216     if (speedset == "knots" || speedset == "KNOTS") {
217       set_V_calibrated_kts(fgGetDouble("/velocities/airspeed-kt"));
218     } else if (speedset == "mach" || speedset == "MACH") {
219       set_Mach_number(fgGetDouble("/velocities/mach"));
220     } else if (speedset == "UVW" || speedset == "uvw") {
221       set_Velocities_Wind_Body(fgGetDouble("/velocities/uBody-fps"),
222                                fgGetDouble("/velocities/vBody-fps"),
223                                fgGetDouble("/velocities/wBody-fps"));
224     } else if (speedset == "NED" || speedset == "ned") {
225       set_Velocities_Local(fgGetDouble("/velocities/speed-north-fps"),
226                            fgGetDouble("/velocities/speed-east-fps"),
227                            fgGetDouble("/velocities/speed-down-fps"));
228     } else {
229       SG_LOG(SG_FLIGHT, SG_ALERT,
230              "Unrecognized value for /sim/startup/speed-set: " << speedset);
231       set_V_calibrated_kts(0.0);
232     }
233   }
234
235                                 // Set initial Euler angles
236   SG_LOG(SG_FLIGHT, SG_INFO, "...initializing Euler angles...");
237   set_Euler_Angles
238     (fgGetDouble("/orientation/roll-deg") * SGD_DEGREES_TO_RADIANS,
239      fgGetDouble("/orientation/pitch-deg") * SGD_DEGREES_TO_RADIANS,
240      fgGetDouble("/orientation/heading-deg") * SGD_DEGREES_TO_RADIANS);
241
242   SG_LOG(SG_FLIGHT, SG_INFO, "End initializing FGInterface");
243 }
244
245
246 /**
247  * Bind getters and setters to properties.
248  *
249  * The bind() method will be invoked after init().  Note that unlike
250  * the usual implementations of FGSubsystem::bind(), this method does
251  * not automatically pick up existing values for the properties at
252  * bind time; instead, all values are set explicitly in the init()
253  * method.
254  */
255 void
256 FGInterface::bind ()
257 {
258                                 // Time management (read-only)
259   fgTie("/fdm/time/delta_t", this, 
260         &FGInterface::get_delta_t); // read-only
261   fgTie("/fdm/time/elapsed", this, 
262         &FGInterface::get_elapsed); // read-only
263   fgTie("/fdm/time/remainder", this, 
264         &FGInterface::get_remainder); // read-only
265   fgTie("/fdm/time/multi_loop", this, 
266         &FGInterface::get_multi_loop); // read-only
267
268                         // Aircraft position
269   fgTie("/position/latitude-deg", this,
270         &FGInterface::get_Latitude_deg,
271         &FGInterface::set_Latitude_deg,
272         false);
273   fgSetArchivable("/position/latitude-deg");
274   fgTie("/position/longitude-deg", this,
275         &FGInterface::get_Longitude_deg,
276         &FGInterface::set_Longitude_deg,
277         false);
278   fgSetArchivable("/position/longitude-deg");
279   fgTie("/position/altitude-ft", this,
280         &FGInterface::get_Altitude,
281         &FGInterface::set_Altitude,
282         false);
283   fgSetArchivable("/position/altitude-ft");
284   fgTie("/position/altitude-agl-ft", this,
285         &FGInterface::get_Altitude_AGL); // read-only
286
287                                 // Orientation
288   fgTie("/orientation/roll-deg", this,
289         &FGInterface::get_Phi_deg,
290         &FGInterface::set_Phi_deg);
291   fgSetArchivable("/orientation/roll-deg");
292   fgTie("/orientation/pitch-deg", this,
293         &FGInterface::get_Theta_deg,
294         &FGInterface::set_Theta_deg);
295   fgSetArchivable("/orientation/pitch-deg");
296   fgTie("/orientation/heading-deg", this,
297         &FGInterface::get_Psi_deg,
298         &FGInterface::set_Psi_deg);
299   fgSetArchivable("/orientation/heading-deg");
300
301                                 // Calibrated airspeed
302   fgTie("/velocities/airspeed-kt", this,
303         &FGInterface::get_V_calibrated_kts,
304         &FGInterface::set_V_calibrated_kts,
305         false);
306
307                                 // Local velocities
308 //   fgTie("/velocities/speed-north-fps", this,
309 //      &FGInterface::get_V_north,
310 //      &FGInterface::set_V_north);
311 //   fgSetArchivable("/velocities/speed-north-fps");
312 //   fgTie("/velocities/speed-east-fps", this,
313 //      &FGInterface::get_V_east,
314 //      &FGInterface::set_V_east);
315 //   fgSetArchivable("/velocities/speed-east-fps");
316 //   fgTie("/velocities/speed-down-fps", this,
317 //      &FGInterface::get_V_down,
318 //      &FGInterface::set_V_down);
319 //   fgSetArchivable("/velocities/speed-down-fps");
320                                 // FIXME: Temporarily read-only, until the
321                                 // incompatibilities between JSBSim and
322                                 // LaRCSim are fixed (LaRCSim adds the
323                                 // earth's rotation to the east velocity).
324   fgTie("/velocities/speed-north-fps", this,
325         &FGInterface::get_V_north);
326   fgTie("/velocities/speed-east-fps", this,
327         &FGInterface::get_V_east);
328   fgTie("/velocities/speed-down-fps", this,
329         &FGInterface::get_V_down);
330
331                                 // Relative wind
332                                 // FIXME: temporarily archivable, until
333                                 // the NED problem is fixed.
334   fgTie("/velocities/uBody-fps", this,
335         &FGInterface::get_uBody,
336         &FGInterface::set_uBody,
337         false);
338   fgSetArchivable("/velocities/uBody-fps");
339   fgTie("/velocities/vBody-fps", this,
340         &FGInterface::get_vBody,
341         &FGInterface::set_vBody,
342         false);
343   fgSetArchivable("/velocities/vBody-fps");
344   fgTie("/velocities/wBody-fps", this,
345         &FGInterface::get_wBody,
346         &FGInterface::set_wBody,
347         false);
348   fgSetArchivable("/velocities/wBody-fps");
349
350                                 // Climb and slip (read-only)
351   fgTie("/velocities/vertical-speed-fps", this,
352         &FGInterface::get_Climb_Rate); // read-only
353   fgTie("/velocities/side-slip-rad", this,
354         &FGInterface::get_Beta); // read-only
355 }
356
357
358 /**
359  * Unbind any properties bound to this FDM.
360  *
361  * This method allows the FDM to release properties so that a new
362  * FDM can bind them instead.
363  */
364 void
365 FGInterface::unbind ()
366 {
367   fgUntie("/fdm/time/delta_t");
368   fgUntie("/fdm/time/elapsed");
369   fgUntie("/fdm/time/remainder");
370   fgUntie("/fdm/time/multi_loop");
371   fgUntie("/position/latitude-deg");
372   fgUntie("/position/longitude-deg");
373   fgUntie("/position/altitude-ft");
374   fgUntie("/position/heading");
375   fgUntie("/position/pitch");
376   fgUntie("/position/roll");
377   fgUntie("/velocities/airspeed-kt");
378   fgUntie("/velocities/speed-north-fps");
379   fgUntie("/velocities/speed-east-fps");
380   fgUntie("/velocities/speed-down-fps");
381   fgUntie("/velocities/uBody-fps");
382   fgUntie("/velocities/vBody-fps");
383   fgUntie("/velocities/wBody-fps");
384   fgUntie("/velocities/vertical-speed-fps");
385   fgUntie("/velocities/side-slip-rad");
386 }
387
388
389 /**
390  * Update the state of the FDM (i.e. run the equations of motion).
391  */
392 void
393 FGInterface::update ()
394 {
395   update(1);
396 }
397
398
399 bool FGInterface::update( int multi_loop ) {
400     cout << "dummy update() ... SHOULDN'T BE CALLED!" << endl;
401     return false;
402 }
403
404   
405 void FGInterface::_updatePosition( double lat_geoc, double lon, double alt ) {
406     double lat_geod, tmp_alt, sl_radius1, sl_radius2, tmp_lat_geoc;
407         
408     sgGeocToGeod( lat_geoc, ( get_Sea_level_radius() + alt ) * SG_FEET_TO_METER,
409                   &lat_geod, &tmp_alt, &sl_radius1 );
410     sgGeodToGeoc( lat_geod, alt * SG_FEET_TO_METER, &sl_radius2, &tmp_lat_geoc );
411
412     SG_LOG( SG_FLIGHT, SG_DEBUG, "lon = " << lon 
413             << " lat_geod = " << lat_geod
414             << " lat_geoc = " << lat_geoc
415             << " alt = " << alt 
416             << " tmp_alt = " << tmp_alt * SG_METER_TO_FEET
417             << " sl_radius1 = " << sl_radius1 * SG_METER_TO_FEET
418             << " sl_radius2 = " << sl_radius2 * SG_METER_TO_FEET
419             << " Equator = " << SG_EQUATORIAL_RADIUS_FT );
420
421     _set_Geocentric_Position( lat_geoc, lon, 
422                               sl_radius2 * SG_METER_TO_FEET + alt );
423         
424     _set_Geodetic_Position( lat_geod, lon, alt );
425         
426     _set_Sea_level_radius( sl_radius2 * SG_METER_TO_FEET );
427     _set_Runway_altitude( scenery.cur_elev*METERS_TO_FEET ); 
428         
429     _set_sin_lat_geocentric( lat_geoc );
430     _set_cos_lat_geocentric( lat_geoc );
431         
432     _set_sin_cos_longitude( lon );
433         
434     _set_sin_cos_latitude( lat_geod );
435         
436     /* Norman's code for slope of the terrain */
437     /* needs to be tested -- get it on the HUD and taxi around */
438     /* double *tnorm = scenery.cur_normal;
439         
440        double sy = sin ( -get_Psi() ) ;
441        double cy = cos ( -get_Psi() ) ;
442
443        double phitb, thetatb, psitb;
444        if(tnorm[1] != 0.0) {
445                 psitb = -atan2 ( tnorm[0], tnorm[1] );
446        }
447        if(tnorm[2] != 0.0) {    
448                 thetatb =  atan2 ( tnorm[0] * cy - tnorm[1] * sy, tnorm[2] );
449                 phitb = -atan2 ( tnorm[1] * cy + tnorm[0] * sy, tnorm[2] );  
450        }        
451         
452        _set_terrain_slope(phitb, thetatb, psitb) 
453      */
454 }
455
456
457 // Extrapolate fdm based on time_offset (in usec)
458 void FGInterface::extrapolate( int time_offset ) {
459     double dt = time_offset / 1000000.0;
460
461     // -dw- metrowerks complains about ambiguous access, not critical
462     // to keep this ;)
463 #ifndef __MWERKS__
464     cout << "extrapolating FDM by dt = " << dt << endl;
465 #endif
466
467     double lat = geodetic_position_v[0] + geocentric_rates_v[0] * dt;
468     double lat_geoc = geocentric_position_v[0] + geocentric_rates_v[0] * dt;
469
470     double lon = geodetic_position_v[1] + geocentric_rates_v[1] * dt;
471     double lon_geoc = geocentric_position_v[1] + geocentric_rates_v[1] * dt;
472
473     double alt = geodetic_position_v[2] + geocentric_rates_v[2] * dt;
474     double radius = geocentric_position_v[2] + geocentric_rates_v[2] * dt;
475
476     geodetic_position_v[0] = lat;
477     geocentric_position_v[0] = lat_geoc;
478
479     geodetic_position_v[1] = lon;
480     geocentric_position_v[1] = lon_geoc;
481
482     geodetic_position_v[2] = alt;
483     geocentric_position_v[2] = radius;
484 }
485
486
487 // Set the altitude (force)
488 void fgFDMForceAltitude(const string &model, double alt_meters) {
489     SG_LOG(SG_FLIGHT,SG_INFO, "fgFDMForceAltitude: " << alt_meters );
490     
491     double sea_level_radius_meters;
492     double lat_geoc;
493
494     // Set the FG variables first
495     sgGeodToGeoc( base_fdm_state.get_Latitude(), alt_meters, 
496                   &sea_level_radius_meters, &lat_geoc);
497
498     base_fdm_state.set_Altitude( alt_meters * SG_METER_TO_FEET );
499     base_fdm_state.set_Sea_level_radius( sea_level_radius_meters *
500                                          SG_METER_TO_FEET ); 
501                 
502     cur_fdm_state->set_Altitude( alt_meters * SG_METER_TO_FEET );
503     cur_fdm_state->set_Sea_level_radius( sea_level_radius_meters * 
504            SG_METER_TO_FEET );                    
505
506     // additional work needed for some flight models
507     if ( model == "larcsim" ) {
508         ls_ForceAltitude( base_fdm_state.get_Altitude() );
509     }
510 }
511
512
513 // Set the local ground elevation
514 void fgFDMSetGroundElevation(const string &model, double ground_meters) {
515     SG_LOG( SG_FLIGHT,SG_INFO, "fgFDMSetGroundElevation: "
516             << ground_meters*SG_METER_TO_FEET ); 
517     base_fdm_state.set_Runway_altitude( ground_meters * SG_METER_TO_FEET );
518     cur_fdm_state->set_Runway_altitude( ground_meters * SG_METER_TO_FEET );
519 }
520
521
522 // Positions
523 void FGInterface::set_Latitude(double lat) { 
524     geodetic_position_v[0] = lat;
525 }  
526
527 void FGInterface::set_Longitude(double lon) {
528     geodetic_position_v[1] = lon;
529 }       
530
531 void FGInterface::set_Altitude(double alt) {
532     geodetic_position_v[2] = alt;
533 }          
534
535 void FGInterface::set_AltitudeAGL(double altagl) {
536     altitude_agl=altagl;
537 }  
538
539 // Velocities
540 void FGInterface::set_V_calibrated_kts(double vc) {
541     v_calibrated_kts = vc;
542 }  
543
544 void FGInterface::set_Mach_number(double mach) {
545     mach_number = mach;
546 }  
547
548 void FGInterface::set_Velocities_Local( double north, 
549                                         double east, 
550                                         double down ){
551     v_local_v[0] = north;
552     v_local_v[1] = east;
553     v_local_v[2] = down;                                                 
554 }  
555
556 void FGInterface::set_Velocities_Wind_Body( double u, 
557                                             double v, 
558                                             double w){
559     v_wind_body_v[0] = u;
560     v_wind_body_v[1] = v;
561     v_wind_body_v[2] = w;
562
563
564 // Euler angles 
565 void FGInterface::set_Euler_Angles( double phi, 
566                                     double theta, 
567                                     double psi ) {
568     euler_angles_v[0] = phi;
569     euler_angles_v[1] = theta;
570     euler_angles_v[2] = psi;                                            
571 }  
572
573 // Flight Path
574 void FGInterface::set_Climb_Rate( double roc) {
575     climb_rate = roc;
576 }  
577
578 void FGInterface::set_Gamma_vert_rad( double gamma) {
579     gamma_vert_rad = gamma;
580 }  
581
582 // Earth
583 void FGInterface::set_Sea_level_radius(double slr) {
584     sea_level_radius = slr;
585 }  
586
587 void FGInterface::set_Runway_altitude(double ralt) {
588     runway_altitude = ralt;
589 }  
590
591 void FGInterface::set_Static_pressure(double p) { static_pressure = p; }
592 void FGInterface::set_Static_temperature(double T) { static_temperature = T; }
593 void FGInterface::set_Density(double rho) { density = rho; }
594
595 void FGInterface::set_Velocities_Local_Airmass (double wnorth, 
596                                                 double weast, 
597                                                 double wdown ) {
598     v_local_airmass_v[0] = wnorth;
599     v_local_airmass_v[1] = weast;
600     v_local_airmass_v[2] = wdown;
601 }     
602
603
604 void FGInterface::_busdump(void) {
605
606     SG_LOG(SG_FLIGHT,SG_INFO,"d_pilot_rp_body_v[3]: " << d_pilot_rp_body_v[0] << ", " << d_pilot_rp_body_v[1] << ", " << d_pilot_rp_body_v[2]);
607     SG_LOG(SG_FLIGHT,SG_INFO,"d_cg_rp_body_v[3]: " << d_cg_rp_body_v[0] << ", " << d_cg_rp_body_v[1] << ", " << d_cg_rp_body_v[2]);
608     SG_LOG(SG_FLIGHT,SG_INFO,"f_body_total_v[3]: " << f_body_total_v[0] << ", " << f_body_total_v[1] << ", " << f_body_total_v[2]);
609     SG_LOG(SG_FLIGHT,SG_INFO,"f_local_total_v[3]: " << f_local_total_v[0] << ", " << f_local_total_v[1] << ", " << f_local_total_v[2]);
610     SG_LOG(SG_FLIGHT,SG_INFO,"f_aero_v[3]: " << f_aero_v[0] << ", " << f_aero_v[1] << ", " << f_aero_v[2]);
611     SG_LOG(SG_FLIGHT,SG_INFO,"f_engine_v[3]: " << f_engine_v[0] << ", " << f_engine_v[1] << ", " << f_engine_v[2]);
612     SG_LOG(SG_FLIGHT,SG_INFO,"f_gear_v[3]: " << f_gear_v[0] << ", " << f_gear_v[1] << ", " << f_gear_v[2]);
613     SG_LOG(SG_FLIGHT,SG_INFO,"m_total_rp_v[3]: " << m_total_rp_v[0] << ", " << m_total_rp_v[1] << ", " << m_total_rp_v[2]);
614     SG_LOG(SG_FLIGHT,SG_INFO,"m_total_cg_v[3]: " << m_total_cg_v[0] << ", " << m_total_cg_v[1] << ", " << m_total_cg_v[2]);
615     SG_LOG(SG_FLIGHT,SG_INFO,"m_aero_v[3]: " << m_aero_v[0] << ", " << m_aero_v[1] << ", " << m_aero_v[2]);
616     SG_LOG(SG_FLIGHT,SG_INFO,"m_engine_v[3]: " << m_engine_v[0] << ", " << m_engine_v[1] << ", " << m_engine_v[2]);
617     SG_LOG(SG_FLIGHT,SG_INFO,"m_gear_v[3]: " << m_gear_v[0] << ", " << m_gear_v[1] << ", " << m_gear_v[2]);
618     SG_LOG(SG_FLIGHT,SG_INFO,"v_dot_local_v[3]: " << v_dot_local_v[0] << ", " << v_dot_local_v[1] << ", " << v_dot_local_v[2]);
619     SG_LOG(SG_FLIGHT,SG_INFO,"v_dot_body_v[3]: " << v_dot_body_v[0] << ", " << v_dot_body_v[1] << ", " << v_dot_body_v[2]);
620     SG_LOG(SG_FLIGHT,SG_INFO,"a_cg_body_v[3]: " << a_cg_body_v[0] << ", " << a_cg_body_v[1] << ", " << a_cg_body_v[2]);
621     SG_LOG(SG_FLIGHT,SG_INFO,"a_pilot_body_v[3]: " << a_pilot_body_v[0] << ", " << a_pilot_body_v[1] << ", " << a_pilot_body_v[2]);
622     SG_LOG(SG_FLIGHT,SG_INFO,"n_cg_body_v[3]: " << n_cg_body_v[0] << ", " << n_cg_body_v[1] << ", " << n_cg_body_v[2]);
623     SG_LOG(SG_FLIGHT,SG_INFO,"n_pilot_body_v[3]: " << n_pilot_body_v[0] << ", " << n_pilot_body_v[1] << ", " << n_pilot_body_v[2]);
624     SG_LOG(SG_FLIGHT,SG_INFO,"omega_dot_body_v[3]: " << omega_dot_body_v[0] << ", " << omega_dot_body_v[1] << ", " << omega_dot_body_v[2]);
625     SG_LOG(SG_FLIGHT,SG_INFO,"v_local_v[3]: " << v_local_v[0] << ", " << v_local_v[1] << ", " << v_local_v[2]);
626     SG_LOG(SG_FLIGHT,SG_INFO,"v_local_rel_ground_v[3]: " << v_local_rel_ground_v[0] << ", " << v_local_rel_ground_v[1] << ", " << v_local_rel_ground_v[2]);
627     SG_LOG(SG_FLIGHT,SG_INFO,"v_local_airmass_v[3]: " << v_local_airmass_v[0] << ", " << v_local_airmass_v[1] << ", " << v_local_airmass_v[2]);
628     SG_LOG(SG_FLIGHT,SG_INFO,"v_local_rel_airmass_v[3]: " << v_local_rel_airmass_v[0] << ", " << v_local_rel_airmass_v[1] << ", " << v_local_rel_airmass_v[2]);
629     SG_LOG(SG_FLIGHT,SG_INFO,"v_local_gust_v[3]: " << v_local_gust_v[0] << ", " << v_local_gust_v[1] << ", " << v_local_gust_v[2]);
630     SG_LOG(SG_FLIGHT,SG_INFO,"v_wind_body_v[3]: " << v_wind_body_v[0] << ", " << v_wind_body_v[1] << ", " << v_wind_body_v[2]);
631     SG_LOG(SG_FLIGHT,SG_INFO,"omega_body_v[3]: " << omega_body_v[0] << ", " << omega_body_v[1] << ", " << omega_body_v[2]);
632     SG_LOG(SG_FLIGHT,SG_INFO,"omega_local_v[3]: " << omega_local_v[0] << ", " << omega_local_v[1] << ", " << omega_local_v[2]);
633     SG_LOG(SG_FLIGHT,SG_INFO,"omega_total_v[3]: " << omega_total_v[0] << ", " << omega_total_v[1] << ", " << omega_total_v[2]);
634     SG_LOG(SG_FLIGHT,SG_INFO,"euler_rates_v[3]: " << euler_rates_v[0] << ", " << euler_rates_v[1] << ", " << euler_rates_v[2]);
635     SG_LOG(SG_FLIGHT,SG_INFO,"geocentric_rates_v[3]: " << geocentric_rates_v[0] << ", " << geocentric_rates_v[1] << ", " << geocentric_rates_v[2]);
636     SG_LOG(SG_FLIGHT,SG_INFO,"geocentric_position_v[3]: " << geocentric_position_v[0] << ", " << geocentric_position_v[1] << ", " << geocentric_position_v[2]);
637     SG_LOG(SG_FLIGHT,SG_INFO,"geodetic_position_v[3]: " << geodetic_position_v[0] << ", " << geodetic_position_v[1] << ", " << geodetic_position_v[2]);
638     SG_LOG(SG_FLIGHT,SG_INFO,"euler_angles_v[3]: " << euler_angles_v[0] << ", " << euler_angles_v[1] << ", " << euler_angles_v[2]);
639     SG_LOG(SG_FLIGHT,SG_INFO,"d_cg_rwy_local_v[3]: " << d_cg_rwy_local_v[0] << ", " << d_cg_rwy_local_v[1] << ", " << d_cg_rwy_local_v[2]);
640     SG_LOG(SG_FLIGHT,SG_INFO,"d_cg_rwy_rwy_v[3]: " << d_cg_rwy_rwy_v[0] << ", " << d_cg_rwy_rwy_v[1] << ", " << d_cg_rwy_rwy_v[2]);
641     SG_LOG(SG_FLIGHT,SG_INFO,"d_pilot_rwy_local_v[3]: " << d_pilot_rwy_local_v[0] << ", " << d_pilot_rwy_local_v[1] << ", " << d_pilot_rwy_local_v[2]);
642     SG_LOG(SG_FLIGHT,SG_INFO,"d_pilot_rwy_rwy_v[3]: " << d_pilot_rwy_rwy_v[0] << ", " << d_pilot_rwy_rwy_v[1] << ", " << d_pilot_rwy_rwy_v[2]);
643   
644     SG_LOG(SG_FLIGHT,SG_INFO,"t_local_to_body_m[0][3]: " << t_local_to_body_m[0][0] << ", " << t_local_to_body_m[0][1] << ", " << t_local_to_body_m[0][2]);
645     SG_LOG(SG_FLIGHT,SG_INFO,"t_local_to_body_m[1][3]: " << t_local_to_body_m[1][0] << ", " << t_local_to_body_m[1][1] << ", " << t_local_to_body_m[1][2]);
646     SG_LOG(SG_FLIGHT,SG_INFO,"t_local_to_body_m[2][3]: " << t_local_to_body_m[2][0] << ", " << t_local_to_body_m[2][1] << ", " << t_local_to_body_m[2][2]);
647
648     SG_LOG(SG_FLIGHT,SG_INFO,"mass: " << mass );
649     SG_LOG(SG_FLIGHT,SG_INFO,"i_xx: " << i_xx );
650     SG_LOG(SG_FLIGHT,SG_INFO,"i_yy: " << i_yy );
651     SG_LOG(SG_FLIGHT,SG_INFO,"i_zz: " << i_zz );
652     SG_LOG(SG_FLIGHT,SG_INFO,"i_xz: " << i_xz );
653     SG_LOG(SG_FLIGHT,SG_INFO,"nlf: " << nlf );
654     SG_LOG(SG_FLIGHT,SG_INFO,"v_rel_wind: " << v_rel_wind );
655     SG_LOG(SG_FLIGHT,SG_INFO,"v_true_kts: " << v_true_kts );
656     SG_LOG(SG_FLIGHT,SG_INFO,"v_rel_ground: " << v_rel_ground );
657     SG_LOG(SG_FLIGHT,SG_INFO,"v_inertial: " << v_inertial );
658     SG_LOG(SG_FLIGHT,SG_INFO,"v_ground_speed: " << v_ground_speed );
659     SG_LOG(SG_FLIGHT,SG_INFO,"v_equiv: " << v_equiv );
660     SG_LOG(SG_FLIGHT,SG_INFO,"v_equiv_kts: " << v_equiv_kts );
661     SG_LOG(SG_FLIGHT,SG_INFO,"v_calibrated: " << v_calibrated );
662     SG_LOG(SG_FLIGHT,SG_INFO,"v_calibrated_kts: " << v_calibrated_kts );
663     SG_LOG(SG_FLIGHT,SG_INFO,"gravity: " << gravity );
664     SG_LOG(SG_FLIGHT,SG_INFO,"centrifugal_relief: " << centrifugal_relief );
665     SG_LOG(SG_FLIGHT,SG_INFO,"alpha: " << alpha );
666     SG_LOG(SG_FLIGHT,SG_INFO,"beta: " << beta );
667     SG_LOG(SG_FLIGHT,SG_INFO,"alpha_dot: " << alpha_dot );
668     SG_LOG(SG_FLIGHT,SG_INFO,"beta_dot: " << beta_dot );
669     SG_LOG(SG_FLIGHT,SG_INFO,"cos_alpha: " << cos_alpha );
670     SG_LOG(SG_FLIGHT,SG_INFO,"sin_alpha: " << sin_alpha );
671     SG_LOG(SG_FLIGHT,SG_INFO,"cos_beta: " << cos_beta );
672     SG_LOG(SG_FLIGHT,SG_INFO,"sin_beta: " << sin_beta );
673     SG_LOG(SG_FLIGHT,SG_INFO,"cos_phi: " << cos_phi );
674     SG_LOG(SG_FLIGHT,SG_INFO,"sin_phi: " << sin_phi );
675     SG_LOG(SG_FLIGHT,SG_INFO,"cos_theta: " << cos_theta );
676     SG_LOG(SG_FLIGHT,SG_INFO,"sin_theta: " << sin_theta );
677     SG_LOG(SG_FLIGHT,SG_INFO,"cos_psi: " << cos_psi );
678     SG_LOG(SG_FLIGHT,SG_INFO,"sin_psi: " << sin_psi );
679     SG_LOG(SG_FLIGHT,SG_INFO,"gamma_vert_rad: " << gamma_vert_rad );
680     SG_LOG(SG_FLIGHT,SG_INFO,"gamma_horiz_rad: " << gamma_horiz_rad );
681     SG_LOG(SG_FLIGHT,SG_INFO,"sigma: " << sigma );
682     SG_LOG(SG_FLIGHT,SG_INFO,"density: " << density );
683     SG_LOG(SG_FLIGHT,SG_INFO,"v_sound: " << v_sound );
684     SG_LOG(SG_FLIGHT,SG_INFO,"mach_number: " << mach_number );
685     SG_LOG(SG_FLIGHT,SG_INFO,"static_pressure: " << static_pressure );
686     SG_LOG(SG_FLIGHT,SG_INFO,"total_pressure: " << total_pressure );
687     SG_LOG(SG_FLIGHT,SG_INFO,"impact_pressure: " << impact_pressure );
688     SG_LOG(SG_FLIGHT,SG_INFO,"dynamic_pressure: " << dynamic_pressure );
689     SG_LOG(SG_FLIGHT,SG_INFO,"static_temperature: " << static_temperature );
690     SG_LOG(SG_FLIGHT,SG_INFO,"total_temperature: " << total_temperature );
691     SG_LOG(SG_FLIGHT,SG_INFO,"sea_level_radius: " << sea_level_radius );
692     SG_LOG(SG_FLIGHT,SG_INFO,"earth_position_angle: " << earth_position_angle );
693     SG_LOG(SG_FLIGHT,SG_INFO,"runway_altitude: " << runway_altitude );
694     SG_LOG(SG_FLIGHT,SG_INFO,"runway_latitude: " << runway_latitude );
695     SG_LOG(SG_FLIGHT,SG_INFO,"runway_longitude: " << runway_longitude );
696     SG_LOG(SG_FLIGHT,SG_INFO,"runway_heading: " << runway_heading );
697     SG_LOG(SG_FLIGHT,SG_INFO,"radius_to_rwy: " << radius_to_rwy );
698     SG_LOG(SG_FLIGHT,SG_INFO,"climb_rate: " << climb_rate );
699     SG_LOG(SG_FLIGHT,SG_INFO,"sin_lat_geocentric: " << sin_lat_geocentric );
700     SG_LOG(SG_FLIGHT,SG_INFO,"cos_lat_geocentric: " << cos_lat_geocentric );
701     SG_LOG(SG_FLIGHT,SG_INFO,"sin_longitude: " << sin_longitude );
702     SG_LOG(SG_FLIGHT,SG_INFO,"cos_longitude: " << cos_longitude );
703     SG_LOG(SG_FLIGHT,SG_INFO,"sin_latitude: " << sin_latitude );
704     SG_LOG(SG_FLIGHT,SG_INFO,"cos_latitude: " << cos_latitude );
705     SG_LOG(SG_FLIGHT,SG_INFO,"altitude_agl: " << altitude_agl );
706 }  
707
708
709 void fgToggleFDMdataLogging(void) {
710   cur_fdm_state->ToggleDataLogging();
711 }
712