]> git.mxchange.org Git - flightgear.git/blob - src/FDM/LaRCsim/LaRCsim.cxx
Make sure sign is preserved for turbulence direction.
[flightgear.git] / src / FDM / LaRCsim / LaRCsim.cxx
1 // LaRCsim.cxx -- interface to the LaRCsim flight model
2 //
3 // Written by Curtis Olson, started October 1998.
4 //
5 // Copyright (C) 1998  Curtis L. Olson  - curt@me.umn.edu
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 #include <math.h>
24 #include <string.h>             // strcmp()
25
26 #include <simgear/constants.h>
27 #include <simgear/debug/logstream.hxx>
28 #include <simgear/scene/model/location.hxx>
29 #include <simgear/scene/model/placement.hxx>
30
31 #include <Aircraft/aircraft.hxx>
32 #include <Controls/controls.hxx>
33 #include <FDM/flight.hxx>
34 #include <FDM/UIUCModel/uiuc_aircraft.h>
35 #include <Main/fg_props.hxx>
36 #include <Model/acmodel.hxx>
37
38 #include "ls_cockpit.h"
39 #include "ls_generic.h"
40 #include "ls_interface.h"
41 #include "ls_constants.h"
42
43 #include "IO360.hxx"
44 #include "LaRCsimIC.hxx"
45 #include "LaRCsim.hxx"
46
47
48 FGLaRCsim::FGLaRCsim( double dt ) {
49 //     set_delta_t( dt );
50
51     speed_up = fgGetNode("/sim/speed-up", true);
52     aero = fgGetNode("/sim/aero", true);
53     uiuc_type = fgGetNode("/sim/uiuc-type", true);
54
55     ls_toplevel_init( 0.0, (char *)(aero->getStringValue()) );
56
57     lsic=new LaRCsimIC; //this needs to be brought up after LaRCsim is
58     if ( !strcmp(aero->getStringValue(), "c172") ) {
59         copy_to_LaRCsim(); // initialize all of LaRCsim's vars
60
61         //this should go away someday -- formerly done in fg_init.cxx
62         Mass = 8.547270E+01;
63         I_xx = 1.048000E+03;
64         I_yy = 3.000000E+03;
65         I_zz = 3.530000E+03;
66         I_xz = 0.000000E+00;
67     }
68
69     ls_set_model_dt(dt);
70     
71     // Initialize our little engine that hopefully might
72     eng.init(dt);
73     // dcl - in passing dt to init rather than update I am assuming
74     // that the LaRCsim dt is fixed at one value (yes it is 120hz CLO)
75 }
76
77 FGLaRCsim::~FGLaRCsim(void) {
78     if ( lsic != NULL ) {
79         delete lsic;
80         lsic = NULL;
81     }
82 }
83
84 // Initialize the LaRCsim flight model, dt is the time increment for
85 // each subsequent iteration through the EOM
86 void FGLaRCsim::init() {
87    //do init common to all FDM's
88    common_init();
89 }
90
91
92 // Run an iteration of the EOM (equations of motion)
93 void FGLaRCsim::update( double dt ) {
94
95     if (is_suspended())
96       return;
97
98     int multiloop = _calc_multiloop(dt);
99
100     // if flying c172-larcsim, do the following
101     if ( !strcmp(aero->getStringValue(), "c172") ) {
102         // set control inputs
103         // cout << "V_calibrated_kts = " << V_calibrated_kts << '\n';
104         eng.set_IAS( V_calibrated_kts );
105         eng.set_Throttle_Lever_Pos( globals->get_controls()->get_throttle( 0 )
106                                     * 100.0 );
107         eng.set_Propeller_Lever_Pos( 100 );
108         eng.set_Mixture_Lever_Pos( globals->get_controls()->get_mixture( 0 )
109                                    * 100.0 );
110         eng.set_Magneto_Switch_Pos( globals->get_controls()->get_magnetos(0) );
111         eng.setStarterFlag( globals->get_controls()->get_starter(0) );
112         eng.set_p_amb( Static_pressure );
113         eng.set_T_amb( Static_temperature );
114
115         // update engine model
116         eng.update();
117
118         // Fake control-surface positions
119         fgSetDouble("/surface-positions/flap-pos-norm",
120                     fgGetDouble("/controls/flight/flaps"));
121                                 // FIXME: ignoring trim
122         fgSetDouble("/surface-positions/elevator-pos-norm",
123                     fgGetDouble("/controls/flight/elevator"));
124                                 // FIXME: ignoring trim
125         fgSetDouble("/surface-positions/left-aileron-pos-norm",
126                     fgGetDouble("/controls/flight/aileron"));
127                                 // FIXME: ignoring trim
128         fgSetDouble("/surface-positions/right-aileron-pos-norm",
129                     -1 * fgGetDouble("/controls/flight/aileron"));
130                                 // FIXME: ignoring trim
131         fgSetDouble("/surface-positions/rudder-pos-norm",
132                     fgGetDouble("/controls/flight/rudder"));
133
134         // copy engine state values onto "bus"
135         fgSetDouble("/engines/engine/rpm", eng.get_RPM());
136         fgSetDouble("/engines/engine/mp-osi", eng.get_Manifold_Pressure());
137         fgSetDouble("/engines/engine/max-hp", eng.get_MaxHP());
138         fgSetDouble("/engines/engine/power-pct", eng.get_Percentage_Power());
139         fgSetDouble("/engines/engine/egt-degf", eng.get_EGT());
140         fgSetDouble("/engines/engine/cht-degf", eng.get_CHT());
141         fgSetDouble("/engines/engine/prop-thrust", eng.get_prop_thrust_SI());
142         fgSetDouble("/engines/engine/fuel-flow-gph",
143                     eng.get_fuel_flow_gals_hr());
144         fgSetDouble("/engines/engine/oil-temperature-degf",
145                     eng.get_oil_temp());
146         fgSetDouble("/engines/engine/running", eng.getRunningFlag());
147         fgSetDouble("/engines/engine/cranking", eng.getCrankingFlag());
148
149         static const SGPropertyNode *fuel_freeze
150             = fgGetNode("/sim/freeze/fuel");
151
152         if ( ! fuel_freeze->getBoolValue() ) {
153             //Assume we are using both tanks equally for now
154             fgSetDouble("/consumables/fuel/tank[0]/level-gal_us",
155                         fgGetDouble("/consumables/fuel/tank[0]/level-gal_us")
156                         - (eng.get_fuel_flow_gals_hr() / (2 * 3600))
157                         * dt);
158             fgSetDouble("/consumables/fuel/tank[1]/level-gal_us",
159                         fgGetDouble("/consumables/fuel/tank[1]/level-gal_us")
160                         - (eng.get_fuel_flow_gals_hr() / (2 * 3600))
161                         * dt);
162         }
163
164         F_X_engine = eng.get_prop_thrust_lbs();
165         // cout << "F_X_engine = " << F_X_engine << '\n';
166         // end c172 if block
167
168         Flap_handle = 30.0 * globals->get_controls()->get_flaps();
169     }
170     // done with c172-larcsim if-block
171
172     double save_alt = 0.0;
173
174     // lets try to avoid really screwing up the LaRCsim model
175     if ( get_Altitude() < -9000.0 ) {
176         save_alt = get_Altitude();
177         set_Altitude( 0.0 );
178     }
179
180     // copy control positions into the LaRCsim structure
181     Lat_control = globals->get_controls()->get_aileron() / speed_up->getIntValue();
182     Long_control = globals->get_controls()->get_elevator();
183     Long_trim = globals->get_controls()->get_elevator_trim();
184     Rudder_pedal = globals->get_controls()->get_rudder() / speed_up->getIntValue();
185
186     if ( !strcmp(aero->getStringValue(), "c172") ) {
187         Use_External_Engine = 1;
188     } else {
189         Use_External_Engine = 0;
190     }
191
192     Throttle_pct = globals->get_controls()->get_throttle( 0 ) * 1.0;
193
194     Brake_pct[0] = globals->get_controls()->get_brake( 1 );
195     Brake_pct[1] = globals->get_controls()->get_brake( 0 );
196
197     // Inform LaRCsim of the local terrain altitude
198     // Runway_altitude = get_Runway_altitude();
199     Runway_altitude = getACModel()->get3DModel()->getSGLocation()->get_cur_elev_m() * SG_METER_TO_FEET;
200     // Weather
201     /* V_north_airmass = get_V_north_airmass();
202        V_east_airmass =  get_V_east_airmass();
203        V_down_airmass =  get_V_down_airmass(); */
204
205
206     // old -- FGInterface_2_LaRCsim() not needed except for Init()
207     // translate FG to LaRCsim structure
208     // FGInterface_2_LaRCsim(f);
209     // printf("FG_Altitude = %.2f\n", FG_Altitude * 0.3048);
210     // printf("Altitude = %.2f\n", Altitude * 0.3048);
211     // printf("Radius to Vehicle = %.2f\n", Radius_to_vehicle * 0.3048);
212
213     // for engine functions (sounds and instruments)
214     // drive the rpm gauge
215     fgSetDouble("/engines/engine/rpm", (globals->get_controls()->get_throttle( 0 ) * 100.0 * 25 ));
216     // manifold air pressure, which drives the sound (see *sound.xml file)
217     fgSetDouble("/engines/engine/mp-osi", (globals->get_controls()->get_throttle( 0 ) * 100.0 ));
218     // make the engine cranking and running sounds when fgfs starts up
219     fgSetDouble("/engines/engine/cranking", 1);
220     fgSetDouble("/engines/engine/running", 1);
221
222     // if flying uiuc, set some properties and over-ride some previous ones
223     if ( !strcmp(aero->getStringValue(), "uiuc")) {
224
225       // surface positions and other general properties
226       fgSetDouble("/surface-positions/flight/rudder-pos-norm",             fgGetDouble("/controls/flight/rudder"));
227       fgSetDouble("/surface-positions/flight/elevator-pos-norm",           fgGetDouble("/controls/flight/elevator")); // FIXME: ignoring trim
228       fgSetDouble("/surface-positions/flight/right-aileron-pos-norm", -1 * fgGetDouble("/controls/flight/aileron")); // FIXME: ignoring trim
229       fgSetDouble("/surface-positions/flight/left-aileron-pos-norm",       fgGetDouble("/controls/flight/aileron")); // FIXME: ignoring trim
230
231       // used by Instruments/accel.xml
232       fgSetDouble("/accelerations/pilot-g",   -N_Z_cg);
233
234       Flap_handle = flap_max * globals->get_controls()->get_flaps();
235
236       // flaps with transition occuring in uiuc_aerodeflections.cpp
237       if (use_flaps) {
238       fgSetDouble("/surface-positions/flight/flap-pos-norm",               flap_pos_pct);
239       }
240
241       // spoilers with transition occurring in uiuc_aerodeflections.cpp
242       if(use_spoilers) {
243         Spoiler_handle = spoiler_max * fgGetDouble("/controls/flight/spoilers");
244       }
245       // gear with transition occurring here in LaRCsim.cxx
246       if (use_gear) {
247         if(fgGetBool("/controls/gear/gear-down")) {
248           Gear_handle = 1.0;
249         }
250         else {
251           Gear_handle = 0.;
252         }
253         // commanded gear is 0 or 1
254         gear_cmd_norm = Gear_handle;
255         // amount gear moves per time step [relative to 1]
256         gear_increment_per_timestep = gear_rate * dt; 
257         // determine gear position with respect to gear command
258         if (gear_pos_norm < gear_cmd_norm) {
259           gear_pos_norm += gear_increment_per_timestep;
260           if (gear_pos_norm > gear_cmd_norm) 
261             gear_pos_norm = gear_cmd_norm;
262         } else if (gear_pos_norm > gear_cmd_norm) {
263           gear_pos_norm -= gear_increment_per_timestep;
264           if (gear_pos_norm < gear_cmd_norm)
265             gear_pos_norm = gear_cmd_norm;
266         } 
267         // set the gear position
268         fgSetDouble("/gear/gear[0]/position-norm", gear_pos_norm);
269         fgSetDouble("/gear/gear[1]/position-norm", gear_pos_norm);
270         fgSetDouble("/gear/gear[2]/position-norm", gear_pos_norm);
271       }
272
273
274       // engine functions (sounds and instruments)
275       // drive the rpm gauge
276       fgSetDouble("/engines/engine/rpm", (globals->get_controls()->get_throttle( 0 ) * 100.0 * 25 ));
277       // manifold air pressure
278       fgSetDouble("/engines/engine/mp-osi", (globals->get_controls()->get_throttle( 0 ) * 100.0 ));
279       // make the engine cranking and running sounds when fgfs starts up
280       fgSetDouble("/engines/engine/cranking", 1);
281       fgSetDouble("/engines/engine/running", 1);
282       if ( !strcmp(uiuc_type->getStringValue(), "uiuc-prop")) {
283         // uiuc prop driven airplane, e.g. Wright Flyer
284       }
285       else if ( !strcmp(uiuc_type->getStringValue(), "uiuc-jet")) {
286         // uiuc jet aircraft, e.g. a4d
287         // used for setting the sound
288         fgSetDouble("/engines/engine/n1", (75 + (globals->get_controls()->get_throttle( 0 ) * 100.0 )/400));
289         fgSetDouble("/engines/engine/prop-thrust", (4000 + F_X_engine/2));
290         // used for setting the instruments
291         fgSetDouble("/engines/engine[0]/n1", (50 + (globals->get_controls()->get_throttle( 0 ) * 50)));
292       }
293       else if ( !strcmp(uiuc_type->getStringValue(), "uiuc-sailplane")) {
294         // uiuc sailplane, e.g. asw20
295         fgSetDouble("/engines/engine/cranking", 0);
296       }
297       else if ( !strcmp(uiuc_type->getStringValue(), "uiuc-hangglider")) {
298         // uiuc hang glider, e.g. airwave
299         fgSetDouble("/engines/engine/cranking", 0);
300       }
301       else if ( !strcmp(uiuc_type->getStringValue(), "uiuc-ornithopter")) {
302         // flapping wings
303         fgSetDouble("/canopy/position-norm", 0);
304         fgSetDouble("/wing-phase/position-norm", sin(flapper_phi - 3 * LS_PI / 2));
305         fgSetDouble("/wing-phase/position-deg", flapper_phi*RAD_TO_DEG);
306         fgSetDouble("/wing-phase/position-one", 1);
307         fgSetDouble("/thorax/volume", 0);
308         fgSetDouble("/thorax/rpm",    0);
309         //      fgSetDouble("/thorax/volume", ((1+sin(2*(flapper_phi+LS_PI)))/2));
310         //      fgSetDouble("/thorax/rpm",    ((1+sin(2*(flapper_phi+LS_PI)))/2));
311       }
312     }
313
314
315     // add Gamma_horiz_deg to properties, mss 021213
316     if (use_gamma_horiz_on_speed) {
317       if (V_rel_wind > gamma_horiz_on_speed) {
318         fgSetDouble("/orientation/gamma-horiz-deg", (Gamma_horiz_rad * RAD_TO_DEG));
319       }
320       else {
321         fgSetDouble("/orientation/gamma-horiz-deg",  fgGetDouble("/orientation/heading-deg"));
322       }
323     }
324     else {
325       fgSetDouble("/orientation/gamma-horiz-deg",  fgGetDouble("/orientation/heading-deg"));
326     }
327     ls_update(multiloop);
328
329     // printf("%d FG_Altitude = %.2f\n", i, FG_Altitude * 0.3048);
330     // printf("%d Altitude = %.2f\n", i, Altitude * 0.3048);
331
332     // translate LaRCsim back to FG structure so that the
333     // autopilot (and the rest of the sim can use the updated
334     // values
335     copy_from_LaRCsim();
336
337     // but lets restore our original bogus altitude when we are done
338     if ( save_alt < -9000.0 ) {
339         set_Altitude( save_alt );
340     }
341 }
342
343
344 // Convert from the FGInterface struct to the LaRCsim generic_ struct
345 bool FGLaRCsim::copy_to_LaRCsim () {
346     Mass =      get_Mass();
347     I_xx =      get_I_xx();
348     I_yy =      get_I_yy();
349     I_zz =      get_I_zz();
350     I_xz =      get_I_xz();
351     // Dx_pilot =  get_Dx_pilot();
352     // Dy_pilot =  get_Dy_pilot();
353     // Dz_pilot =  get_Dz_pilot();
354     Dx_cg =     get_Dx_cg();
355     Dy_cg =     get_Dy_cg();
356     Dz_cg =     get_Dz_cg();
357     // F_X =       get_F_X();
358     // F_Y =       get_F_Y();
359     // F_Z =       get_F_Z();
360     // F_north =   get_F_north();
361     // F_east =    get_F_east();
362     // F_down =    get_F_down();
363     // F_X_aero =  get_F_X_aero();
364     // F_Y_aero =  get_F_Y_aero();
365     // F_Z_aero =  get_F_Z_aero();
366     // F_X_engine =        get_F_X_engine();
367     // F_Y_engine =        get_F_Y_engine();
368     // F_Z_engine =        get_F_Z_engine();
369     // F_X_gear =  get_F_X_gear();
370     // F_Y_gear =  get_F_Y_gear();
371     // F_Z_gear =  get_F_Z_gear();
372     // M_l_rp =    get_M_l_rp();
373     // M_m_rp =    get_M_m_rp();
374     // M_n_rp =    get_M_n_rp();
375     // M_l_cg =    get_M_l_cg();
376     // M_m_cg =    get_M_m_cg();
377     // M_n_cg =    get_M_n_cg();
378     // M_l_aero =  get_M_l_aero();
379     // M_m_aero =  get_M_m_aero();
380     // M_n_aero =  get_M_n_aero();
381     // M_l_engine =        get_M_l_engine();
382     // M_m_engine =        get_M_m_engine();
383     // M_n_engine =        get_M_n_engine();
384     // M_l_gear =  get_M_l_gear();
385     // M_m_gear =  get_M_m_gear();
386     // M_n_gear =  get_M_n_gear();
387     // V_dot_north =       get_V_dot_north();
388     // V_dot_east =        get_V_dot_east();
389     // V_dot_down =        get_V_dot_down();
390     // U_dot_body =        get_U_dot_body();
391     // V_dot_body =        get_V_dot_body();
392     // W_dot_body =        get_W_dot_body();
393     // A_X_cg =    get_A_X_cg();
394     // A_Y_cg =    get_A_Y_cg();
395     // A_Z_cg =    get_A_Z_cg();
396     // A_X_pilot = get_A_X_pilot();
397     // A_Y_pilot = get_A_Y_pilot();
398     // A_Z_pilot = get_A_Z_pilot();
399     // N_X_cg =    get_N_X_cg();
400     // N_Y_cg =    get_N_Y_cg();
401     // N_Z_cg =    get_N_Z_cg();
402     // N_X_pilot = get_N_X_pilot();
403     // N_Y_pilot = get_N_Y_pilot();
404     // N_Z_pilot = get_N_Z_pilot();
405     // P_dot_body =        get_P_dot_body();
406     // Q_dot_body =        get_Q_dot_body();
407     // R_dot_body =        get_R_dot_body();
408     // V_north =   get_V_north();
409     // V_east =    get_V_east();
410     // V_down =    get_V_down();
411     // V_north_rel_ground =        get_V_north_rel_ground();
412     // V_east_rel_ground = get_V_east_rel_ground();
413     // V_down_rel_ground = get_V_down_rel_ground();
414     // V_north_airmass =   get_V_north_airmass();
415     // V_east_airmass =    get_V_east_airmass();
416     // V_down_airmass =    get_V_down_airmass();
417     // V_north_rel_airmass =       get_V_north_rel_airmass();
418     // V_east_rel_airmass =        get_V_east_rel_airmass();
419     // V_down_rel_airmass =        get_V_down_rel_airmass();
420     // U_gust =    get_U_gust();
421     // V_gust =    get_V_gust();
422     // W_gust =    get_W_gust();
423     // U_body =    get_U_body();
424     // V_body =    get_V_body();
425     // W_body =    get_W_body();
426     // V_rel_wind =        get_V_rel_wind();
427     // V_true_kts =        get_V_true_kts();
428     // V_rel_ground =      get_V_rel_ground();
429     // V_inertial =        get_V_inertial();
430     // V_ground_speed =    get_V_ground_speed();
431     // V_equiv =   get_V_equiv();
432     // V_equiv_kts =       get_V_equiv_kts();
433     // V_calibrated =      get_V_calibrated();
434     // V_calibrated_kts =  get_V_calibrated_kts();
435     // P_body =    get_P_body();
436     // Q_body =    get_Q_body();
437     // R_body =    get_R_body();
438     // P_local =   get_P_local();
439     // Q_local =   get_Q_local();
440     // R_local =   get_R_local();
441     // P_total =   get_P_total();
442     // Q_total =   get_Q_total();
443     // R_total =   get_R_total();
444     // Phi_dot =   get_Phi_dot();
445     // Theta_dot = get_Theta_dot();
446     // Psi_dot =   get_Psi_dot();
447     // Latitude_dot =      get_Latitude_dot();
448     // Longitude_dot =     get_Longitude_dot();
449     // Radius_dot =        get_Radius_dot();
450     // Lat_geocentric =    get_Lat_geocentric();
451     // Lon_geocentric =    get_Lon_geocentric();
452     // Radius_to_vehicle = get_Radius_to_vehicle();
453     // Latitude =  get_Latitude();
454     // Longitude = get_Longitude();
455     // Altitude =  get_Altitude();
456     // Phi =       get_Phi();
457     // Theta =     get_Theta();
458     // Psi =       get_Psi();
459     // T_local_to_body_11 =        get_T_local_to_body_11();
460     // T_local_to_body_12 =        get_T_local_to_body_12();
461     // T_local_to_body_13 =        get_T_local_to_body_13();
462     // T_local_to_body_21 =        get_T_local_to_body_21();
463     // T_local_to_body_22 =        get_T_local_to_body_22();
464     // T_local_to_body_23 =        get_T_local_to_body_23();
465     // T_local_to_body_31 =        get_T_local_to_body_31();
466     // T_local_to_body_32 =        get_T_local_to_body_32();
467     // T_local_to_body_33 =        get_T_local_to_body_33();
468     // Gravity =   get_Gravity();
469     // Centrifugal_relief =        get_Centrifugal_relief();
470     // Alpha =     get_Alpha();
471     // Beta =      get_Beta();
472     // Alpha_dot = get_Alpha_dot();
473     // Beta_dot =  get_Beta_dot();
474     // Cos_alpha = get_Cos_alpha();
475     // Sin_alpha = get_Sin_alpha();
476     // Cos_beta =  get_Cos_beta();
477     // Sin_beta =  get_Sin_beta();
478     // Cos_phi =   get_Cos_phi();
479     // Sin_phi =   get_Sin_phi();
480     // Cos_theta = get_Cos_theta();
481     // Sin_theta = get_Sin_theta();
482     // Cos_psi =   get_Cos_psi();
483     // Sin_psi =   get_Sin_psi();
484     // Gamma_vert_rad =    get_Gamma_vert_rad();
485     // Gamma_horiz_rad =   get_Gamma_horiz_rad();
486     // Sigma =     get_Sigma();
487     // Density =   get_Density();
488     // V_sound =   get_V_sound();
489     // Mach_number =       get_Mach_number();
490     // Static_pressure =   get_Static_pressure();
491     // Total_pressure =    get_Total_pressure();
492     // Impact_pressure =   get_Impact_pressure();
493     // Dynamic_pressure =  get_Dynamic_pressure();
494     // Static_temperature =        get_Static_temperature();
495     // Total_temperature = get_Total_temperature();
496     // Sea_level_radius =  get_Sea_level_radius();
497     // Earth_position_angle =      get_Earth_position_angle();
498     // Runway_altitude =   get_Runway_altitude();
499     // Runway_latitude =   get_Runway_latitude();
500     // Runway_longitude =  get_Runway_longitude();
501     // Runway_heading =    get_Runway_heading();
502     // Radius_to_rwy =     get_Radius_to_rwy();
503     // D_cg_north_of_rwy = get_D_cg_north_of_rwy();
504     // D_cg_east_of_rwy =  get_D_cg_east_of_rwy();
505     // D_cg_above_rwy =    get_D_cg_above_rwy();
506     // X_cg_rwy =  get_X_cg_rwy();
507     // Y_cg_rwy =  get_Y_cg_rwy();
508     // H_cg_rwy =  get_H_cg_rwy();
509     // D_pilot_north_of_rwy =      get_D_pilot_north_of_rwy();
510     // D_pilot_east_of_rwy =       get_D_pilot_east_of_rwy();
511     // D_pilot_above_rwy = get_D_pilot_above_rwy();
512     // X_pilot_rwy =       get_X_pilot_rwy();
513     // Y_pilot_rwy =       get_Y_pilot_rwy();
514     // H_pilot_rwy =       get_H_pilot_rwy();
515
516     return true;
517 }
518
519
520 // Convert from the LaRCsim generic_ struct to the FGInterface struct
521 bool FGLaRCsim::copy_from_LaRCsim() {
522
523     // Mass properties and geometry values
524     _set_Inertias( Mass, I_xx, I_yy, I_zz, I_xz );
525     // set_Pilot_Location( Dx_pilot, Dy_pilot, Dz_pilot );
526     _set_CG_Position( Dx_cg, Dy_cg, Dz_cg );
527
528     // Forces
529     // set_Forces_Body_Total( F_X, F_Y, F_Z );
530     // set_Forces_Local_Total( F_north, F_east, F_down );
531     // set_Forces_Aero( F_X_aero, F_Y_aero, F_Z_aero );
532     // set_Forces_Engine( F_X_engine, F_Y_engine, F_Z_engine );
533     // set_Forces_Gear( F_X_gear, F_Y_gear, F_Z_gear );
534
535     // Moments
536     // set_Moments_Total_RP( M_l_rp, M_m_rp, M_n_rp );
537     // set_Moments_Total_CG( M_l_cg, M_m_cg, M_n_cg );
538     // set_Moments_Aero( M_l_aero, M_m_aero, M_n_aero );
539     // set_Moments_Engine( M_l_engine, M_m_engine, M_n_engine );
540     // set_Moments_Gear( M_l_gear, M_m_gear, M_n_gear );
541
542     // Accelerations
543     _set_Accels_Local( V_dot_north, V_dot_east, V_dot_down );
544     _set_Accels_Body( U_dot_body, V_dot_body, W_dot_body );
545     _set_Accels_CG_Body( A_X_cg, A_Y_cg, A_Z_cg );
546     _set_Accels_Pilot_Body( A_X_pilot, A_Y_pilot, A_Z_pilot );
547     _set_Accels_CG_Body_N( N_X_cg, N_Y_cg, -N_Z_cg );
548     // set_Accels_Pilot_Body_N( N_X_pilot, N_Y_pilot, N_Z_pilot );
549     // set_Accels_Omega( P_dot_body, Q_dot_body, R_dot_body );
550
551     // Velocities
552     _set_Velocities_Local( V_north, V_east, V_down );
553     // set_Velocities_Ground( V_north_rel_ground, V_east_rel_ground, 
554     //               V_down_rel_ground );
555     _set_Velocities_Local_Airmass( V_north_airmass, V_east_airmass,
556                                    V_down_airmass );
557     // set_Velocities_Local_Rel_Airmass( V_north_rel_airmass, 
558     //                          V_east_rel_airmass, V_down_rel_airmass );
559     // set_Velocities_Gust( U_gust, V_gust, W_gust );
560     _set_Velocities_Wind_Body( U_body, V_body, W_body );
561
562     _set_V_rel_wind( V_rel_wind );
563     // set_V_true_kts( V_true_kts );
564     // set_V_rel_ground( V_rel_ground );
565     // set_V_inertial( V_inertial );
566     _set_V_ground_speed( V_ground_speed );
567     // set_V_equiv( V_equiv );
568     _set_V_equiv_kts( V_equiv_kts );
569     // set_V_calibrated( V_calibrated );
570     _set_V_calibrated_kts( V_calibrated_kts );
571
572     _set_Omega_Body( P_body, Q_body, R_body );
573     // set_Omega_Local( P_local, Q_local, R_local );
574     // set_Omega_Total( P_total, Q_total, R_total );
575
576     _set_Euler_Rates( Phi_dot, Theta_dot, Psi_dot );
577     _set_Geocentric_Rates( Latitude_dot, Longitude_dot, Radius_dot );
578
579     _set_Mach_number( Mach_number );
580
581     SG_LOG( SG_FLIGHT, SG_DEBUG, "lon = " << Longitude 
582             << " lat_geoc = " << Lat_geocentric << " lat_geod = " << Latitude 
583             << " alt = " << Altitude << " sl_radius = " << Sea_level_radius 
584             << " radius_to_vehicle = " << Radius_to_vehicle );
585
586     double tmp_lon_geoc = Lon_geocentric;
587     while ( tmp_lon_geoc < -SGD_PI ) { tmp_lon_geoc += SGD_2PI; }
588     while ( tmp_lon_geoc > SGD_PI ) { tmp_lon_geoc -= SGD_2PI; }
589
590     double tmp_lon = Longitude;
591     while ( tmp_lon < -SGD_PI ) { tmp_lon += SGD_2PI; }
592     while ( tmp_lon > SGD_PI ) { tmp_lon -= SGD_2PI; }
593
594     // Positions
595     _set_Geocentric_Position( Lat_geocentric, tmp_lon_geoc, 
596                               Radius_to_vehicle );
597     _set_Geodetic_Position( Latitude, tmp_lon, Altitude );
598     _set_Euler_Angles( Phi, Theta, Psi );
599
600     _set_Altitude_AGL( Altitude - Runway_altitude );
601
602     // Miscellaneous quantities
603     _set_T_Local_to_Body(T_local_to_body_m);
604     // set_Gravity( Gravity );
605     // set_Centrifugal_relief( Centrifugal_relief );
606
607     _set_Alpha( Std_Alpha );
608     _set_Beta( Std_Beta );
609     // set_Alpha_dot( Std_Alpha_dot );
610     // set_Beta_dot( Std_Beta_dot );
611
612     // set_Cos_alpha( Cos_alpha );
613     // set_Sin_alpha( Sin_alpha );
614     // set_Cos_beta( Cos_beta );
615     // set_Sin_beta( Sin_beta );
616
617     _set_Cos_phi( Cos_phi );
618     // set_Sin_phi( Sin_phi );
619     _set_Cos_theta( Cos_theta );
620     // set_Sin_theta( Sin_theta );
621     // set_Cos_psi( Cos_psi );
622     // set_Sin_psi( Sin_psi );
623
624     _set_Gamma_vert_rad( Gamma_vert_rad );
625     // set_Gamma_horiz_rad( Gamma_horiz_rad );
626
627     // set_Sigma( Sigma );
628     _set_Density( Density );
629     // set_V_sound( V_sound );
630     // set_Mach_number( Mach_number );
631
632     _set_Static_pressure( Static_pressure );
633     // set_Total_pressure( Total_pressure );
634     // set_Impact_pressure( Impact_pressure );
635     // set_Dynamic_pressure( Dynamic_pressure );
636
637     _set_Static_temperature( Static_temperature );
638     // set_Total_temperature( Total_temperature );
639
640     _set_Sea_level_radius( Sea_level_radius );
641     _set_Earth_position_angle( Earth_position_angle );
642
643     _set_Runway_altitude( Runway_altitude );
644     // set_Runway_latitude( Runway_latitude );
645     // set_Runway_longitude( Runway_longitude );
646     // set_Runway_heading( Runway_heading );
647     // set_Radius_to_rwy( Radius_to_rwy );
648
649     // set_CG_Rwy_Local( D_cg_north_of_rwy, D_cg_east_of_rwy, D_cg_above_rwy);
650     // set_CG_Rwy_Rwy( X_cg_rwy, Y_cg_rwy, H_cg_rwy );
651     // set_Pilot_Rwy_Local( D_pilot_north_of_rwy, D_pilot_east_of_rwy, 
652     //                        D_pilot_above_rwy );
653     // set_Pilot_Rwy_Rwy( X_pilot_rwy, Y_pilot_rwy, H_pilot_rwy );
654
655     _set_sin_lat_geocentric(Lat_geocentric);
656     _set_cos_lat_geocentric(Lat_geocentric);
657     _set_sin_cos_longitude(Longitude);
658     _set_sin_cos_latitude(Latitude);
659
660     // printf("sin_lat_geo %f  cos_lat_geo %f\n", sin_Lat_geoc, cos_Lat_geoc);
661     // printf("sin_lat     %f  cos_lat     %f\n", 
662     //        get_sin_latitude(), get_cos_latitude());
663     // printf("sin_lon     %f  cos_lon     %f\n",
664     //        get_sin_longitude(), get_cos_longitude());
665
666     _set_Climb_Rate( -1 * V_down );
667     // cout << "climb rate = " << -V_down * 60 << endl;
668
669     if ( !strcmp(aero->getStringValue(), "uiuc") ) {
670         if (pilot_elev_no) {
671             globals->get_controls()->set_elevator(Long_control);
672             globals->get_controls()->set_elevator_trim(Long_trim);
673             //      controls.set_elevator(Long_control);
674             //      controls.set_elevator_trim(Long_trim);
675         }
676         if (pilot_ail_no) {
677             globals->get_controls()->set_aileron(Lat_control);
678             //    controls.set_aileron(Lat_control);
679         }
680         if (pilot_rud_no) {
681             globals->get_controls()->set_rudder(Rudder_pedal);
682             //    controls.set_rudder(Rudder_pedal);
683         }
684         if (pilot_throttle_no) {
685             globals->get_controls()->set_throttle(0,Throttle_pct);
686             //    controls.set_throttle(0,Throttle_pct);
687         }
688     }
689
690     return true;
691 }
692
693
694 void FGLaRCsim::set_ls(void) {
695     Phi=lsic->GetRollAngleRadIC();
696     Theta=lsic->GetPitchAngleRadIC();
697     Psi=lsic->GetHeadingRadIC();
698     V_north=lsic->GetVnorthFpsIC();
699     V_east=lsic->GetVeastFpsIC();
700     V_down=lsic->GetVdownFpsIC();
701     Altitude=lsic->GetAltitudeFtIC();
702     Latitude=lsic->GetLatitudeGDRadIC();
703     Longitude=lsic->GetLongitudeRadIC();
704     Runway_altitude=lsic->GetRunwayAltitudeFtIC();
705     V_north_airmass = lsic->GetVnorthAirmassFpsIC() * -1;
706     V_east_airmass = lsic->GetVeastAirmassFpsIC() * -1;
707     V_down_airmass = lsic->GetVdownAirmassFpsIC() * -1;
708     ls_loop(0.0,-1);
709     copy_from_LaRCsim();
710 }
711
712 void FGLaRCsim::snap_shot(void) {
713     lsic->SetLatitudeGDRadIC( get_Latitude() );
714     lsic->SetLongitudeRadIC( get_Longitude() );
715     lsic->SetAltitudeFtIC( get_Altitude() );
716     lsic->SetRunwayAltitudeFtIC( get_Runway_altitude() );
717     lsic->SetVtrueFpsIC( get_V_rel_wind() );
718     lsic->SetPitchAngleRadIC( get_Theta() );
719     lsic->SetRollAngleRadIC( get_Phi() );
720     lsic->SetHeadingRadIC( get_Psi() );
721     lsic->SetClimbRateFpsIC( get_Climb_Rate() );
722     lsic->SetVNEDAirmassFpsIC( get_V_north_airmass(),
723                                get_V_east_airmass(),
724                                get_V_down_airmass() );
725 }                               
726
727 //Positions
728 void FGLaRCsim::set_Latitude(double lat) {
729     SG_LOG( SG_FLIGHT, SG_INFO, "FGLaRCsim::set_Latitude: " << lat  );
730     snap_shot();
731     lsic->SetLatitudeGDRadIC(lat);
732     set_ls();
733     copy_from_LaRCsim(); //update the bus
734 }
735
736 void FGLaRCsim::set_Longitude(double lon) {
737     SG_LOG( SG_FLIGHT, SG_INFO, "FGLaRCsim::set_Longitude: " << lon  );
738     snap_shot();
739     lsic->SetLongitudeRadIC(lon);
740     set_ls();
741     copy_from_LaRCsim(); //update the bus
742 }
743
744 void FGLaRCsim::set_Altitude(double alt) {
745     SG_LOG( SG_FLIGHT, SG_INFO, "FGLaRCsim::set_Altitude: " << alt  );
746     snap_shot();
747     lsic->SetAltitudeFtIC(alt);
748     set_ls();
749     copy_from_LaRCsim(); //update the bus
750 }
751
752 void FGLaRCsim::set_V_calibrated_kts(double vc) {
753     SG_LOG( SG_FLIGHT, SG_INFO, 
754             "FGLaRCsim::set_V_calibrated_kts: " << vc  );
755     snap_shot();
756     lsic->SetVcalibratedKtsIC(vc);
757     set_ls();
758     copy_from_LaRCsim(); //update the bus
759 }
760
761 void FGLaRCsim::set_Mach_number(double mach) {
762     SG_LOG( SG_FLIGHT, SG_INFO, "FGLaRCsim::set_Mach_number: " << mach  );
763     snap_shot();
764     lsic->SetMachIC(mach);
765     set_ls();
766     copy_from_LaRCsim(); //update the bus
767 }
768
769 void FGLaRCsim::set_Velocities_Local( double north, double east, double down ){
770     SG_LOG( SG_FLIGHT, SG_INFO, "FGLaRCsim::set_Velocities_local: " 
771             << north << "  " << east << "  " << down   );
772     snap_shot();
773     lsic->SetVNEDFpsIC(north, east, down);
774     set_ls();
775     copy_from_LaRCsim(); //update the bus
776 }
777
778 void FGLaRCsim::set_Velocities_Wind_Body( double u, double v, double w){
779     SG_LOG( SG_FLIGHT, SG_INFO, "FGLaRCsim::set_Velocities_Wind_Body: " 
780             << u << "  " << v << "  " << w   );
781     snap_shot();
782     lsic->SetUVWFpsIC(u,v,w);
783     set_ls();
784     copy_from_LaRCsim(); //update the bus
785 }
786
787 //Euler angles 
788 void FGLaRCsim::set_Euler_Angles( double phi, double theta, double psi ) {
789     SG_LOG( SG_FLIGHT, SG_INFO, "FGLaRCsim::set_Euler_angles: " 
790             << phi << "  " << theta << "  " << psi   );
791
792     snap_shot();
793     lsic->SetPitchAngleRadIC(theta);
794     lsic->SetRollAngleRadIC(phi);
795     lsic->SetHeadingRadIC(psi);
796     set_ls();
797     copy_from_LaRCsim(); //update the bus
798 }
799
800 //Flight Path
801 void FGLaRCsim::set_Climb_Rate( double roc) {
802     SG_LOG( SG_FLIGHT, SG_INFO, "FGLaRCsim::set_Climb_rate: " << roc  );
803     snap_shot();
804     lsic->SetClimbRateFpsIC(roc);
805     set_ls();
806     copy_from_LaRCsim(); //update the bus
807 }
808
809 void FGLaRCsim::set_Gamma_vert_rad( double gamma) {
810     SG_LOG( SG_FLIGHT, SG_INFO, "FGLaRCsim::set_Gamma_vert_rad: " << gamma  );
811     snap_shot();
812     lsic->SetFlightPathAngleRadIC(gamma);
813     set_ls();
814     copy_from_LaRCsim(); //update the bus
815 }
816
817 void FGLaRCsim::set_AltitudeAGL(double altagl) {
818     SG_LOG( SG_FLIGHT, SG_INFO, "FGLaRCsim::set_AltitudeAGL: " << altagl  );
819     snap_shot();
820     lsic->SetAltitudeAGLFtIC(altagl);
821     set_ls();
822     copy_from_LaRCsim();
823 }
824
825 /*  getting a namespace conflict...
826 void FGLaRCsim::set_Velocities_Local_Airmass (double wnorth, 
827                                               double weast, 
828                                               double wdown ) {
829     SG_LOG( SG_FLIGHT, SG_INFO, "FGLaRCsim::set_Velocities_Local_Airmass: " 
830             << wnorth << "  " << weast << "  " << wdown );
831     snap_shot();
832     lsic->SetVNEDAirmassFpsIC( wnorth, weast, wdown );
833     set_ls();
834     copy_from_LaRCsim();
835 }
836 */
837
838 void FGLaRCsim::set_Static_pressure(double p) { 
839     SG_LOG( SG_FLIGHT, SG_INFO, 
840             "FGLaRCsim::set_Static_pressure: " << p  );
841     SG_LOG( SG_FLIGHT, SG_INFO, 
842             "LaRCsim does not support externally supplied atmospheric data" );
843 }
844
845 void FGLaRCsim::set_Static_temperature(double T) { 
846     SG_LOG( SG_FLIGHT, SG_INFO, 
847             "FGLaRCsim::set_Static_temperature: " << T  );
848     SG_LOG( SG_FLIGHT, SG_INFO, 
849             "LaRCsim does not support externally supplied atmospheric data" );
850
851 }
852
853 void FGLaRCsim::set_Density(double rho) {
854     SG_LOG( SG_FLIGHT, SG_INFO, "FGLaRCsim::set_Density: " << rho  );
855     SG_LOG( SG_FLIGHT, SG_INFO, 
856             "LaRCsim does not support externally supplied atmospheric data" );
857
858 }
859