]> git.mxchange.org Git - flightgear.git/blob - src/FDM/flight.hxx
cf3a33dd9db2868e54187ffd0bf677033c97a238
[flightgear.git] / src / FDM / flight.hxx
1 // flight.hxx -- define shared flight model parameters
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 #ifndef _FLIGHT_HXX
25 #define _FLIGHT_HXX
26
27
28 #ifndef __cplusplus
29 # error This library requires C++
30 #endif
31
32
33 /* Required get_()
34
35    `FGInterface::get_Longitude ()'
36    `FGInterface::get_Latitude ()'
37    `FGInterface::get_Altitude ()'
38    `FGInterface::get_Phi ()'
39    `FGInterface::get_Theta ()'
40    `FGInterface::get_Psi ()'
41    `FGInterface::get_V_equiv_kts ()'
42
43    `FGInterface::get_Mass ()'
44    `FGInterface::get_I_xx ()'
45    `FGInterface::get_I_yy ()'
46    `FGInterface::get_I_zz ()'
47    `FGInterface::get_I_xz ()'
48    
49    `FGInterface::get_V_north ()'
50    `FGInterface::get_V_east ()'
51    `FGInterface::get_V_down ()'
52
53    `FGInterface::get_P_Body ()'
54    `FGInterface::get_Q_Body ()'
55    `FGInterface::get_R_Body ()'
56
57    `FGInterface::get_Gamma_vert_rad ()'
58    `FGInterface::get_Climb_Rate ()'
59    `FGInterface::get_Alpha ()'
60    `FGInterface::get_Beta ()'
61
62    `FGInterface::get_Runway_altitude ()'
63
64    `FGInterface::get_Lon_geocentric ()'
65    `FGInterface::get_Lat_geocentric ()'
66    `FGInterface::get_Sea_level_radius ()'
67    `FGInterface::get_Earth_position_angle ()'
68
69    `FGInterface::get_Latitude_dot()'
70    `FGInterface::get_Longitude_dot()'
71    `FGInterface::get_Radius_dot()'
72
73    `FGInterface::get_Dx_cg ()'
74    `FGInterface::get_Dy_cg ()'
75    `FGInterface::get_Dz_cg ()'
76
77    `FGInterface::get_T_local_to_body_11 ()' ... `FGInterface::get_T_local_to_body_33 ()'
78
79    `FGInterface::get_Radius_to_vehicle ()'
80
81  */
82
83
84 #include <simgear/compiler.h>
85
86 #include <math.h>
87
88 #include <list>
89 #include <vector>
90 #include <string>
91
92 #include <simgear/constants.h>
93 #include <simgear/timing/timestamp.hxx>
94
95 #include <Main/fgfs.hxx>
96
97 SG_USING_STD(list);
98 SG_USING_STD(vector);
99 SG_USING_STD(string);
100
101
102 typedef double FG_VECTOR_3[3];
103
104
105 class FGEngInterface {
106
107 private:
108
109     // inputs
110     double Throttle;
111     double Mixture;
112     double Prop_Advance;
113
114     // outputs
115     double RPM;
116     double Manifold_Pressure;     //inches
117     double MaxHP;
118     double Percentage_Power;      //HP
119     double EGT;                   //deg F
120     double CHT;                   //deg F
121     double prop_thrust;           //lbs
122     double Fuel_Flow;             //Gals/hr
123     
124     /* others...
125     double PercentN1,N1;  //GE,CFM
126     double PercentN2,N2;
127     double EPR;  //P&W, RR?
128     double FuelFlow;
129     bool AfterBurner;
130     double InletAngles[3];
131     double InletPosition[3];
132     double ThrustVector[3];
133     */
134
135 public:
136     FGEngInterface(void);
137     ~FGEngInterface(void);
138     
139     inline double get_Throttle() const { return Throttle; }
140     inline double get_Mixture() const { return Mixture; }
141     inline double get_Prop_Advance() const { return Prop_Advance; }
142     inline double get_RPM() const { return RPM; }
143     inline double get_Manifold_Pressure() const { return Manifold_Pressure; }
144     inline double get_MaxHP() const { return MaxHP; }
145     inline double get_Percentage_Power() const { return Percentage_Power; }
146     inline double get_EGT() const { return EGT; }
147     inline double get_CHT() const { return CHT; }
148     inline double get_prop_thrust() const { return prop_thrust; }
149     inline double get_Fuel_Flow() const { return Fuel_Flow; }
150
151     inline void set_Throttle( double t ) { Throttle = t; }
152     inline void set_Mixture( double m ) { Mixture = m; }
153     inline void set_Prop_Advance( double p ) { Prop_Advance = p; }
154     inline void set_RPM( double r ) { RPM = r; }
155     inline void set_Manifold_Pressure( double mp ) { Manifold_Pressure = mp; }
156     inline void set_MaxHP( double hp ) { MaxHP = hp; }
157     inline void set_Percentage_Power( double p ) { Percentage_Power = p; }
158     inline void set_EGT( double e ) { EGT = e; }
159     inline void set_CHT( double c ) { CHT = c; }
160     inline void set_prop_thrust( double t ) { prop_thrust = t; }
161     inline void set_Fuel_Flow( double f ) { Fuel_Flow = f; }
162
163 };
164
165 typedef vector < FGEngInterface > engine_list;
166
167
168 // This is based heavily on LaRCsim/ls_generic.h
169 class FGInterface : public FGSubsystem {
170
171 private:
172   
173     // periodic update management variable.  This is a scheme to run
174     // the fdm with a fixed delta-t.  We control how many iteration of
175     // the fdm to run with the fixed dt based on the elapsed time from
176     // the last update.  This allows us to maintain sync with the real
177     // time clock, even though each frame could take a random amount
178     // of time.  Since "dt" is unlikely to divide evenly into the
179     // elapse time, we keep track of the remainder and add it into the
180     // next elapsed time.  This yields a small amount of temporal
181     // jitter ( < dt ) but in practice seems to work well.
182
183     double delta_t;             // delta "t"
184     SGTimeStamp time_stamp;     // time stamp of last run
185     long elapsed;               // time elapsed since last run
186     long remainder;             // remainder time from last run
187     int multi_loop;             // number of iterations of "delta_t" to run
188
189     // Pilot location rel to ref pt
190     FG_VECTOR_3 d_pilot_rp_body_v;
191
192     // CG position w.r.t. ref. point
193     FG_VECTOR_3 d_cg_rp_body_v;
194
195     // Forces
196     FG_VECTOR_3 f_body_total_v;
197     FG_VECTOR_3 f_local_total_v;
198     FG_VECTOR_3 f_aero_v;
199     FG_VECTOR_3 f_engine_v;
200     FG_VECTOR_3 f_gear_v;
201
202     // Moments
203     FG_VECTOR_3 m_total_rp_v;
204     FG_VECTOR_3 m_total_cg_v;
205     FG_VECTOR_3 m_aero_v;
206     FG_VECTOR_3 m_engine_v;
207     FG_VECTOR_3 m_gear_v;
208
209     // Accelerations
210     FG_VECTOR_3 v_dot_local_v;
211     FG_VECTOR_3 v_dot_body_v;
212     FG_VECTOR_3 a_cg_body_v;
213     FG_VECTOR_3 a_pilot_body_v;
214     FG_VECTOR_3 n_cg_body_v;
215     FG_VECTOR_3 n_pilot_body_v;
216     FG_VECTOR_3 omega_dot_body_v;
217
218     // Velocities
219     FG_VECTOR_3 v_local_v;
220     FG_VECTOR_3 v_local_rel_ground_v; // V rel w.r.t. earth surface
221     FG_VECTOR_3 v_local_airmass_v;    // velocity of airmass (steady winds)
222     FG_VECTOR_3 v_local_rel_airmass_v;  // velocity of veh. relative to airmass
223     FG_VECTOR_3 v_local_gust_v;       // linear turbulence components, L frame
224     FG_VECTOR_3 v_wind_body_v;        // Wind-relative velocities in body axis
225
226     FG_VECTOR_3 omega_body_v;         // Angular B rates
227     FG_VECTOR_3 omega_local_v;        // Angular L rates
228     FG_VECTOR_3 omega_total_v;        // Diff btw B & L
229     FG_VECTOR_3 euler_rates_v;
230     FG_VECTOR_3 geocentric_rates_v;   // Geocentric linear velocities
231
232     // Positions
233     FG_VECTOR_3 geocentric_position_v;
234     FG_VECTOR_3 geodetic_position_v;
235     FG_VECTOR_3 euler_angles_v;
236
237     // Miscellaneous Quantities
238     FG_VECTOR_3 d_cg_rwy_local_v;     // CG rel. to rwy in local coords
239     FG_VECTOR_3 d_cg_rwy_rwy_v;       // CG relative to rwy, in rwy coordinates
240     FG_VECTOR_3 d_pilot_rwy_local_v;  // pilot rel. to rwy in local coords
241     FG_VECTOR_3 d_pilot_rwy_rwy_v;    // pilot rel. to rwy, in rwy coords.
242
243     // Inertias
244     double mass, i_xx, i_yy, i_zz, i_xz;
245
246     // Normal Load Factor
247     double nlf;
248
249     // Velocities
250     double v_rel_wind, v_true_kts, v_rel_ground, v_inertial;
251     double v_ground_speed, v_equiv, v_equiv_kts;
252     double v_calibrated, v_calibrated_kts;
253
254     // Miscellaneious Quantities
255     double t_local_to_body_m[3][3];   // Transformation matrix L to B
256     double gravity;                   // Local acceleration due to G
257     double centrifugal_relief;        // load factor reduction due to speed
258     double alpha, beta, alpha_dot, beta_dot;  // in radians
259     double cos_alpha, sin_alpha, cos_beta, sin_beta;
260     double cos_phi, sin_phi, cos_theta, sin_theta, cos_psi, sin_psi;
261     double gamma_vert_rad, gamma_horiz_rad;  // Flight path angles
262     double sigma, density, v_sound, mach_number;
263     double static_pressure, total_pressure, impact_pressure;
264     double dynamic_pressure;
265     double static_temperature, total_temperature;
266     double sea_level_radius, earth_position_angle;
267     double runway_altitude, runway_latitude, runway_longitude;
268     double runway_heading;
269     double radius_to_rwy;
270     double climb_rate;                // in feet per second
271     double sin_lat_geocentric, cos_lat_geocentric;
272     double sin_longitude, cos_longitude;
273     double sin_latitude, cos_latitude;
274     double altitude_agl;
275     double Tank1Fuel;             // Gals
276     double Tank2Fuel;             // Gals
277     
278     // Engine list
279     engine_list engines;
280
281     // SGTimeStamp valid_stamp;          // time this record is valid
282     // SGTimeStamp next_stamp;           // time this record is valid
283
284 protected:
285
286                                 // deliberately not virtual so that
287                                 // FGInterface constructor will call
288                                 // the right version
289     void _setup();
290
291     void _busdump(void);
292     void _updatePosition( double lat_geoc, double lon, double alt );
293     void _updateWeather( void );
294
295     inline void _set_Inertias( double m, double xx, double yy, 
296                               double zz, double xz)
297     {
298         mass = m;
299         i_xx = xx;
300         i_yy = yy;
301         i_zz = zz;
302         i_xz = xz;
303     }
304     inline void _set_CG_Position( double dx, double dy, double dz ) {
305         d_cg_rp_body_v[0] = dx;
306         d_cg_rp_body_v[1] = dy;
307         d_cg_rp_body_v[2] = dz;
308     }
309     inline void _set_Accels_Local( double north, double east, double down ) {
310         v_dot_local_v[0] = north;
311         v_dot_local_v[1] = east;
312         v_dot_local_v[2] = down;
313     }
314     inline void _set_Accels_Body( double u, double v, double w ) {
315         v_dot_body_v[0] = u;
316         v_dot_body_v[1] = v;
317         v_dot_body_v[2] = w;
318     }
319     inline void _set_Accels_CG_Body( double x, double y, double z ) {
320         a_cg_body_v[0] = x;
321         a_cg_body_v[1] = y;
322         a_cg_body_v[2] = z;
323     }
324     inline void _set_Accels_Pilot_Body( double x, double y, double z ) {
325         a_pilot_body_v[0] = x;
326         a_pilot_body_v[1] = y;
327         a_pilot_body_v[2] = z;
328     }
329     inline void _set_Accels_CG_Body_N( double x, double y, double z ) {
330         n_cg_body_v[0] = x;
331         n_cg_body_v[1] = y;
332         n_cg_body_v[2] = z;
333     }
334     void _set_Nlf(double n) { nlf=n;  }
335     inline void _set_Velocities_Local( double north, double east, double down ){
336         v_local_v[0] = north;
337         v_local_v[1] = east;
338         v_local_v[2] = down;
339     }
340     inline void _set_Velocities_Ground(double north, double east, double down) {
341         v_local_rel_ground_v[0] = north;
342         v_local_rel_ground_v[1] = east;
343         v_local_rel_ground_v[2] = down;
344     }
345     inline void _set_Velocities_Local_Airmass( double north, double east, 
346                                               double down)
347     {
348         v_local_airmass_v[0] = north;
349         v_local_airmass_v[1] = east;
350         v_local_airmass_v[2] = down;
351     }
352     inline void _set_Velocities_Wind_Body( double u, double v, double w) {
353         v_wind_body_v[0] = u;
354         v_wind_body_v[1] = v;
355         v_wind_body_v[2] = w;
356     }
357     inline void _set_V_rel_wind(double vt) { v_rel_wind = vt; }
358     inline void _set_V_ground_speed( double v) { v_ground_speed = v; }
359     inline void _set_V_equiv_kts( double kts ) { v_equiv_kts = kts; }
360     inline void _set_V_calibrated_kts( double kts ) { v_calibrated_kts = kts; }
361     inline void _set_Omega_Body( double p, double q, double r ) {
362         omega_body_v[0] = p;
363         omega_body_v[1] = q;
364         omega_body_v[2] = r;
365     }
366     inline void _set_Euler_Rates( double phi, double theta, double psi ) {
367         euler_rates_v[0] = phi;
368         euler_rates_v[1] = theta;
369         euler_rates_v[2] = psi;
370     }
371     inline void _set_Geocentric_Rates( double lat, double lon, double rad ) {
372         geocentric_rates_v[0] = lat;
373         geocentric_rates_v[1] = lon;
374         geocentric_rates_v[2] = rad;
375     }
376 #if 0
377     inline void _set_Radius_to_vehicle(double radius) {
378         geocentric_position_v[2] = radius;
379     }
380 #endif
381     inline void _set_Geocentric_Position( double lat, double lon, double rad ) {
382         geocentric_position_v[0] = lat;
383         geocentric_position_v[1] = lon;
384         geocentric_position_v[2] = rad;
385     }
386     inline void _set_Latitude(double lat) { geodetic_position_v[0] = lat; }
387     inline void _set_Longitude(double lon) { geodetic_position_v[1] = lon; }
388     inline void _set_Altitude(double altitude) {
389         geodetic_position_v[2] = altitude;
390     }
391     inline void _set_Altitude_AGL(double agl) {
392         altitude_agl = agl;
393     }
394     inline void _set_Geodetic_Position( double lat, double lon, double alt ) {
395         geodetic_position_v[0] = lat;
396         geodetic_position_v[1] = lon;
397         geodetic_position_v[2] = alt;
398     }
399     inline void _set_Euler_Angles( double phi, double theta, double psi ) {
400         euler_angles_v[0] = phi;
401         euler_angles_v[1] = theta;
402         euler_angles_v[2] = psi;
403     }
404     inline void _set_T_Local_to_Body( int i, int j, double value) {
405         t_local_to_body_m[i-1][j-1] = value;
406     }
407     inline void _set_T_Local_to_Body( double m[3][3] ) {
408         int i, j;
409         for ( i = 0; i < 3; i++ ) {
410             for ( j = 0; j < 3; j++ ) {
411                 t_local_to_body_m[i][j] = m[i][j];
412             }
413         }
414     }
415     inline void _set_Alpha( double a ) { alpha = a; }
416     inline void _set_Beta( double b ) { beta = b; }
417     inline void _set_Cos_phi( double cp ) { cos_phi = cp; }
418     inline void _set_Cos_theta( double ct ) { cos_theta = ct; }
419     inline void _set_Gamma_vert_rad( double gv ) { gamma_vert_rad = gv; }
420     inline void _set_Density( double d ) { density = d; }
421     inline void _set_Mach_number( double m ) { mach_number = m; }
422     inline void _set_Static_pressure( double sp ) { static_pressure = sp; }
423     inline void _set_Static_temperature( double t ) { static_temperature = t; }
424     inline void _set_Sea_level_radius( double r ) { sea_level_radius = r; }
425     inline void _set_Earth_position_angle(double a) {
426         earth_position_angle = a;
427     }
428     inline void _set_Runway_altitude( double alt ) { runway_altitude = alt; }
429     inline void _set_Climb_Rate(double rate) { climb_rate = rate; }
430     inline void _set_sin_lat_geocentric(double parm) {
431         sin_lat_geocentric = sin(parm);
432     }
433     inline void _set_cos_lat_geocentric(double parm) {
434         cos_lat_geocentric = cos(parm);
435     }
436     inline void _set_sin_cos_longitude(double parm) {
437         sin_longitude = sin(parm);
438         cos_longitude = cos(parm);
439     }
440     inline void _set_sin_cos_latitude(double parm) {
441         sin_latitude = sin(parm);
442         cos_latitude = cos(parm);
443     }
444
445 public:
446   
447     FGInterface();
448     FGInterface( double dt );
449     virtual ~FGInterface();
450
451     virtual void init ();
452     virtual void bind ();
453     virtual void unbind ();
454     virtual void update ();
455     virtual bool update( int multi_loop );
456     virtual bool ToggleDataLogging(bool state) { return false; }
457     virtual bool ToggleDataLogging(void) { return false; }
458
459     // Define the various supported flight models (many not yet implemented)
460     enum {
461         // Magic Carpet mode
462         FG_MAGICCARPET = 0,
463
464         // The NASA LaRCsim (Navion) flight model
465         FG_LARCSIM = 1,
466
467         // Jon S. Berndt's new FDM written from the ground up in C++
468         FG_JSBSIM = 2,
469
470         // Christian's hot air balloon simulation
471         FG_BALLOONSIM = 3,
472
473         // Aeronautical DEvelopment AGEncy, Bangalore India
474         FG_ADA = 4,
475
476         // The following aren't implemented but are here to spark
477         // thoughts and discussions, and maybe even action.
478         FG_ACM = 5,
479         FG_SUPER_SONIC = 6,
480         FG_HELICOPTER = 7,
481         FG_AUTOGYRO = 8,
482         FG_PARACHUTE = 9,
483
484         // Driven externally via a serial port, net, file, etc.
485         FG_EXTERNAL = 10
486     };
487
488     // time and update management values
489     inline double get_delta_t() const { return delta_t; }
490     inline void set_delta_t( double dt ) { delta_t = dt; }
491     inline SGTimeStamp get_time_stamp() const { return time_stamp; }
492     inline void set_time_stamp( SGTimeStamp s ) { time_stamp = s; }
493     inline void stamp() { time_stamp.stamp(); }
494     inline long get_elapsed() const { return elapsed; }
495     inline void set_elapsed( long e ) { elapsed = e; }
496     inline long get_remainder() const { return remainder; }
497     inline void set_remainder( long r ) { remainder = r; }
498     inline int get_multi_loop() const { return multi_loop; }
499     inline void set_multi_loop( int ml ) { multi_loop = ml; }
500
501     // Positions
502     virtual void set_Latitude(double lat);       // geocentric
503     virtual void set_Longitude(double lon);    
504     virtual void set_Altitude(double alt);  // triggers re-calc of AGL altitude
505     virtual void set_AltitudeAGL(double altagl); // and vice-versa
506     virtual void set_Latitude_deg (double lat) {
507       set_Latitude(lat * SGD_DEGREES_TO_RADIANS);
508     }
509     virtual void set_Longitude_deg (double lon) {
510       set_Longitude(lon * SGD_DEGREES_TO_RADIANS);
511     }
512     
513     // Speeds -- setting any of these will trigger a re-calc of the rest
514     virtual void set_V_calibrated_kts(double vc);
515     virtual void set_Mach_number(double mach);
516     virtual void set_Velocities_Local( double north, double east, double down );
517     inline void set_V_north (double north) { 
518       set_Velocities_Local(north, v_local_v[1], v_local_v[2]);
519     }
520     inline void set_V_east (double east) { 
521       set_Velocities_Local(v_local_v[0], east, v_local_v[2]);
522     }
523     inline void set_V_down (double down) { 
524       set_Velocities_Local(v_local_v[0], v_local_v[1], down);
525     }
526     virtual void set_Velocities_Wind_Body( double u, double v, double w);
527     virtual void set_uBody (double uBody) { 
528       set_Velocities_Wind_Body(uBody, v_wind_body_v[1], v_wind_body_v[2]);
529     }
530     virtual void set_vBody (double vBody) { 
531       set_Velocities_Wind_Body(v_wind_body_v[0], vBody, v_wind_body_v[2]);
532     }
533     virtual void set_wBody (double wBody) {
534       set_Velocities_Wind_Body(v_wind_body_v[0], v_wind_body_v[1], wBody);
535     }
536     
537     // Euler angles 
538     virtual void set_Euler_Angles( double phi, double theta, double psi );
539     virtual void set_Phi (double phi) {
540       set_Euler_Angles(phi, get_Theta(), get_Psi());
541     }
542     virtual void set_Theta (double theta) {
543       set_Euler_Angles(get_Phi(), theta, get_Psi());
544     }
545     virtual void set_Psi (double psi) { 
546       set_Euler_Angles(get_Phi(), get_Theta(), psi);
547     }
548     virtual void set_Phi_deg (double phi) { set_Phi(phi * SGD_DEGREES_TO_RADIANS); }
549     virtual void set_Theta_deg (double theta) {
550       set_Theta(theta * SGD_DEGREES_TO_RADIANS); 
551     }
552     virtual void set_Psi_deg (double psi) { set_Psi(psi * SGD_DEGREES_TO_RADIANS); }
553     
554     // Flight Path
555     virtual void set_Climb_Rate( double roc);
556     virtual void set_Gamma_vert_rad( double gamma);
557     
558     // Earth
559     virtual void set_Sea_level_radius(double slr);
560     virtual void set_Runway_altitude(double ralt);
561     
562     virtual void set_Static_pressure(double p);
563     virtual void set_Static_temperature(double T);
564     virtual void set_Density(double rho);
565     
566     virtual void set_Velocities_Local_Airmass (double wnorth, 
567                                                double weast, 
568                                                double wdown );
569
570     // Consumables
571     inline void set_Tank1Fuel( double f ) { Tank1Fuel = f; }
572     inline void set_Tank2Fuel( double f ) { Tank2Fuel = f; }
573
574     inline void reduce_Tank1Fuel( double f ) { 
575         Tank1Fuel -= f;
576         if(Tank1Fuel < 0)
577             Tank1Fuel = 0;
578     }
579     inline void reduce_Tank2Fuel( double f ) { 
580         Tank2Fuel -= f;
581         if(Tank2Fuel < 0)
582             Tank2Fuel = 0;
583     }  
584
585     
586     // ========== Mass properties and geometry values ==========
587
588     // Inertias
589     inline double get_Mass() const { return mass; }
590     inline double get_I_xx() const { return i_xx; }
591     inline double get_I_yy() const { return i_yy; }
592     inline double get_I_zz() const { return i_zz; }
593     inline double get_I_xz() const { return i_xz; }
594
595     // Pilot location rel to ref pt
596     // inline double * get_D_pilot_rp_body_v() {
597     //  return d_pilot_rp_body_v;
598     // }
599     // inline double get_Dx_pilot() const { return d_pilot_rp_body_v[0]; }
600     // inline double get_Dy_pilot() const { return d_pilot_rp_body_v[1]; }
601     // inline double get_Dz_pilot() const { return d_pilot_rp_body_v[2]; }
602     /* inline void set_Pilot_Location( double dx, double dy, double dz ) {
603         d_pilot_rp_body_v[0] = dx;
604         d_pilot_rp_body_v[1] = dy;
605         d_pilot_rp_body_v[2] = dz;
606     } */
607
608     // CG position w.r.t. ref. point
609     // inline double * get_D_cg_rp_body_v() { return d_cg_rp_body_v; }
610     inline double get_Dx_cg() const { return d_cg_rp_body_v[0]; }
611     inline double get_Dy_cg() const { return d_cg_rp_body_v[1]; }
612     inline double get_Dz_cg() const { return d_cg_rp_body_v[2]; }
613
614     // ========== Forces ==========
615
616     // inline double * get_F_body_total_v() { return f_body_total_v; }
617     // inline double get_F_X() const { return f_body_total_v[0]; }
618     // inline double get_F_Y() const { return f_body_total_v[1]; }
619     // inline double get_F_Z() const { return f_body_total_v[2]; }
620     /* inline void set_Forces_Body_Total( double x, double y, double z ) {
621         f_body_total_v[0] = x;
622         f_body_total_v[1] = y;
623         f_body_total_v[2] = z;
624     } */
625
626     // inline double * get_F_local_total_v() { return f_local_total_v; }
627     // inline double get_F_north() const { return f_local_total_v[0]; }
628     // inline double get_F_east() const { return f_local_total_v[1]; }
629     // inline double get_F_down() const { return f_local_total_v[2]; }
630     /* inline void set_Forces_Local_Total( double x, double y, double z ) {
631         f_local_total_v[0] = x;
632         f_local_total_v[1] = y;
633         f_local_total_v[2] = z;
634     } */
635
636     // inline double * get_F_aero_v() { return f_aero_v; }
637     // inline double get_F_X_aero() const { return f_aero_v[0]; }
638     // inline double get_F_Y_aero() const { return f_aero_v[1]; }
639     // inline double get_F_Z_aero() const { return f_aero_v[2]; }
640     /* inline void set_Forces_Aero( double x, double y, double z ) {
641         f_aero_v[0] = x;
642         f_aero_v[1] = y;
643         f_aero_v[2] = z;
644     } */
645     
646     // inline double * get_F_engine_v() { return f_engine_v; }
647     // inline double get_F_X_engine() const { return f_engine_v[0]; }
648     // inline double get_F_Y_engine() const { return f_engine_v[1]; }
649     // inline double get_F_Z_engine() const { return f_engine_v[2]; }
650     /* inline void set_Forces_Engine( double x, double y, double z ) {
651         f_engine_v[0] = x;
652         f_engine_v[1] = y;
653         f_engine_v[2] = z;
654     } */
655
656     // inline double * get_F_gear_v() { return f_gear_v; }
657     // inline double get_F_X_gear() const { return f_gear_v[0]; }
658     // inline double get_F_Y_gear() const { return f_gear_v[1]; }
659     // inline double get_F_Z_gear() const { return f_gear_v[2]; }
660     /* inline void set_Forces_Gear( double x, double y, double z ) {
661         f_gear_v[0] = x;
662         f_gear_v[1] = y;
663         f_gear_v[2] = z;
664     } */
665
666     // ========== Moments ==========
667
668     // inline double * get_M_total_rp_v() { return m_total_rp_v; }
669     // inline double get_M_l_rp() const { return m_total_rp_v[0]; }
670     // inline double get_M_m_rp() const { return m_total_rp_v[1]; }
671     // inline double get_M_n_rp() const { return m_total_rp_v[2]; }
672     /* inline void set_Moments_Total_RP( double l, double m, double n ) {
673         m_total_rp_v[0] = l;
674         m_total_rp_v[1] = m;
675         m_total_rp_v[2] = n;
676     } */
677
678     // inline double * get_M_total_cg_v() { return m_total_cg_v; }
679     // inline double get_M_l_cg() const { return m_total_cg_v[0]; }
680     // inline double get_M_m_cg() const { return m_total_cg_v[1]; }
681     // inline double get_M_n_cg() const { return m_total_cg_v[2]; }
682     /* inline void set_Moments_Total_CG( double l, double m, double n ) {
683         m_total_cg_v[0] = l;
684         m_total_cg_v[1] = m;
685         m_total_cg_v[2] = n;
686     } */
687
688     // inline double * get_M_aero_v() { return m_aero_v; }
689     // inline double get_M_l_aero() const { return m_aero_v[0]; }
690     // inline double get_M_m_aero() const { return m_aero_v[1]; }
691     // inline double get_M_n_aero() const { return m_aero_v[2]; }
692     /* inline void set_Moments_Aero( double l, double m, double n ) {
693         m_aero_v[0] = l;
694         m_aero_v[1] = m;
695         m_aero_v[2] = n;
696     } */
697
698     // inline double * get_M_engine_v() { return m_engine_v; }
699     // inline double get_M_l_engine() const { return m_engine_v[0]; }
700     // inline double get_M_m_engine() const { return m_engine_v[1]; }
701     // inline double get_M_n_engine() const { return m_engine_v[2]; }
702     /* inline void set_Moments_Engine( double l, double m, double n ) {
703         m_engine_v[0] = l;
704         m_engine_v[1] = m;
705         m_engine_v[2] = n;
706     } */
707
708     // inline double * get_M_gear_v() { return m_gear_v; }
709     // inline double get_M_l_gear() const { return m_gear_v[0]; }
710     // inline double get_M_m_gear() const { return m_gear_v[1]; }
711     // inline double get_M_n_gear() const { return m_gear_v[2]; }
712     /* inline void set_Moments_Gear( double l, double m, double n ) {
713         m_gear_v[0] = l;
714         m_gear_v[1] = m;
715         m_gear_v[2] = n;
716     } */
717
718     // ========== Accelerations ==========
719
720     // inline double * get_V_dot_local_v() { return v_dot_local_v; }
721     inline double get_V_dot_north() const { return v_dot_local_v[0]; }
722     inline double get_V_dot_east() const { return v_dot_local_v[1]; }
723     inline double get_V_dot_down() const { return v_dot_local_v[2]; }
724
725     // inline double * get_V_dot_body_v() { return v_dot_body_v; }
726     inline double get_U_dot_body() const { return v_dot_body_v[0]; }
727     inline double get_V_dot_body() const { return v_dot_body_v[1]; }
728     inline double get_W_dot_body() const { return v_dot_body_v[2]; }
729
730     // inline double * get_A_cg_body_v() { return a_cg_body_v; }
731     inline double get_A_X_cg() const { return a_cg_body_v[0]; }
732     inline double get_A_Y_cg() const { return a_cg_body_v[1]; }
733     inline double get_A_Z_cg() const { return a_cg_body_v[2]; }
734
735     // inline double * get_A_pilot_body_v() { return a_pilot_body_v; }
736     inline double get_A_X_pilot() const { return a_pilot_body_v[0]; }
737     inline double get_A_Y_pilot() const { return a_pilot_body_v[1]; }
738     inline double get_A_Z_pilot() const { return a_pilot_body_v[2]; }
739
740     // inline double * get_N_cg_body_v() { return n_cg_body_v; }
741     inline double get_N_X_cg() const { return n_cg_body_v[0]; }
742     inline double get_N_Y_cg() const { return n_cg_body_v[1]; }
743     inline double get_N_Z_cg() const { return n_cg_body_v[2]; }
744
745     // inline double * get_N_pilot_body_v() { return n_pilot_body_v; }
746     // inline double get_N_X_pilot() const { return n_pilot_body_v[0]; }
747     // inline double get_N_Y_pilot() const { return n_pilot_body_v[1]; }
748     // inline double get_N_Z_pilot() const { return n_pilot_body_v[2]; }
749     // inline void set_Accels_Pilot_Body_N( double x, double y, double z ) {
750     //    n_pilot_body_v[0] = x;
751     //    n_pilot_body_v[1] = y;
752     //    n_pilot_body_v[2] = z;
753     // }
754
755     inline double get_Nlf(void) { return nlf; }
756
757     // inline double * get_Omega_dot_body_v() { return omega_dot_body_v; }
758     // inline double get_P_dot_body() const { return omega_dot_body_v[0]; }
759     // inline double get_Q_dot_body() const { return omega_dot_body_v[1]; }
760     // inline double get_R_dot_body() const { return omega_dot_body_v[2]; }
761     /* inline void set_Accels_Omega( double p, double q, double r ) {
762         omega_dot_body_v[0] = p;
763         omega_dot_body_v[1] = q;
764         omega_dot_body_v[2] = r;
765     } */
766
767
768     // ========== Velocities ==========
769
770     // inline double * get_V_local_v() { return v_local_v; }
771     inline double get_V_north() const { return v_local_v[0]; }
772     inline double get_V_east() const { return v_local_v[1]; }
773     inline double get_V_down() const { return v_local_v[2]; }
774     inline double get_uBody () const { return v_wind_body_v[0]; }
775     inline double get_vBody () const { return v_wind_body_v[1]; }
776     inline double get_wBody () const { return v_wind_body_v[2]; }
777
778     // inline double * get_V_local_rel_ground_v() {
779     //     return v_local_rel_ground_v;
780     // }
781     // inline double get_V_north_rel_ground() const {
782     //     return v_local_rel_ground_v[0];
783     // }
784     // inline double get_V_east_rel_ground() const {
785     //     return v_local_rel_ground_v[1];
786     // }
787     // inline double get_V_down_rel_ground() const {
788     //    return v_local_rel_ground_v[2];
789     // }
790
791     // inline double * get_V_local_airmass_v() { return v_local_airmass_v; }
792     inline double get_V_north_airmass() const { return v_local_airmass_v[0]; }
793     inline double get_V_east_airmass() const { return v_local_airmass_v[1]; }
794     inline double get_V_down_airmass() const { return v_local_airmass_v[2]; }
795
796     // airmass
797     // inline double * get_V_local_rel_airmass_v() {
798     //   return v_local_rel_airmass_v;
799     // }
800     // inline double get_V_north_rel_airmass() const {
801     //   return v_local_rel_airmass_v[0];
802     // }
803     // inline double get_V_east_rel_airmass() const {
804     //   return v_local_rel_airmass_v[1];
805     // }
806     // inline double get_V_down_rel_airmass() const {
807     //   return v_local_rel_airmass_v[2];
808     // }
809     /* inline void set_Velocities_Local_Rel_Airmass( double north, double east, 
810                                                   double down)
811     {
812         v_local_rel_airmass_v[0] = north;
813         v_local_rel_airmass_v[1] = east;
814         v_local_rel_airmass_v[2] = down;
815     } */
816
817     // inline double * get_V_local_gust_v() { return v_local_gust_v; }
818     // inline double get_U_gust() const { return v_local_gust_v[0]; }
819     // inline double get_V_gust() const { return v_local_gust_v[1]; }
820     // inline double get_W_gust() const { return v_local_gust_v[2]; }
821     /* inline void set_Velocities_Gust( double u, double v, double w)
822     {
823         v_local_gust_v[0] = u;
824         v_local_gust_v[1] = v;
825         v_local_gust_v[2] = w;
826     } */
827     
828     // inline double * get_V_wind_body_v() { return v_wind_body_v; }
829     inline double get_U_body() const { return v_wind_body_v[0]; }
830     inline double get_V_body() const { return v_wind_body_v[1]; }
831     inline double get_W_body() const { return v_wind_body_v[2]; }
832
833     inline double get_V_rel_wind() const { return v_rel_wind; }
834     // inline void set_V_rel_wind(double wind) { v_rel_wind = wind; }
835
836     // inline double get_V_true_kts() const { return v_true_kts; }
837     // inline void set_V_true_kts(double kts) { v_true_kts = kts; }
838
839     // inline double get_V_rel_ground() const { return v_rel_ground; }
840     // inline void set_V_rel_ground( double v ) { v_rel_ground = v; }
841
842     // inline double get_V_inertial() const { return v_inertial; }
843     // inline void set_V_inertial(double v) { v_inertial = v; }
844
845     inline double get_V_ground_speed() const { return v_ground_speed; }
846
847     // inline double get_V_equiv() const { return v_equiv; }
848     // inline void set_V_equiv( double v ) { v_equiv = v; }
849
850     inline double get_V_equiv_kts() const { return v_equiv_kts; }
851
852     //inline double get_V_calibrated() const { return v_calibrated; }
853     //inline void set_V_calibrated( double v ) { v_calibrated = v; }
854
855     inline double get_V_calibrated_kts() const { return v_calibrated_kts; }
856
857     // inline double * get_Omega_body_v() { return omega_body_v; }
858     inline double get_P_body() const { return omega_body_v[0]; }
859     inline double get_Q_body() const { return omega_body_v[1]; }
860     inline double get_R_body() const { return omega_body_v[2]; }
861
862     // inline double * get_Omega_local_v() { return omega_local_v; }
863     // inline double get_P_local() const { return omega_local_v[0]; }
864     // inline double get_Q_local() const { return omega_local_v[1]; }
865     // inline double get_R_local() const { return omega_local_v[2]; }
866     /* inline void set_Omega_Local( double p, double q, double r ) {
867         omega_local_v[0] = p;
868         omega_local_v[1] = q;
869         omega_local_v[2] = r;
870     } */
871
872     // inline double * get_Omega_total_v() { return omega_total_v; }
873     // inline double get_P_total() const { return omega_total_v[0]; }
874     // inline double get_Q_total() const { return omega_total_v[1]; }
875     // inline double get_R_total() const { return omega_total_v[2]; }
876     /* inline void set_Omega_Total( double p, double q, double r ) {
877         omega_total_v[0] = p;
878         omega_total_v[1] = q;
879         omega_total_v[2] = r;
880     } */
881
882     // inline double * get_Euler_rates_v() { return euler_rates_v; }
883     inline double get_Phi_dot() const { return euler_rates_v[0]; }
884     inline double get_Theta_dot() const { return euler_rates_v[1]; }
885     inline double get_Psi_dot() const { return euler_rates_v[2]; }
886
887     // inline double * get_Geocentric_rates_v() { return geocentric_rates_v; }
888     inline double get_Latitude_dot() const { return geocentric_rates_v[0]; }
889     inline double get_Longitude_dot() const { return geocentric_rates_v[1]; }
890     inline double get_Radius_dot() const { return geocentric_rates_v[2]; }
891
892     // ========== Positions ==========
893
894     // inline double * get_Geocentric_position_v() {
895     //    return geocentric_position_v;
896     // }
897     inline double get_Lat_geocentric() const {
898         return geocentric_position_v[0];
899     }
900     inline double get_Lon_geocentric() const {
901         return geocentric_position_v[1];
902     }
903     inline double get_Radius_to_vehicle() const {
904         return geocentric_position_v[2];
905     }
906
907     // inline double * get_Geodetic_position_v() { return geodetic_position_v; }
908     inline double get_Latitude() const { return geodetic_position_v[0]; }
909     inline double get_Longitude() const { return geodetic_position_v[1]; }
910     inline double get_Altitude() const { return geodetic_position_v[2]; }
911     inline double get_Altitude_AGL(void) const { return altitude_agl; }
912
913     inline double get_Latitude_deg () const {
914       return get_Latitude() * SGD_RADIANS_TO_DEGREES;
915     }
916     inline double get_Longitude_deg () const {
917       return get_Longitude() * SGD_RADIANS_TO_DEGREES;
918     }
919
920     // inline double * get_Euler_angles_v() { return euler_angles_v; }
921     inline double get_Phi() const { return euler_angles_v[0]; }
922     inline double get_Theta() const { return euler_angles_v[1]; }
923     inline double get_Psi() const { return euler_angles_v[2]; }
924     inline double get_Phi_deg () const { return get_Phi() * SGD_RADIANS_TO_DEGREES; }
925     inline double get_Theta_deg () const { return get_Theta() * SGD_RADIANS_TO_DEGREES; }
926     inline double get_Psi_deg () const { return get_Psi() * SGD_RADIANS_TO_DEGREES; }
927
928
929     // ========== Miscellaneous quantities ==========
930
931     // inline double * get_T_local_to_body_m() { return t_local_to_body_m; }
932     inline double get_T_local_to_body_11() const {
933         return t_local_to_body_m[0][0];
934     }
935     inline double get_T_local_to_body_12() const {
936         return t_local_to_body_m[0][1];
937     }
938     inline double get_T_local_to_body_13() const {
939         return t_local_to_body_m[0][2];
940     }
941     inline double get_T_local_to_body_21() const {
942         return t_local_to_body_m[1][0];
943     }
944     inline double get_T_local_to_body_22() const {
945         return t_local_to_body_m[1][1];
946     }
947     inline double get_T_local_to_body_23() const {
948         return t_local_to_body_m[1][2];
949     }
950     inline double get_T_local_to_body_31() const {
951         return t_local_to_body_m[2][0];
952     }
953     inline double get_T_local_to_body_32() const {
954         return t_local_to_body_m[2][1];
955     }
956     inline double get_T_local_to_body_33() const {
957         return t_local_to_body_m[2][2];
958     }
959
960     // inline double get_Gravity() const { return gravity; }
961     // inline void set_Gravity(double g) { gravity = g; }
962
963     // inline double get_Centrifugal_relief() const {
964     //   return centrifugal_relief;
965     // }
966     // inline void set_Centrifugal_relief(double cr) {
967     //   centrifugal_relief = cr;
968     // }
969
970     inline double get_Alpha() const { return alpha; }
971     inline double get_Beta() const { return beta; }
972     // inline double get_Alpha_dot() const { return alpha_dot; }
973     // inline void set_Alpha_dot( double ad ) { alpha_dot = ad; }
974     // inline double get_Beta_dot() const { return beta_dot; }
975     // inline void set_Beta_dot( double bd ) { beta_dot = bd; }
976
977     // inline double get_Cos_alpha() const { return cos_alpha; }
978     // inline void set_Cos_alpha( double ca ) { cos_alpha = ca; }
979     // inline double get_Sin_alpha() const { return sin_alpha; }
980     // inline void set_Sin_alpha( double sa ) { sin_alpha = sa; }
981     // inline double get_Cos_beta() const { return cos_beta; }
982     // inline void set_Cos_beta( double cb ) { cos_beta = cb; }
983     // inline double get_Sin_beta() const { return sin_beta; }
984     // inline void set_Sin_beta( double sb ) { sin_beta = sb; }
985
986     inline double get_Cos_phi() const { return cos_phi; }
987     // inline double get_Sin_phi() const { return sin_phi; }
988     // inline void set_Sin_phi( double sp ) { sin_phi = sp; }
989     inline double get_Cos_theta() const { return cos_theta; }
990     // inline double get_Sin_theta() const { return sin_theta; }
991     // inline void set_Sin_theta( double st ) { sin_theta = st; }
992     // inline double get_Cos_psi() const { return cos_psi; }
993     // inline void set_Cos_psi( double cp ) { cos_psi = cp; }
994     // inline double get_Sin_psi() const { return sin_psi; }
995     // inline void set_Sin_psi( double sp ) { sin_psi = sp; }
996
997     inline double get_Gamma_vert_rad() const { return gamma_vert_rad; }
998     // inline double get_Gamma_horiz_rad() const { return gamma_horiz_rad; }
999     // inline void set_Gamma_horiz_rad( double gh ) { gamma_horiz_rad = gh; }
1000
1001     // inline double get_Sigma() const { return sigma; }
1002     // inline void set_Sigma( double s ) { sigma = s; }
1003     inline double get_Density() const { return density; }
1004     // inline double get_V_sound() const { return v_sound; }
1005     // inline void set_V_sound( double v ) { v_sound = v; }
1006     inline double get_Mach_number() const { return mach_number; }
1007
1008     inline double get_Static_pressure() const { return static_pressure; }
1009     // inline double get_Total_pressure() const { return total_pressure; }
1010     // inline void set_Total_pressure( double tp ) { total_pressure = tp; }
1011     // inline double get_Impact_pressure() const { return impact_pressure; }
1012     // inline void set_Impact_pressure( double ip ) { impact_pressure = ip; }
1013     // inline double get_Dynamic_pressure() const { return dynamic_pressure; }
1014     // inline void set_Dynamic_pressure( double dp ) { dynamic_pressure = dp; }
1015
1016     inline double get_Static_temperature() const { return static_temperature; }
1017     // inline double get_Total_temperature() const { return total_temperature; }
1018     // inline void set_Total_temperature( double t ) { total_temperature = t; }
1019
1020     inline double get_Sea_level_radius() const { return sea_level_radius; }
1021     inline double get_Earth_position_angle() const {
1022         return earth_position_angle;
1023     }
1024
1025     inline double get_Runway_altitude() const { return runway_altitude; }
1026     // inline double get_Runway_latitude() const { return runway_latitude; }
1027     // inline void set_Runway_latitude( double lat ) { runway_latitude = lat; }
1028     // inline double get_Runway_longitude() const { return runway_longitude; }
1029     // inline void set_Runway_longitude( double lon ) {
1030     //   runway_longitude = lon;
1031     // }
1032     // inline double get_Runway_heading() const { return runway_heading; }
1033     // inline void set_Runway_heading( double h ) { runway_heading = h; }
1034
1035     // inline double get_Radius_to_rwy() const { return radius_to_rwy; }
1036     // inline void set_Radius_to_rwy( double r ) { radius_to_rwy = r; }
1037
1038     // inline double * get_D_cg_rwy_local_v() { return d_cg_rwy_local_v; }
1039     // inline double get_D_cg_north_of_rwy() const {
1040     //   return d_cg_rwy_local_v[0];
1041     // }
1042     // inline double get_D_cg_east_of_rwy() const {
1043     //   return d_cg_rwy_local_v[1];
1044     // }
1045     // inline double get_D_cg_above_rwy() const { return d_cg_rwy_local_v[2]; }
1046     /* inline void set_CG_Rwy_Local( double north, double east, double above )
1047     {
1048         d_cg_rwy_local_v[0] = north;
1049         d_cg_rwy_local_v[1] = east;
1050         d_cg_rwy_local_v[2] = above;
1051     } */
1052
1053     // inline double * get_D_cg_rwy_rwy_v() { return d_cg_rwy_rwy_v; }
1054     // inline double get_X_cg_rwy() const { return d_cg_rwy_rwy_v[0]; }
1055     // inline double get_Y_cg_rwy() const { return d_cg_rwy_rwy_v[1]; }
1056     // inline double get_H_cg_rwy() const { return d_cg_rwy_rwy_v[2]; }
1057     /* inline void set_CG_Rwy_Rwy( double x, double y, double h )
1058     {
1059         d_cg_rwy_rwy_v[0] = x;
1060         d_cg_rwy_rwy_v[1] = y;
1061         d_cg_rwy_rwy_v[2] = h;
1062     } */
1063
1064     // inline double * get_D_pilot_rwy_local_v() { return d_pilot_rwy_local_v; }
1065     // inline double get_D_pilot_north_of_rwy() const {
1066     //   return d_pilot_rwy_local_v[0];
1067     // }
1068     // inline double get_D_pilot_east_of_rwy() const {
1069     //   return d_pilot_rwy_local_v[1];
1070     // }
1071     // inline double get_D_pilot_above_rwy() const {
1072     //   return d_pilot_rwy_local_v[2];
1073     // }
1074     /* inline void set_Pilot_Rwy_Local( double north, double east, double above )
1075     {
1076         d_pilot_rwy_local_v[0] = north;
1077         d_pilot_rwy_local_v[1] = east;
1078         d_pilot_rwy_local_v[2] = above;
1079     } */
1080
1081     // inline double * get_D_pilot_rwy_rwy_v() { return d_pilot_rwy_rwy_v; }
1082     // inline double get_X_pilot_rwy() const { return d_pilot_rwy_rwy_v[0]; }
1083     // inline double get_Y_pilot_rwy() const { return d_pilot_rwy_rwy_v[1]; }
1084     // inline double get_H_pilot_rwy() const { return d_pilot_rwy_rwy_v[2]; }
1085     /* inline void set_Pilot_Rwy_Rwy( double x, double y, double h )
1086     {
1087         d_pilot_rwy_rwy_v[0] = x;
1088         d_pilot_rwy_rwy_v[1] = y;
1089         d_pilot_rwy_rwy_v[2] = h;
1090     } */
1091
1092     inline double get_Climb_Rate() const { return climb_rate; }
1093
1094     // inline SGTimeStamp get_time_stamp() const { return valid_stamp; }
1095     // inline void stamp_time() { valid_stamp = next_stamp; next_stamp.stamp(); }
1096
1097     // Extrapolate FDM based on time_offset (in usec)
1098     void extrapolate( int time_offset );
1099
1100     // sin/cos lat_geocentric
1101     inline double get_sin_lat_geocentric(void) const {
1102         return sin_lat_geocentric;
1103     }
1104     inline double get_cos_lat_geocentric(void) const {
1105         return cos_lat_geocentric;
1106     }
1107
1108     inline double get_sin_longitude(void) const {
1109         return sin_longitude;
1110     }
1111     inline double get_cos_longitude(void) const {
1112         return cos_longitude;
1113     }
1114
1115     inline double get_sin_latitude(void) const {
1116         return sin_latitude;
1117     }
1118     inline double get_cos_latitude(void) const {
1119         return cos_latitude;
1120     }
1121
1122     // Consumables
1123     inline double get_Tank1Fuel() const { return Tank1Fuel; }
1124     inline double get_Tank2Fuel() const { return Tank2Fuel; }
1125
1126     // engines
1127     inline double get_num_engines() const {
1128         return engines.size();
1129     }
1130
1131     inline FGEngInterface* get_engine( int i ) {
1132         return &engines[i];
1133     }
1134
1135     inline void add_engine( FGEngInterface e ) {
1136         engines.push_back( e );
1137     }
1138 };
1139
1140
1141 typedef list < FGInterface > fdm_state_list;
1142 typedef fdm_state_list::iterator fdm_state_list_iterator;
1143 typedef fdm_state_list::const_iterator const_fdm_state_list_iterator;
1144
1145
1146 extern FGInterface * cur_fdm_state;
1147
1148
1149 // General interface to the flight model routines
1150
1151 // Set the altitude (force)
1152 void fgFDMForceAltitude(const string &model, double alt_meters);
1153
1154 // Set the local ground elevation
1155 void fgFDMSetGroundElevation(const string &model, double alt_meters);
1156
1157 // Toggle data logging on/off
1158 void fgToggleFDMdataLogging(void);
1159
1160
1161 #endif // _FLIGHT_HXX