]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/JSBSim.cxx
11e00bfb552b416677372f5c616ffbf910cc1836
[flightgear.git] / src / FDM / JSBSim / JSBSim.cxx
1 // JSBsim.cxx -- interface to the JSBsim flight model
2 //
3 // Written by Curtis Olson, started February 1999.
4 //
5 // Copyright (C) 1999  Curtis L. Olson  - curt@flightgear.org
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 <simgear/compiler.h>
25
26 #ifdef SG_MATH_EXCEPTION_CLASH
27 #  include <math.h>
28 #endif
29
30 #include STL_STRING
31
32 #include <simgear/constants.h>
33 #include <simgear/debug/logstream.hxx>
34 #include <simgear/math/sg_geodesy.hxx>
35 #include <simgear/misc/sg_path.hxx>
36
37 #include <Scenery/scenery.hxx>
38
39 #include <Aircraft/aircraft.hxx>
40 #include <Controls/controls.hxx>
41 #include <Main/globals.hxx>
42 #include <Main/fg_props.hxx>
43
44 #include <FDM/JSBSim/FGFDMExec.h>
45 #include <FDM/JSBSim/FGAircraft.h>
46 #include <FDM/JSBSim/FGFCS.h>
47 #include <FDM/JSBSim/FGPosition.h>
48 #include <FDM/JSBSim/FGRotation.h>
49 #include <FDM/JSBSim/FGState.h>
50 #include <FDM/JSBSim/FGTranslation.h>
51 #include <FDM/JSBSim/FGAuxiliary.h>
52 #include <FDM/JSBSim/FGInitialCondition.h>
53 #include <FDM/JSBSim/FGTrim.h>
54 #include <FDM/JSBSim/FGAtmosphere.h>
55 #include <FDM/JSBSim/FGMassBalance.h>
56 #include <FDM/JSBSim/FGAerodynamics.h>
57 #include <FDM/JSBSim/FGLGear.h>
58 #include "JSBSim.hxx"
59
60 /******************************************************************************/
61
62 FGJSBsim::FGJSBsim( double dt ) 
63   : FGInterface(dt)
64 {
65     bool result;
66    
67     fdmex = new FGFDMExec;
68     
69     State           = fdmex->GetState();
70     Atmosphere      = fdmex->GetAtmosphere();
71     FCS             = fdmex->GetFCS();
72     MassBalance     = fdmex->GetMassBalance();
73     Propulsion      = fdmex->GetPropulsion();
74     Aircraft        = fdmex->GetAircraft();
75     Translation     = fdmex->GetTranslation();
76     Rotation        = fdmex->GetRotation();
77     Position        = fdmex->GetPosition();
78     Auxiliary       = fdmex->GetAuxiliary();
79     Aerodynamics    = fdmex->GetAerodynamics();
80     GroundReactions = fdmex->GetGroundReactions();  
81   
82     
83     Atmosphere->UseInternal();
84     
85     fgic=new FGInitialCondition(fdmex);
86     needTrim=true;
87   
88     SGPath aircraft_path( globals->get_fg_root() );
89     aircraft_path.append( "Aircraft" );
90
91     SGPath engine_path( globals->get_fg_root() );
92     engine_path.append( "Engine" );
93     set_delta_t( dt );
94     State->Setdt( dt );
95
96     result = fdmex->LoadModel( aircraft_path.str(),
97                                engine_path.str(),
98                                fgGetString("/sim/aero") );
99     
100     if (result) {
101       SG_LOG( SG_FLIGHT, SG_INFO, "  loaded aero.");
102     } else {
103       SG_LOG( SG_FLIGHT, SG_INFO,
104               "  aero does not exist (you may have mis-typed the name).");
105       throw(-1);
106     }
107
108     SG_LOG( SG_FLIGHT, SG_INFO, "" );
109     SG_LOG( SG_FLIGHT, SG_INFO, "" );
110     SG_LOG( SG_FLIGHT, SG_INFO, "After loading aero definition file ..." );
111
112     int Neng = Propulsion->GetNumEngines();
113     SG_LOG( SG_FLIGHT, SG_INFO, "num engines = " << Neng );
114     
115     if ( GroundReactions->GetNumGearUnits() <= 0 ) {
116         SG_LOG( SG_FLIGHT, SG_ALERT, "num gear units = "
117                 << GroundReactions->GetNumGearUnits() );
118         SG_LOG( SG_FLIGHT, SG_ALERT, "This is a very bad thing because with 0 gear units, the ground trimming");
119          SG_LOG( SG_FLIGHT, SG_ALERT, "routine (coming up later in the code) will core dump.");
120          SG_LOG( SG_FLIGHT, SG_ALERT, "Halting the sim now, and hoping a solution will present itself soon!");
121          exit(-1);
122     }
123         
124     
125     init_gear();
126
127                                 // Set initial fuel levels if provided.
128     for (unsigned int i = 0; i < Propulsion->GetNumTanks(); i++) {
129       SGPropertyNode * node = fgGetNode("/consumables/fuel/tank", i, true);
130       if (node->getChild("level-gal_us", 0, false) != 0)
131         Propulsion->GetTank(i)
132           ->SetContents(node->getDoubleValue("level-gal_us") * 6.6);
133     }
134     
135     fgSetDouble("/fdm/trim/pitch-trim", FCS->GetPitchTrimCmd());
136     fgSetDouble("/fdm/trim/throttle",   FCS->GetThrottleCmd(0));
137     fgSetDouble("/fdm/trim/aileron",    FCS->GetDaCmd());
138     fgSetDouble("/fdm/trim/rudder",     FCS->GetDrCmd());
139
140     startup_trim = fgGetNode("/sim/startup/trim", true);
141
142     trimmed = fgGetNode("/fdm/trim/trimmed", true);
143     trimmed->setBoolValue(false);
144
145     pitch_trim = fgGetNode("/fdm/trim/pitch-trim", true );
146     throttle_trim = fgGetNode("/fdm/trim/throttle", true );
147     aileron_trim = fgGetNode("/fdm/trim/aileron", true );
148     rudder_trim = fgGetNode("/fdm/trim/rudder", true );
149     
150     
151     stall_warning = fgGetNode("/sim/aero/alarms/stall-warning",true);
152     stall_warning->setDoubleValue(0);
153 }
154
155 /******************************************************************************/
156 FGJSBsim::~FGJSBsim(void) {
157     if (fdmex != NULL) {
158         delete fdmex; fdmex=NULL;
159         delete fgic; fgic=NULL;
160     }  
161 }
162
163 /******************************************************************************/
164
165 // Initialize the JSBsim flight model, dt is the time increment for
166 // each subsequent iteration through the EOM
167
168 void FGJSBsim::init() {
169     
170     SG_LOG( SG_FLIGHT, SG_INFO, "Starting and initializing JSBsim" );
171    
172     // Explicitly call the superclass's
173     // init method first.
174     common_init();
175     copy_to_JSBsim();
176
177     fdmex->RunIC(fgic); //loop JSBSim once w/o integrating
178     copy_from_JSBsim(); //update the bus
179
180     SG_LOG( SG_FLIGHT, SG_INFO, "  Initialized JSBSim with:" );
181
182     switch(fgic->GetSpeedSet()) {
183     case setned:
184         SG_LOG(SG_FLIGHT,SG_INFO, "  Vn,Ve,Vd= "
185                << Position->GetVn() << ", "
186                << Position->GetVe() << ", "
187                << Position->GetVd() << " ft/s");
188     break;
189     case setuvw:
190         SG_LOG(SG_FLIGHT,SG_INFO, "  U,V,W= "
191                << Translation->GetUVW(1) << ", "
192                << Translation->GetUVW(2) << ", "
193                << Translation->GetUVW(3) << " ft/s");
194     break;
195     case setmach:
196         SG_LOG(SG_FLIGHT,SG_INFO, "  Mach: "
197                << Translation->GetMach() );
198     break;
199     case setvc:
200     default:
201         SG_LOG(SG_FLIGHT,SG_INFO, "  Indicated Airspeed: "
202                << Auxiliary->GetVcalibratedKTS() << " knots" );
203     break;
204     }
205     
206     stall_warning->setDoubleValue(0);
207     
208     SG_LOG( SG_FLIGHT, SG_INFO, "  Bank Angle: "
209             <<  Rotation->Getphi()*RADTODEG << " deg" );
210     SG_LOG( SG_FLIGHT, SG_INFO, "  Pitch Angle: "
211             << Rotation->Gettht()*RADTODEG << " deg" );
212     SG_LOG( SG_FLIGHT, SG_INFO, "  True Heading: "
213             << Rotation->Getpsi()*RADTODEG << " deg" );
214     SG_LOG( SG_FLIGHT, SG_INFO, "  Latitude: "
215             << Position->GetLatitude() << " deg" );
216     SG_LOG( SG_FLIGHT, SG_INFO, "  Longitude: "
217             << Position->GetLongitude() << " deg" );
218     SG_LOG( SG_FLIGHT, SG_INFO, "  Altitude: "
219         << Position->Geth() << " feet" );
220     SG_LOG( SG_FLIGHT, SG_INFO, "  loaded initial conditions" );
221
222     SG_LOG( SG_FLIGHT, SG_INFO, "  set dt" );
223
224     SG_LOG( SG_FLIGHT, SG_INFO, "Finished initializing JSBSim" );
225     
226     SG_LOG( SG_FLIGHT, SG_INFO, "FGControls::get_gear_down()= " << 
227                                   globals->get_controls()->get_gear_down() );
228     
229
230    
231 }
232
233 /******************************************************************************/
234
235 // Run an iteration of the EOM (equations of motion)
236
237 void
238 FGJSBsim::update( int multiloop ) {
239
240     int i;
241
242     // double save_alt = 0.0;
243
244     copy_to_JSBsim();
245
246     trimmed->setBoolValue(false);
247
248     if ( needTrim ) {
249       if ( startup_trim->getBoolValue() ) {
250         SG_LOG(SG_FLIGHT, SG_INFO,
251           "Ready to trim, terrain altitude is: " 
252             << scenery.get_cur_elev() * SG_METER_TO_FEET );
253         SG_LOG( SG_FLIGHT, SG_INFO, "position = "
254                 << fgGetDouble("/position/longitude-deg") << ", "
255                 << fgGetDouble("/position/latitude-deg") );
256         fgic->SetTerrainAltitudeFtIC( scenery.get_cur_elev() * SG_METER_TO_FEET );
257         do_trim();
258       } else {
259         fdmex->RunIC(fgic);  //apply any changes made through the set_ functions
260       }
261       needTrim = false;  
262     }    
263     
264     for ( i=0; i < multiloop; i++ ) {
265         fdmex->Run();
266     }
267
268     FGJSBBase::Message* msg;
269     while (fdmex->ReadMessage()) {
270       msg = fdmex->ProcessMessage();
271       switch (msg->type) {
272       case FGJSBBase::Message::eText:
273         SG_LOG( SG_FLIGHT, SG_INFO, msg->messageId << ": " << msg->text );
274         break;
275       case FGJSBBase::Message::eBool:
276         SG_LOG( SG_FLIGHT, SG_INFO, msg->messageId << ": " << msg->text << " " << msg->bVal );
277         break;
278       case FGJSBBase::Message::eInteger:
279         SG_LOG( SG_FLIGHT, SG_INFO, msg->messageId << ": " << msg->text << " " << msg->iVal );
280         break;
281       case FGJSBBase::Message::eDouble:
282         SG_LOG( SG_FLIGHT, SG_INFO, msg->messageId << ": " << msg->text << " " << msg->dVal );
283         break;
284       default:
285         SG_LOG( SG_FLIGHT, SG_INFO, "Unrecognized message type." );
286         break;
287       }
288     }
289
290     // translate JSBsim back to FG structure so that the
291     // autopilot (and the rest of the sim can use the updated values
292     copy_from_JSBsim();
293 }
294
295 /******************************************************************************/
296
297 // Convert from the FGInterface struct to the JSBsim generic_ struct
298
299 bool FGJSBsim::copy_to_JSBsim() {
300     unsigned int i;
301
302     // copy control positions into the JSBsim structure
303
304     FCS->SetDaCmd( globals->get_controls()->get_aileron());
305     FCS->SetRollTrimCmd( globals->get_controls()->get_aileron_trim() );
306     FCS->SetDeCmd( globals->get_controls()->get_elevator());
307     FCS->SetPitchTrimCmd( globals->get_controls()->get_elevator_trim() );
308     FCS->SetDrCmd( -globals->get_controls()->get_rudder() );
309     FCS->SetYawTrimCmd( -globals->get_controls()->get_rudder_trim() );
310     FCS->SetDfCmd(  globals->get_controls()->get_flaps() );
311     FCS->SetDsbCmd( 0.0 ); //speedbrakes
312     FCS->SetDspCmd( 0.0 ); //spoilers
313     FCS->SetLBrake( globals->get_controls()->get_brake( 0 ) );
314     FCS->SetRBrake( globals->get_controls()->get_brake( 1 ) );
315     FCS->SetCBrake( globals->get_controls()->get_brake( 2 ) );
316     FCS->SetGearCmd( globals->get_controls()->get_gear_down());
317     for (i = 0; i < Propulsion->GetNumEngines(); i++) {
318       FGEngine * eng = Propulsion->GetEngine(i);
319       SGPropertyNode * node = fgGetNode("engines/engine", i, true);
320       FCS->SetThrottleCmd(i, globals->get_controls()->get_throttle(i));
321       FCS->SetMixtureCmd(i, globals->get_controls()->get_mixture(i));
322       FCS->SetPropAdvanceCmd(i, globals->get_controls()->get_prop_advance(i));
323       Propulsion->GetThruster(i)->SetRPM(node->getDoubleValue("rpm"));
324       eng->SetMagnetos( globals->get_controls()->get_magnetos(i) );
325       eng->SetStarter( globals->get_controls()->get_starter(i) );
326     }
327
328     _set_Runway_altitude( scenery.get_cur_elev() * SG_METER_TO_FEET );
329     Position->SetSeaLevelRadius( get_Sea_level_radius() );
330     Position->SetRunwayRadius( get_Runway_altitude() 
331                                + get_Sea_level_radius() );
332
333     Atmosphere->SetExTemperature(get_Static_temperature());
334     Atmosphere->SetExPressure(get_Static_pressure());
335     Atmosphere->SetExDensity(get_Density());
336     Atmosphere->SetWindNED(get_V_north_airmass(),
337                            get_V_east_airmass(),
338                            get_V_down_airmass());
339 //    SG_LOG(SG_FLIGHT,SG_INFO, "Wind NED: "
340 //                  << get_V_north_airmass() << ", "
341 //                  << get_V_east_airmass()  << ", "
342 //                  << get_V_down_airmass() );
343
344     for (i = 0; i < Propulsion->GetNumTanks(); i++) {
345       SGPropertyNode * node = fgGetNode("/consumables/fuel/tank", i, true);
346       FGTank * tank = Propulsion->GetTank(i);
347       tank->SetContents(node->getDoubleValue("level-gal_us") * 6.6);
348 //       tank->SetContents(node->getDoubleValue("level-lb"));
349     }
350
351     return true;
352 }
353
354 /******************************************************************************/
355
356 // Convert from the JSBsim generic_ struct to the FGInterface struct
357
358 bool FGJSBsim::copy_from_JSBsim() {
359     unsigned int i, j;
360
361     _set_Inertias( MassBalance->GetMass(),
362                    MassBalance->GetIxx(),
363                    MassBalance->GetIyy(),
364                    MassBalance->GetIzz(),
365                    MassBalance->GetIxz() );
366
367     _set_CG_Position( MassBalance->GetXYZcg(1),
368                       MassBalance->GetXYZcg(2),
369                       MassBalance->GetXYZcg(3) );
370
371     _set_Accels_Body( Aircraft->GetBodyAccel()(1),
372                       Aircraft->GetBodyAccel()(2),
373                       Aircraft->GetBodyAccel()(3) );
374
375     //_set_Accels_CG_Body( Aircraft->GetBodyAccel()(1),
376     //                     Aircraft->GetBodyAccel()(2),
377     //                     Aircraft->GetBodyAccel()(3) );
378     //
379     _set_Accels_CG_Body_N ( Aircraft->GetNcg()(1),
380                             Aircraft->GetNcg()(2),
381                             Aircraft->GetNcg()(3) );
382     
383     _set_Accels_Pilot_Body( Auxiliary->GetPilotAccel()(1),
384                             Auxiliary->GetPilotAccel()(2),
385                             Auxiliary->GetPilotAccel()(3) );
386
387    // _set_Accels_Pilot_Body_N( Auxiliary->GetPilotAccel()(1)/32.1739,
388    //                           Auxiliary->GetNpilot(2)/32.1739,
389    //                           Auxiliary->GetNpilot(3)/32.1739 );
390
391     _set_Nlf( Aircraft->GetNlf() );
392
393     // Velocities
394
395     _set_Velocities_Local( Position->GetVn(),
396                            Position->GetVe(),
397                            Position->GetVd() );
398
399     _set_Velocities_Wind_Body( Translation->GetUVW(1),
400                                Translation->GetUVW(2),
401                                Translation->GetUVW(3) );
402
403     _set_V_rel_wind( Translation->GetVt() );
404
405     _set_V_equiv_kts( Auxiliary->GetVequivalentKTS() );
406
407     // _set_V_calibrated( Auxiliary->GetVcalibratedFPS() );
408
409     _set_V_calibrated_kts( Auxiliary->GetVcalibratedKTS() );
410
411     _set_V_ground_speed( Position->GetVground() );
412
413     _set_Omega_Body( Rotation->GetPQR(1),
414                      Rotation->GetPQR(2),
415                      Rotation->GetPQR(3) );
416
417     _set_Euler_Rates( Rotation->GetEulerRates(1),
418                       Rotation->GetEulerRates(2),
419                       Rotation->GetEulerRates(3) );
420
421     _set_Geocentric_Rates(Position->GetLatitudeDot(),
422                           Position->GetLongitudeDot(),
423                           Position->Gethdot() );
424
425     _set_Mach_number( Translation->GetMach() );
426
427     // Positions
428     _updateGeocentricPosition( Position->GetLatitude(),
429                                Position->GetLongitude(),
430                                Position->Geth() );
431
432     _set_Altitude_AGL( Position->GetDistanceAGL() );
433
434     _set_Euler_Angles( Rotation->Getphi(),
435                        Rotation->Gettht(),
436                        Rotation->Getpsi() );
437
438     _set_Alpha( Translation->Getalpha() );
439     _set_Beta( Translation->Getbeta() );
440
441
442     _set_Gamma_vert_rad( Position->GetGamma() );
443     // set_Gamma_horiz_rad( Gamma_horiz_rad );
444
445     _set_Earth_position_angle( Auxiliary->GetEarthPositionAngle() );
446
447     _set_Climb_Rate( Position->Gethdot() );
448
449
450     for ( i = 1; i <= 3; i++ ) {
451         for ( j = 1; j <= 3; j++ ) {
452             _set_T_Local_to_Body( i, j, State->GetTl2b(i,j) );
453         }
454     }
455
456                                 // Copy the engine values from JSBSim.
457     for( i=0; i < Propulsion->GetNumEngines(); i++ ) {
458       SGPropertyNode * node = fgGetNode("engines/engine", i, true);
459       FGEngine * eng = Propulsion->GetEngine(i);
460       FGThruster * thrust = Propulsion->GetThruster(i);
461
462       node->setDoubleValue("mp-osi", eng->getManifoldPressure_inHg());
463       node->setDoubleValue("rpm", thrust->GetRPM());
464       node->setDoubleValue("egt-degf", eng->getExhaustGasTemp_degF());
465       node->setDoubleValue("fuel-flow-gph", eng->getFuelFlow_gph());
466       node->setDoubleValue("cht-degf", eng->getCylinderHeadTemp_degF());
467       node->setDoubleValue("oil-temperature-degf", eng->getOilTemp_degF());
468       node->setDoubleValue("oil-pressure-psi", eng->getOilPressure_psi());
469       node->setBoolValue("running", eng->GetRunning());
470       node->setBoolValue("cranking", eng->GetCranking());
471     }
472
473     static const SGPropertyNode *fuel_freeze
474         = fgGetNode("/sim/freeze/fuel");
475
476                                 // Copy the fuel levels from JSBSim if fuel
477                                 // freeze not enabled.
478     if ( ! fuel_freeze->getBoolValue() ) {
479         for (i = 0; i < Propulsion->GetNumTanks(); i++) {
480             SGPropertyNode * node
481                 = fgGetNode("/consumables/fuel/tank", i, true);
482             double contents = Propulsion->GetTank(i)->GetContents();
483             node->setDoubleValue("level-gal_us", contents/6.6);
484             // node->setDoubleValue("level-lb", contents);
485         }
486     }
487
488     update_gear();
489     
490     stall_warning->setDoubleValue( Aircraft->GetStallWarn() );
491     
492     return true;
493 }
494
495 bool FGJSBsim::ToggleDataLogging(void) {
496     return fdmex->GetOutput()->Toggle();
497 }
498
499
500 bool FGJSBsim::ToggleDataLogging(bool state) {
501     if (state) {
502       fdmex->GetOutput()->Enable();
503       return true;
504     } else {
505       fdmex->GetOutput()->Disable();
506       return false;
507     }
508 }
509
510
511 //Positions
512 void FGJSBsim::set_Latitude(double lat) {
513     static const SGPropertyNode *altitude = fgGetNode("/position/altitude-ft");
514     double alt;
515     double sea_level_radius_meters, lat_geoc;
516     
517     if ( altitude->getDoubleValue() > -9990 ) {
518       alt = altitude->getDoubleValue();
519     } else {
520       alt = 0.0;
521     }
522    
523     update_ic();
524     SG_LOG(SG_FLIGHT,SG_INFO,"FGJSBsim::set_Latitude: " << lat );
525     SG_LOG(SG_FLIGHT,SG_INFO," cur alt (ft) =  " << alt );
526
527     sgGeodToGeoc( lat, alt * SG_FEET_TO_METER, 
528                       &sea_level_radius_meters, &lat_geoc );
529     _set_Sea_level_radius( sea_level_radius_meters * SG_METER_TO_FEET  );
530     fgic->SetSeaLevelRadiusFtIC( sea_level_radius_meters * SG_METER_TO_FEET  );    
531     _set_Runway_altitude(  scenery.get_cur_elev() * SG_METER_TO_FEET  );
532     fgic->SetTerrainAltitudeFtIC( scenery.get_cur_elev() * SG_METER_TO_FEET  );
533     fgic->SetLatitudeRadIC( lat_geoc );
534     needTrim=true;
535 }
536
537 void FGJSBsim::set_Longitude(double lon) {
538
539     SG_LOG(SG_FLIGHT,SG_INFO,"FGJSBsim::set_Longitude: " << lon );
540     update_ic();
541     fgic->SetLongitudeRadIC( lon );
542     _set_Runway_altitude( scenery.get_cur_elev() * SG_METER_TO_FEET  );
543     fgic->SetTerrainAltitudeFtIC( scenery.get_cur_elev() * SG_METER_TO_FEET  );
544     needTrim=true;
545 }
546
547 void FGJSBsim::set_Altitude(double alt) {
548     static const SGPropertyNode *latitude = fgGetNode("/position/latitude-deg");
549
550     double sea_level_radius_meters,lat_geoc;
551
552     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Altitude: " << alt );
553     SG_LOG(SG_FLIGHT,SG_INFO, "  lat (deg) = " << latitude->getDoubleValue() );
554     
555     update_ic();
556     sgGeodToGeoc( latitude->getDoubleValue() * SGD_DEGREES_TO_RADIANS, alt,
557                   &sea_level_radius_meters, &lat_geoc);
558     _set_Sea_level_radius( sea_level_radius_meters * SG_METER_TO_FEET  );
559     fgic->SetSeaLevelRadiusFtIC( sea_level_radius_meters * SG_METER_TO_FEET );
560     _set_Runway_altitude( scenery.get_cur_elev() * SG_METER_TO_FEET  );
561     fgic->SetTerrainAltitudeFtIC( scenery.get_cur_elev() * SG_METER_TO_FEET  );
562     SG_LOG(SG_FLIGHT, SG_INFO,
563           "Terrain altitude: " << scenery.get_cur_elev() * SG_METER_TO_FEET );
564     SG_LOG( SG_FLIGHT, SG_INFO, "position = "
565             << fgGetDouble("/position/longitude-deg") << ", "
566             << fgGetDouble("/position/latitude-deg") );
567     fgic->SetLatitudeRadIC( lat_geoc );
568     fgic->SetAltitudeFtIC(alt);
569     needTrim=true;
570 }
571
572 void FGJSBsim::set_V_calibrated_kts(double vc) {
573     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_V_calibrated_kts: " <<  vc );
574     
575     update_ic();
576     fgic->SetVcalibratedKtsIC(vc);
577     needTrim=true;
578 }
579
580 void FGJSBsim::set_Mach_number(double mach) {
581     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Mach_number: " <<  mach );
582     
583     update_ic();
584     fgic->SetMachIC(mach);
585     needTrim=true;
586 }
587
588 void FGJSBsim::set_Velocities_Local( double north, double east, double down ){
589     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Velocities_Local: "
590        << north << ", " <<  east << ", " << down );
591     
592     update_ic();
593     fgic->SetVnorthFpsIC(north);
594     fgic->SetVeastFpsIC(east);
595     fgic->SetVdownFpsIC(down);
596     needTrim=true;
597 }
598
599 void FGJSBsim::set_Velocities_Wind_Body( double u, double v, double w){
600     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Velocities_Wind_Body: "
601        << u << ", " <<  v << ", " <<  w );
602     
603     update_ic();
604     fgic->SetUBodyFpsIC(u);
605     fgic->SetVBodyFpsIC(v);
606     fgic->SetWBodyFpsIC(w);
607     needTrim=true;
608 }
609
610 //Euler angles
611 void FGJSBsim::set_Euler_Angles( double phi, double theta, double psi ) {
612     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Euler_Angles: "
613        << phi << ", " << theta << ", " << psi );
614     
615     update_ic();
616     fgic->SetPitchAngleRadIC(theta);
617     fgic->SetRollAngleRadIC(phi);
618     fgic->SetTrueHeadingRadIC(psi);
619     needTrim=true;
620 }
621
622 //Flight Path
623 void FGJSBsim::set_Climb_Rate( double roc) {
624     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Climb_Rate: " << roc );
625     
626     update_ic();
627     //since both climb rate and flight path angle are set in the FG
628     //startup sequence, something is needed to keep one from cancelling
629     //out the other.
630     if( !(fabs(roc) > 1 && fabs(fgic->GetFlightPathAngleRadIC()) < 0.01) ) {
631       fgic->SetClimbRateFpsIC(roc);
632     }  
633     needTrim=true;
634 }
635
636 void FGJSBsim::set_Gamma_vert_rad( double gamma) {
637     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Gamma_vert_rad: " << gamma );
638     
639     update_ic();
640     if( !(fabs(gamma) < 0.01 && fabs(fgic->GetClimbRateFpsIC()) > 1) ) {
641       fgic->SetFlightPathAngleRadIC(gamma);
642     }  
643     needTrim=true;
644 }
645
646 void FGJSBsim::set_Static_pressure(double p) {
647     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Static_pressure: " << p );
648     
649     update_ic();
650     Atmosphere->SetExPressure(p);
651     if(Atmosphere->External() == true)
652       needTrim=true;
653 }
654
655 void FGJSBsim::set_Static_temperature(double T) {
656     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Static_temperature: " << T );
657     
658     Atmosphere->SetExTemperature(T);
659     if(Atmosphere->External() == true)
660       needTrim=true;
661 }
662  
663
664 void FGJSBsim::set_Density(double rho) {
665     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Density: " << rho );
666     
667     Atmosphere->SetExDensity(rho);
668     if(Atmosphere->External() == true)
669       needTrim=true;
670 }
671   
672 void FGJSBsim::set_Velocities_Local_Airmass (double wnorth, 
673                          double weast, 
674                          double wdown ) {
675     SG_LOG(SG_FLIGHT,SG_DEBUG, "FGJSBsim::set_Velocities_Local_Airmass: " 
676        << wnorth << ", " << weast << ", " << wdown );
677     
678     _set_Velocities_Local_Airmass( wnorth, weast, wdown );
679     fgic->SetWindNEDFpsIC( wnorth, weast, wdown );
680     if(Atmosphere->External() == true)
681         needTrim=true;
682 }     
683
684 void FGJSBsim::init_gear(void ) {
685     
686     FGGroundReactions* gr=fdmex->GetGroundReactions();
687     int Ngear=GroundReactions->GetNumGearUnits();
688     for (int i=0;i<Ngear;i++) {
689       SGPropertyNode * node = fgGetNode("gear/gear", i, true);
690       node->setDoubleValue("xoffset-in",
691                            gr->GetGearUnit(i)->GetBodyLocation()(1));
692       node->setDoubleValue("yoffset-in",
693                            gr->GetGearUnit(i)->GetBodyLocation()(2));
694       node->setDoubleValue("zoffset-in",
695                            gr->GetGearUnit(i)->GetBodyLocation()(3));
696       node->setBoolValue("wow", gr->GetGearUnit(i)->GetWOW());
697       node->setBoolValue("has-brake", gr->GetGearUnit(i)->GetBrakeGroup() > 0);
698       node->setDoubleValue("position", FCS->GetGearPos());
699     }  
700 }
701
702 void FGJSBsim::update_gear(void) {
703     
704     FGGroundReactions* gr=fdmex->GetGroundReactions();
705     int Ngear=GroundReactions->GetNumGearUnits();
706     for (int i=0;i<Ngear;i++) {
707       SGPropertyNode * node = fgGetNode("gear/gear", i, true);
708       node->getChild("wow", 0, true)
709         ->setBoolValue(gr->GetGearUnit(i)->GetWOW());
710       node->getChild("position", 0, true)
711         ->setDoubleValue(FCS->GetGearPos());
712     }  
713 }
714
715 void FGJSBsim::do_trim(void) {
716
717         FGTrim *fgtrim;
718         if(fgic->GetVcalibratedKtsIC() < 10 ) {
719             fgic->SetVcalibratedKtsIC(0.0);
720             fgtrim=new FGTrim(fdmex,fgic,tGround);
721         } else {
722             fgtrim=new FGTrim(fdmex,fgic,tLongitudinal);
723         }
724         if( !fgtrim->DoTrim() ) {
725             fgtrim->Report();
726             fgtrim->TrimStats();
727         } else {
728             trimmed->setBoolValue(true);
729         }
730         State->ReportState();
731         delete fgtrim;
732         pitch_trim->setDoubleValue( FCS->GetPitchTrimCmd() );
733         throttle_trim->setDoubleValue( FCS->GetThrottleCmd(0) );
734         aileron_trim->setDoubleValue( FCS->GetDaCmd() );
735         rudder_trim->setDoubleValue( FCS->GetDrCmd() );
736
737         globals->get_controls()->set_elevator_trim(FCS->GetPitchTrimCmd());
738         globals->get_controls()->set_elevator(FCS->GetDeCmd());
739         globals->get_controls()->set_throttle(FGControls::ALL_ENGINES,
740                                               FCS->GetThrottleCmd(0));
741
742         globals->get_controls()->set_aileron(FCS->GetDaCmd());
743         globals->get_controls()->set_rudder( FCS->GetDrCmd());
744     
745         SG_LOG( SG_FLIGHT, SG_INFO, "  Trim complete" );
746 }          
747
748 void FGJSBsim::update_ic(void) {       
749    if( !needTrim ) {
750      fgic->SetLatitudeRadIC(get_Lat_geocentric() );       
751      fgic->SetLongitudeRadIC( get_Longitude() );       
752      fgic->SetAltitudeFtIC( get_Altitude() );       
753      fgic->SetVcalibratedKtsIC( get_V_calibrated_kts() );       
754      fgic->SetPitchAngleRadIC( get_Theta() );       
755      fgic->SetRollAngleRadIC( get_Phi() );       
756      fgic->SetTrueHeadingRadIC( get_Psi() );       
757      fgic->SetClimbRateFpsIC( get_Climb_Rate() );
758    }  
759 }