]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim.cxx
First steps in a weather reorganization. Note especially that
[flightgear.git] / src / FDM / 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         do_trim();
251       } else {
252         fdmex->RunIC(fgic);  //apply any changes made through the set_ functions
253       }
254       needTrim = false;  
255     }    
256     
257     for ( i=0; i < multiloop; i++ ) {
258         fdmex->Run();
259     }
260
261     FGJSBBase::Message* msg;
262     while (fdmex->ReadMessage()) {
263       msg = fdmex->ProcessMessage();
264       switch (msg->type) {
265       case FGJSBBase::Message::eText:
266         SG_LOG( SG_FLIGHT, SG_INFO, msg->messageId << ": " << msg->text );
267         break;
268       case FGJSBBase::Message::eBool:
269         SG_LOG( SG_FLIGHT, SG_INFO, msg->messageId << ": " << msg->text << " " << msg->bVal );
270         break;
271       case FGJSBBase::Message::eInteger:
272         SG_LOG( SG_FLIGHT, SG_INFO, msg->messageId << ": " << msg->text << " " << msg->iVal );
273         break;
274       case FGJSBBase::Message::eDouble:
275         SG_LOG( SG_FLIGHT, SG_INFO, msg->messageId << ": " << msg->text << " " << msg->dVal );
276         break;
277       default:
278         SG_LOG( SG_FLIGHT, SG_INFO, "Unrecognized message type." );
279         break;
280       }
281     }
282
283     // translate JSBsim back to FG structure so that the
284     // autopilot (and the rest of the sim can use the updated values
285     copy_from_JSBsim();
286 }
287
288 /******************************************************************************/
289
290 // Convert from the FGInterface struct to the JSBsim generic_ struct
291
292 bool FGJSBsim::copy_to_JSBsim() {
293     unsigned int i;
294
295     // copy control positions into the JSBsim structure
296
297     FCS->SetDaCmd( globals->get_controls()->get_aileron());
298     FCS->SetRollTrimCmd( globals->get_controls()->get_aileron_trim() );
299     FCS->SetDeCmd( globals->get_controls()->get_elevator());
300     FCS->SetPitchTrimCmd( globals->get_controls()->get_elevator_trim() );
301     FCS->SetDrCmd( -globals->get_controls()->get_rudder() );
302     FCS->SetYawTrimCmd( -globals->get_controls()->get_rudder_trim() );
303     FCS->SetDfCmd(  globals->get_controls()->get_flaps() );
304     FCS->SetDsbCmd( 0.0 ); //speedbrakes
305     FCS->SetDspCmd( 0.0 ); //spoilers
306     FCS->SetLBrake( globals->get_controls()->get_brake( 0 ) );
307     FCS->SetRBrake( globals->get_controls()->get_brake( 1 ) );
308     FCS->SetCBrake( globals->get_controls()->get_brake( 2 ) );
309     FCS->SetGearCmd( globals->get_controls()->get_gear_down());
310     for (i = 0; i < Propulsion->GetNumEngines(); i++) {
311       FGEngine * eng = Propulsion->GetEngine(i);
312       SGPropertyNode * node = fgGetNode("engines/engine", i, true);
313       FCS->SetThrottleCmd(i, globals->get_controls()->get_throttle(i));
314       FCS->SetMixtureCmd(i, globals->get_controls()->get_mixture(i));
315       FCS->SetPropAdvanceCmd(i, globals->get_controls()->get_prop_advance(i));
316       Propulsion->GetThruster(i)->SetRPM(node->getDoubleValue("rpm"));
317       eng->SetMagnetos( globals->get_controls()->get_magnetos(i) );
318       eng->SetStarter( globals->get_controls()->get_starter(i) );
319     }
320
321     _set_Runway_altitude( scenery.get_cur_elev() * SG_METER_TO_FEET );
322     Position->SetSeaLevelRadius( get_Sea_level_radius() );
323     Position->SetRunwayRadius( get_Runway_altitude() 
324                                + get_Sea_level_radius() );
325
326     Atmosphere->SetExTemperature(get_Static_temperature());
327     Atmosphere->SetExPressure(get_Static_pressure());
328     Atmosphere->SetExDensity(get_Density());
329     Atmosphere->SetWindNED(get_V_north_airmass(),
330                            get_V_east_airmass(),
331                            get_V_down_airmass());
332 //    SG_LOG(SG_FLIGHT,SG_INFO, "Wind NED: "
333 //                  << get_V_north_airmass() << ", "
334 //                  << get_V_east_airmass()  << ", "
335 //                  << get_V_down_airmass() );
336
337     for (i = 0; i < Propulsion->GetNumTanks(); i++) {
338       SGPropertyNode * node = fgGetNode("/consumables/fuel/tank", i, true);
339       FGTank * tank = Propulsion->GetTank(i);
340       tank->SetContents(node->getDoubleValue("level-gal_us") * 6.6);
341 //       tank->SetContents(node->getDoubleValue("level-lb"));
342     }
343
344     return true;
345 }
346
347 /******************************************************************************/
348
349 // Convert from the JSBsim generic_ struct to the FGInterface struct
350
351 bool FGJSBsim::copy_from_JSBsim() {
352     unsigned int i, j;
353
354     _set_Inertias( MassBalance->GetMass(),
355                    MassBalance->GetIxx(),
356                    MassBalance->GetIyy(),
357                    MassBalance->GetIzz(),
358                    MassBalance->GetIxz() );
359
360     _set_CG_Position( MassBalance->GetXYZcg(1),
361                       MassBalance->GetXYZcg(2),
362                       MassBalance->GetXYZcg(3) );
363
364     _set_Accels_Body( Aircraft->GetBodyAccel()(1),
365                       Aircraft->GetBodyAccel()(2),
366                       Aircraft->GetBodyAccel()(3) );
367
368     //_set_Accels_CG_Body( Aircraft->GetBodyAccel()(1),
369     //                     Aircraft->GetBodyAccel()(2),
370     //                     Aircraft->GetBodyAccel()(3) );
371     //
372     _set_Accels_CG_Body_N ( Aircraft->GetNcg()(1),
373                             Aircraft->GetNcg()(2),
374                             Aircraft->GetNcg()(3) );
375     
376     _set_Accels_Pilot_Body( Auxiliary->GetPilotAccel()(1),
377                             Auxiliary->GetPilotAccel()(2),
378                             Auxiliary->GetPilotAccel()(3) );
379
380    // _set_Accels_Pilot_Body_N( Auxiliary->GetPilotAccel()(1)/32.1739,
381    //                           Auxiliary->GetNpilot(2)/32.1739,
382    //                           Auxiliary->GetNpilot(3)/32.1739 );
383
384     _set_Nlf( Aircraft->GetNlf() );
385
386     // Velocities
387
388     _set_Velocities_Local( Position->GetVn(),
389                            Position->GetVe(),
390                            Position->GetVd() );
391
392     _set_Velocities_Wind_Body( Translation->GetUVW(1),
393                                Translation->GetUVW(2),
394                                Translation->GetUVW(3) );
395
396     _set_V_rel_wind( Translation->GetVt() );
397
398     _set_V_equiv_kts( Auxiliary->GetVequivalentKTS() );
399
400     // _set_V_calibrated( Auxiliary->GetVcalibratedFPS() );
401
402     _set_V_calibrated_kts( Auxiliary->GetVcalibratedKTS() );
403
404     _set_V_ground_speed( Position->GetVground() );
405
406     _set_Omega_Body( Rotation->GetPQR(1),
407                      Rotation->GetPQR(2),
408                      Rotation->GetPQR(3) );
409
410     _set_Euler_Rates( Rotation->GetEulerRates(1),
411                       Rotation->GetEulerRates(2),
412                       Rotation->GetEulerRates(3) );
413
414     _set_Geocentric_Rates(Position->GetLatitudeDot(),
415                           Position->GetLongitudeDot(),
416                           Position->Gethdot() );
417
418     _set_Mach_number( Translation->GetMach() );
419
420     // Positions
421     _updateGeocentricPosition( Position->GetLatitude(),
422                                Position->GetLongitude(),
423                                Position->Geth() );
424
425     _set_Altitude_AGL( Position->GetDistanceAGL() );
426
427     _set_Euler_Angles( Rotation->Getphi(),
428                        Rotation->Gettht(),
429                        Rotation->Getpsi() );
430
431     _set_Alpha( Translation->Getalpha() );
432     _set_Beta( Translation->Getbeta() );
433
434
435     _set_Gamma_vert_rad( Position->GetGamma() );
436     // set_Gamma_horiz_rad( Gamma_horiz_rad );
437
438     _set_Earth_position_angle( Auxiliary->GetEarthPositionAngle() );
439
440     _set_Climb_Rate( Position->Gethdot() );
441
442
443     for ( i = 1; i <= 3; i++ ) {
444         for ( j = 1; j <= 3; j++ ) {
445             _set_T_Local_to_Body( i, j, State->GetTl2b(i,j) );
446         }
447     }
448
449                                 // Copy the engine values from JSBSim.
450     for( i=0; i < Propulsion->GetNumEngines(); i++ ) {
451       SGPropertyNode * node = fgGetNode("engines/engine", i, true);
452       FGEngine * eng = Propulsion->GetEngine(i);
453       FGThruster * thrust = Propulsion->GetThruster(i);
454
455       node->setDoubleValue("mp-osi", eng->getManifoldPressure_inHg());
456       node->setDoubleValue("rpm", thrust->GetRPM());
457       node->setDoubleValue("egt-degf", eng->getExhaustGasTemp_degF());
458       node->setDoubleValue("fuel-flow-gph", eng->getFuelFlow_gph());
459       node->setDoubleValue("cht-degf", eng->getCylinderHeadTemp_degF());
460       node->setDoubleValue("oil-temperature-degf", eng->getOilTemp_degF());
461       node->setDoubleValue("oil-pressure-psi", eng->getOilPressure_psi());
462       node->setBoolValue("running", eng->GetRunning());
463       node->setBoolValue("cranking", eng->GetCranking());
464     }
465
466     static const SGPropertyNode *fuel_freeze
467         = fgGetNode("/sim/freeze/fuel");
468
469                                 // Copy the fuel levels from JSBSim if fuel
470                                 // freeze not enabled.
471     if ( ! fuel_freeze->getBoolValue() ) {
472         for (i = 0; i < Propulsion->GetNumTanks(); i++) {
473             SGPropertyNode * node
474                 = fgGetNode("/consumables/fuel/tank", i, true);
475             double contents = Propulsion->GetTank(i)->GetContents();
476             node->setDoubleValue("level-gal_us", contents/6.6);
477             // node->setDoubleValue("level-lb", contents);
478         }
479     }
480
481     update_gear();
482     
483     stall_warning->setDoubleValue( Aircraft->GetStallWarn() );
484     
485     return true;
486 }
487
488 bool FGJSBsim::ToggleDataLogging(void) {
489     return fdmex->GetOutput()->Toggle();
490 }
491
492
493 bool FGJSBsim::ToggleDataLogging(bool state) {
494     if (state) {
495       fdmex->GetOutput()->Enable();
496       return true;
497     } else {
498       fdmex->GetOutput()->Disable();
499       return false;
500     }
501 }
502
503
504 //Positions
505 void FGJSBsim::set_Latitude(double lat) {
506     static const SGPropertyNode *altitude = fgGetNode("/position/altitude-ft");
507     double alt;
508     double sea_level_radius_meters, lat_geoc;
509     
510     if ( altitude->getDoubleValue() > -9990 ) {
511       alt = altitude->getDoubleValue();
512     } else {
513       alt = 0.0;
514     }
515    
516     update_ic();
517     SG_LOG(SG_FLIGHT,SG_INFO,"FGJSBsim::set_Latitude: " << lat );
518     SG_LOG(SG_FLIGHT,SG_INFO," cur alt (ft) =  " << alt );
519
520     sgGeodToGeoc( lat, alt * SG_FEET_TO_METER, 
521                       &sea_level_radius_meters, &lat_geoc );
522     _set_Sea_level_radius( sea_level_radius_meters * SG_METER_TO_FEET  );
523     fgic->SetSeaLevelRadiusFtIC( sea_level_radius_meters * SG_METER_TO_FEET  );    
524     _set_Runway_altitude(  scenery.get_cur_elev() * SG_METER_TO_FEET  );
525     fgic->SetTerrainAltitudeFtIC( scenery.get_cur_elev() * SG_METER_TO_FEET  );
526     fgic->SetLatitudeRadIC( lat_geoc );
527     needTrim=true;
528 }
529
530 void FGJSBsim::set_Longitude(double lon) {
531
532     SG_LOG(SG_FLIGHT,SG_INFO,"FGJSBsim::set_Longitude: " << lon );
533     update_ic();
534     fgic->SetLongitudeRadIC( lon );
535     _set_Runway_altitude( scenery.get_cur_elev() * SG_METER_TO_FEET  );
536     fgic->SetTerrainAltitudeFtIC( scenery.get_cur_elev() * SG_METER_TO_FEET  );
537     needTrim=true;
538 }
539
540 void FGJSBsim::set_Altitude(double alt) {
541     static const SGPropertyNode *latitude = fgGetNode("/position/latitude-deg");
542
543     double sea_level_radius_meters,lat_geoc;
544
545     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Altitude: " << alt );
546     SG_LOG(SG_FLIGHT,SG_INFO, "  lat (deg) = " << latitude->getDoubleValue() );
547     
548     update_ic();
549     sgGeodToGeoc( latitude->getDoubleValue() * SGD_DEGREES_TO_RADIANS, alt,
550                   &sea_level_radius_meters, &lat_geoc);
551     _set_Sea_level_radius( sea_level_radius_meters * SG_METER_TO_FEET  );
552     fgic->SetSeaLevelRadiusFtIC( sea_level_radius_meters * SG_METER_TO_FEET );
553     _set_Runway_altitude( scenery.get_cur_elev() * SG_METER_TO_FEET  );
554     fgic->SetTerrainAltitudeFtIC( scenery.get_cur_elev() * SG_METER_TO_FEET  );
555     fgic->SetLatitudeRadIC( lat_geoc );
556     fgic->SetAltitudeFtIC(alt);
557     needTrim=true;
558 }
559
560 void FGJSBsim::set_V_calibrated_kts(double vc) {
561     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_V_calibrated_kts: " <<  vc );
562     
563     update_ic();
564     fgic->SetVcalibratedKtsIC(vc);
565     needTrim=true;
566 }
567
568 void FGJSBsim::set_Mach_number(double mach) {
569     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Mach_number: " <<  mach );
570     
571     update_ic();
572     fgic->SetMachIC(mach);
573     needTrim=true;
574 }
575
576 void FGJSBsim::set_Velocities_Local( double north, double east, double down ){
577     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Velocities_Local: "
578        << north << ", " <<  east << ", " << down );
579     
580     update_ic();
581     fgic->SetVnorthFpsIC(north);
582     fgic->SetVeastFpsIC(east);
583     fgic->SetVdownFpsIC(down);
584     needTrim=true;
585 }
586
587 void FGJSBsim::set_Velocities_Wind_Body( double u, double v, double w){
588     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Velocities_Wind_Body: "
589        << u << ", " <<  v << ", " <<  w );
590     
591     update_ic();
592     fgic->SetUBodyFpsIC(u);
593     fgic->SetVBodyFpsIC(v);
594     fgic->SetWBodyFpsIC(w);
595     needTrim=true;
596 }
597
598 //Euler angles
599 void FGJSBsim::set_Euler_Angles( double phi, double theta, double psi ) {
600     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Euler_Angles: "
601        << phi << ", " << theta << ", " << psi );
602     
603     update_ic();
604     fgic->SetPitchAngleRadIC(theta);
605     fgic->SetRollAngleRadIC(phi);
606     fgic->SetTrueHeadingRadIC(psi);
607     needTrim=true;
608 }
609
610 //Flight Path
611 void FGJSBsim::set_Climb_Rate( double roc) {
612     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Climb_Rate: " << roc );
613     
614     update_ic();
615     //since both climb rate and flight path angle are set in the FG
616     //startup sequence, something is needed to keep one from cancelling
617     //out the other.
618     if( !(fabs(roc) > 1 && fabs(fgic->GetFlightPathAngleRadIC()) < 0.01) ) {
619       fgic->SetClimbRateFpsIC(roc);
620     }  
621     needTrim=true;
622 }
623
624 void FGJSBsim::set_Gamma_vert_rad( double gamma) {
625     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Gamma_vert_rad: " << gamma );
626     
627     update_ic();
628     if( !(fabs(gamma) < 0.01 && fabs(fgic->GetClimbRateFpsIC()) > 1) ) {
629       fgic->SetFlightPathAngleRadIC(gamma);
630     }  
631     needTrim=true;
632 }
633
634 void FGJSBsim::set_Static_pressure(double p) {
635     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Static_pressure: " << p );
636     
637     update_ic();
638     Atmosphere->SetExPressure(p);
639     if(Atmosphere->External() == true)
640       needTrim=true;
641 }
642
643 void FGJSBsim::set_Static_temperature(double T) {
644     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Static_temperature: " << T );
645     
646     Atmosphere->SetExTemperature(T);
647     if(Atmosphere->External() == true)
648       needTrim=true;
649 }
650  
651
652 void FGJSBsim::set_Density(double rho) {
653     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Density: " << rho );
654     
655     Atmosphere->SetExDensity(rho);
656     if(Atmosphere->External() == true)
657       needTrim=true;
658 }
659   
660 void FGJSBsim::set_Velocities_Local_Airmass (double wnorth, 
661                          double weast, 
662                          double wdown ) {
663     SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Velocities_Local_Airmass: " 
664        << wnorth << ", " << weast << ", " << wdown );
665     
666     _set_Velocities_Local_Airmass( wnorth, weast, wdown );
667     fgic->SetWindNEDFpsIC( wnorth, weast, wdown );
668     if(Atmosphere->External() == true)
669         needTrim=true;
670 }     
671
672 void FGJSBsim::init_gear(void ) {
673     
674     FGGroundReactions* gr=fdmex->GetGroundReactions();
675     int Ngear=GroundReactions->GetNumGearUnits();
676     for (int i=0;i<Ngear;i++) {
677       SGPropertyNode * node = fgGetNode("gear/gear", i, true);
678       node->setDoubleValue("xoffset-in",
679                            gr->GetGearUnit(i)->GetBodyLocation()(1));
680       node->setDoubleValue("yoffset-in",
681                            gr->GetGearUnit(i)->GetBodyLocation()(2));
682       node->setDoubleValue("zoffset-in",
683                            gr->GetGearUnit(i)->GetBodyLocation()(3));
684       node->setBoolValue("wow", gr->GetGearUnit(i)->GetWOW());
685       node->setBoolValue("has-brake", gr->GetGearUnit(i)->GetBrakeGroup() > 0);
686       node->setDoubleValue("position", FCS->GetGearPos());
687     }  
688 }
689
690 void FGJSBsim::update_gear(void) {
691     
692     FGGroundReactions* gr=fdmex->GetGroundReactions();
693     int Ngear=GroundReactions->GetNumGearUnits();
694     for (int i=0;i<Ngear;i++) {
695       SGPropertyNode * node = fgGetNode("gear/gear", i, true);
696       node->getChild("wow", 0, true)
697         ->setBoolValue(gr->GetGearUnit(i)->GetWOW());
698       node->getChild("position", 0, true)
699         ->setDoubleValue(FCS->GetGearPos());
700     }  
701 }
702
703 void FGJSBsim::do_trim(void) {
704
705         FGTrim *fgtrim;
706         if(fgic->GetVcalibratedKtsIC() < 10 ) {
707             fgic->SetVcalibratedKtsIC(0.0);
708             fgtrim=new FGTrim(fdmex,fgic,tGround);
709         } else {
710             fgtrim=new FGTrim(fdmex,fgic,tLongitudinal);
711         }
712         if( !fgtrim->DoTrim() ) {
713             fgtrim->Report();
714             fgtrim->TrimStats();
715         } else {
716             trimmed->setBoolValue(true);
717         }
718         State->ReportState();
719         delete fgtrim;
720         pitch_trim->setDoubleValue( FCS->GetPitchTrimCmd() );
721         throttle_trim->setDoubleValue( FCS->GetThrottleCmd(0) );
722         aileron_trim->setDoubleValue( FCS->GetDaCmd() );
723         rudder_trim->setDoubleValue( FCS->GetDrCmd() );
724
725         globals->get_controls()->set_elevator_trim(FCS->GetPitchTrimCmd());
726         globals->get_controls()->set_elevator(FCS->GetDeCmd());
727         globals->get_controls()->set_throttle(FGControls::ALL_ENGINES,
728                                               FCS->GetThrottleCmd(0));
729
730         globals->get_controls()->set_aileron(FCS->GetDaCmd());
731         globals->get_controls()->set_rudder( FCS->GetDrCmd());
732     
733         SG_LOG( SG_FLIGHT, SG_INFO, "  Trim complete" );
734 }          
735
736 void FGJSBsim::update_ic(void) {       
737    if( !needTrim ) {
738      fgic->SetLatitudeRadIC(get_Lat_geocentric() );       
739      fgic->SetLongitudeRadIC( get_Longitude() );       
740      fgic->SetAltitudeFtIC( get_Altitude() );       
741      fgic->SetVcalibratedKtsIC( get_V_calibrated_kts() );       
742      fgic->SetPitchAngleRadIC( get_Theta() );       
743      fgic->SetRollAngleRadIC( get_Phi() );       
744      fgic->SetTrueHeadingRadIC( get_Psi() );       
745      fgic->SetClimbRateFpsIC( get_Climb_Rate() );
746    }  
747 }