1 // JSBsim.cxx -- interface to the JSBsim flight model
3 // Written by Curtis Olson, started February 1999.
5 // Copyright (C) 1999 Curtis L. Olson - curt@flightgear.org
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.
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.
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.
24 #include <simgear/compiler.h>
26 #ifdef SG_MATH_EXCEPTION_CLASH
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>
37 #include <FDM/flight.hxx>
39 #include <Aircraft/aircraft.hxx>
40 #include <Controls/controls.hxx>
41 #include <Main/globals.hxx>
42 #include <Main/fg_props.hxx>
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 <FDM/JSBSim/FGPropertyManager.h>
62 FMAX (double a, double b)
68 /******************************************************************************/
70 FGJSBsim::FGJSBsim( double dt )
75 fdmex = new FGFDMExec( (FGPropertyManager*)globals->get_props() );
77 State = fdmex->GetState();
78 Atmosphere = fdmex->GetAtmosphere();
79 FCS = fdmex->GetFCS();
80 MassBalance = fdmex->GetMassBalance();
81 Propulsion = fdmex->GetPropulsion();
82 Aircraft = fdmex->GetAircraft();
83 Translation = fdmex->GetTranslation();
84 Rotation = fdmex->GetRotation();
85 Position = fdmex->GetPosition();
86 Auxiliary = fdmex->GetAuxiliary();
87 Aerodynamics = fdmex->GetAerodynamics();
88 GroundReactions = fdmex->GetGroundReactions();
93 SGPath aircraft_path( globals->get_fg_root() );
94 aircraft_path.append( "Aircraft" );
96 SGPath engine_path( globals->get_fg_root() );
97 engine_path.append( "Engine" );
100 result = fdmex->LoadModel( aircraft_path.str(),
102 fgGetString("/sim/aero") );
105 SG_LOG( SG_FLIGHT, SG_INFO, " loaded aero.");
107 SG_LOG( SG_FLIGHT, SG_INFO,
108 " aero does not exist (you may have mis-typed the name).");
112 SG_LOG( SG_FLIGHT, SG_INFO, "" );
113 SG_LOG( SG_FLIGHT, SG_INFO, "" );
114 SG_LOG( SG_FLIGHT, SG_INFO, "After loading aero definition file ..." );
116 int Neng = Propulsion->GetNumEngines();
117 SG_LOG( SG_FLIGHT, SG_INFO, "num engines = " << Neng );
119 if ( GroundReactions->GetNumGearUnits() <= 0 ) {
120 SG_LOG( SG_FLIGHT, SG_ALERT, "num gear units = "
121 << GroundReactions->GetNumGearUnits() );
122 SG_LOG( SG_FLIGHT, SG_ALERT, "This is a very bad thing because with 0 gear units, the ground trimming");
123 SG_LOG( SG_FLIGHT, SG_ALERT, "routine (coming up later in the code) will core dump.");
124 SG_LOG( SG_FLIGHT, SG_ALERT, "Halting the sim now, and hoping a solution will present itself soon!");
131 // Set initial fuel levels if provided.
132 for (unsigned int i = 0; i < Propulsion->GetNumTanks(); i++) {
133 SGPropertyNode * node = fgGetNode("/consumables/fuel/tank", i, true);
134 if (node->getChild("level-gal_us", 0, false) != 0)
135 Propulsion->GetTank(i)
136 ->SetContents(node->getDoubleValue("level-gal_us") * 6.6);
139 fgSetDouble("/fdm/trim/pitch-trim", FCS->GetPitchTrimCmd());
140 fgSetDouble("/fdm/trim/throttle", FCS->GetThrottleCmd(0));
141 fgSetDouble("/fdm/trim/aileron", FCS->GetDaCmd());
142 fgSetDouble("/fdm/trim/rudder", FCS->GetDrCmd());
144 startup_trim = fgGetNode("/sim/presets/trim", true);
146 trimmed = fgGetNode("/fdm/trim/trimmed", true);
147 trimmed->setBoolValue(false);
149 pitch_trim = fgGetNode("/fdm/trim/pitch-trim", true );
150 throttle_trim = fgGetNode("/fdm/trim/throttle", true );
151 aileron_trim = fgGetNode("/fdm/trim/aileron", true );
152 rudder_trim = fgGetNode("/fdm/trim/rudder", true );
154 stall_warning = fgGetNode("/sim/alarms/stall-warning",true);
155 stall_warning->setDoubleValue(0);
158 flap_pos_pct=fgGetNode("/surface-positions/flap-pos-norm",true);
159 elevator_pos_pct=fgGetNode("/surface-positions/elevator-pos-norm",true);
161 =fgGetNode("/surface-positions/left-aileron-pos-norm",true);
162 right_aileron_pos_pct
163 =fgGetNode("/surface-positions/right-aileron-pos-norm",true);
164 rudder_pos_pct=fgGetNode("/surface-positions/rudder-pos-norm",true);
168 elevator_pos_pct->setDoubleValue(0);
169 left_aileron_pos_pct->setDoubleValue(0);
170 right_aileron_pos_pct->setDoubleValue(0);
171 rudder_pos_pct->setDoubleValue(0);
172 flap_pos_pct->setDoubleValue(0);
174 temperature = fgGetNode("/environment/temperature-degc",true);
175 pressure = fgGetNode("/environment/pressure-inhg",true);
176 density = fgGetNode("/environment/density-slugft3",true);
178 wind_from_north= fgGetNode("/environment/wind-from-north-fps",true);
179 wind_from_east = fgGetNode("/environment/wind-from-east-fps" ,true);
180 wind_from_down = fgGetNode("/environment/wind-from-down-fps" ,true);
184 /******************************************************************************/
185 FGJSBsim::~FGJSBsim(void) {
189 /******************************************************************************/
191 // Initialize the JSBsim flight model, dt is the time increment for
192 // each subsequent iteration through the EOM
194 void FGJSBsim::init() {
196 SG_LOG( SG_FLIGHT, SG_INFO, "Starting and initializing JSBsim" );
198 // Explicitly call the superclass's
199 // init method first.
202 Atmosphere->UseInternal();
204 if (fgGetBool("/environment/params/control-fdm-atmosphere")) {
205 Atmosphere->UseExternal();
206 Atmosphere->SetExTemperature(
207 9.0/5.0*(temperature->getDoubleValue()+273.15) );
208 Atmosphere->SetExPressure(pressure->getDoubleValue()*70.726566);
209 Atmosphere->SetExDensity(density->getDoubleValue());
211 Atmosphere->UseInternal();
215 fgic->SetVnorthFpsIC( wind_from_north->getDoubleValue() );
216 fgic->SetVeastFpsIC( wind_from_east->getDoubleValue() );
217 fgic->SetVdownFpsIC( wind_from_down->getDoubleValue() );
219 //Atmosphere->SetExTemperature(get_Static_temperature());
220 //Atmosphere->SetExPressure(get_Static_pressure());
221 //Atmosphere->SetExDensity(get_Density());
222 SG_LOG(SG_FLIGHT,SG_INFO,"T,p,rho: " << fdmex->GetAtmosphere()->GetTemperature()
223 << ", " << fdmex->GetAtmosphere()->GetPressure()
224 << ", " << fdmex->GetAtmosphere()->GetDensity() );
230 fdmex->RunIC(); //loop JSBSim once w/o integrating
231 copy_from_JSBsim(); //update the bus
233 SG_LOG( SG_FLIGHT, SG_INFO, " Initialized JSBSim with:" );
235 switch(fgic->GetSpeedSet()) {
237 SG_LOG(SG_FLIGHT,SG_INFO, " Vn,Ve,Vd= "
238 << Position->GetVn() << ", "
239 << Position->GetVe() << ", "
240 << Position->GetVd() << " ft/s");
243 SG_LOG(SG_FLIGHT,SG_INFO, " U,V,W= "
244 << Translation->GetUVW(1) << ", "
245 << Translation->GetUVW(2) << ", "
246 << Translation->GetUVW(3) << " ft/s");
249 SG_LOG(SG_FLIGHT,SG_INFO, " Mach: "
250 << Translation->GetMach() );
254 SG_LOG(SG_FLIGHT,SG_INFO, " Indicated Airspeed: "
255 << Auxiliary->GetVcalibratedKTS() << " knots" );
259 stall_warning->setDoubleValue(0);
261 SG_LOG( SG_FLIGHT, SG_INFO, " Bank Angle: "
262 << Rotation->Getphi()*RADTODEG << " deg" );
263 SG_LOG( SG_FLIGHT, SG_INFO, " Pitch Angle: "
264 << Rotation->Gettht()*RADTODEG << " deg" );
265 SG_LOG( SG_FLIGHT, SG_INFO, " True Heading: "
266 << Rotation->Getpsi()*RADTODEG << " deg" );
267 SG_LOG( SG_FLIGHT, SG_INFO, " Latitude: "
268 << Position->GetLatitude() << " deg" );
269 SG_LOG( SG_FLIGHT, SG_INFO, " Longitude: "
270 << Position->GetLongitude() << " deg" );
271 SG_LOG( SG_FLIGHT, SG_INFO, " Altitude: "
272 << Position->Geth() << " feet" );
273 SG_LOG( SG_FLIGHT, SG_INFO, " loaded initial conditions" );
275 SG_LOG( SG_FLIGHT, SG_INFO, " set dt" );
277 SG_LOG( SG_FLIGHT, SG_INFO, "Finished initializing JSBSim" );
279 SG_LOG( SG_FLIGHT, SG_INFO, "FGControls::get_gear_down()= " <<
280 globals->get_controls()->get_gear_down() );
286 /******************************************************************************/
288 // Run an iteration of the EOM (equations of motion)
291 FGJSBsim::update( double dt ) {
296 int multiloop = _calc_multiloop(dt);
300 // double save_alt = 0.0;
304 trimmed->setBoolValue(false);
307 if ( startup_trim->getBoolValue() ) {
308 SG_LOG(SG_FLIGHT, SG_INFO,
309 "Ready to trim, terrain altitude is: "
310 << cur_fdm_state->get_Runway_altitude() * SG_METER_TO_FEET );
311 fgic->SetTerrainAltitudeFtIC( cur_fdm_state->get_ground_elev_ft() );
314 fdmex->RunIC(); //apply any changes made through the set_ functions
319 for ( i=0; i < multiloop; i++ ) {
323 FGJSBBase::Message* msg;
324 while (fdmex->ReadMessage()) {
325 msg = fdmex->ProcessMessage();
327 case FGJSBBase::Message::eText:
328 SG_LOG( SG_FLIGHT, SG_INFO, msg->messageId << ": " << msg->text );
330 case FGJSBBase::Message::eBool:
331 SG_LOG( SG_FLIGHT, SG_INFO, msg->messageId << ": " << msg->text << " " << msg->bVal );
333 case FGJSBBase::Message::eInteger:
334 SG_LOG( SG_FLIGHT, SG_INFO, msg->messageId << ": " << msg->text << " " << msg->iVal );
336 case FGJSBBase::Message::eDouble:
337 SG_LOG( SG_FLIGHT, SG_INFO, msg->messageId << ": " << msg->text << " " << msg->dVal );
340 SG_LOG( SG_FLIGHT, SG_INFO, "Unrecognized message type." );
345 // translate JSBsim back to FG structure so that the
346 // autopilot (and the rest of the sim can use the updated values
350 /******************************************************************************/
352 // Convert from the FGInterface struct to the JSBsim generic_ struct
354 bool FGJSBsim::copy_to_JSBsim() {
357 // copy control positions into the JSBsim structure
359 FCS->SetDaCmd( globals->get_controls()->get_aileron());
360 FCS->SetRollTrimCmd( globals->get_controls()->get_aileron_trim() );
361 FCS->SetDeCmd( globals->get_controls()->get_elevator());
362 FCS->SetPitchTrimCmd( globals->get_controls()->get_elevator_trim() );
363 FCS->SetDrCmd( -globals->get_controls()->get_rudder() );
364 FCS->SetYawTrimCmd( -globals->get_controls()->get_rudder_trim() );
365 FCS->SetDfCmd( globals->get_controls()->get_flaps() );
366 FCS->SetDsbCmd( 0.0 ); //speedbrakes
367 FCS->SetDspCmd( 0.0 ); //spoilers
369 // Parking brake sets minimum braking
371 double parking_brake = globals->get_controls()->get_parking_brake();
372 FCS->SetLBrake(FMAX(globals->get_controls()->get_brake(0), parking_brake));
373 FCS->SetRBrake(FMAX(globals->get_controls()->get_brake(1), parking_brake));
374 FCS->SetCBrake( globals->get_controls()->get_brake( 2 ) );
376 FCS->SetGearCmd( globals->get_controls()->get_gear_down());
377 for (i = 0; i < Propulsion->GetNumEngines(); i++) {
378 FGEngine * eng = Propulsion->GetEngine(i);
379 SGPropertyNode * node = fgGetNode("engines/engine", i, true);
380 FCS->SetThrottleCmd(i, globals->get_controls()->get_throttle(i));
381 FCS->SetMixtureCmd(i, globals->get_controls()->get_mixture(i));
382 FCS->SetPropAdvanceCmd(i, globals->get_controls()->get_prop_advance(i));
383 Propulsion->GetThruster(i)->SetRPM(node->getDoubleValue("rpm"));
384 eng->SetMagnetos( globals->get_controls()->get_magnetos(i) );
385 eng->SetStarter( globals->get_controls()->get_starter(i) );
388 _set_Runway_altitude( cur_fdm_state->get_Runway_altitude() );
389 Position->SetSeaLevelRadius( get_Sea_level_radius() );
390 Position->SetRunwayRadius( get_Runway_altitude()
391 + get_Sea_level_radius() );
393 Atmosphere->SetExTemperature(
394 9.0/5.0*(temperature->getDoubleValue()+273.15) );
395 Atmosphere->SetExPressure(pressure->getDoubleValue()*70.726566);
396 Atmosphere->SetExDensity(density->getDoubleValue());
398 Atmosphere->SetWindNED( wind_from_north->getDoubleValue(),
399 wind_from_east->getDoubleValue(),
400 wind_from_down->getDoubleValue() );
401 // SG_LOG(SG_FLIGHT,SG_INFO, "Wind NED: "
402 // << get_V_north_airmass() << ", "
403 // << get_V_east_airmass() << ", "
404 // << get_V_down_airmass() );
406 for (i = 0; i < Propulsion->GetNumTanks(); i++) {
407 SGPropertyNode * node = fgGetNode("/consumables/fuel/tank", i, true);
408 FGTank * tank = Propulsion->GetTank(i);
409 tank->SetContents(node->getDoubleValue("level-gal_us") * 6.6);
410 // tank->SetContents(node->getDoubleValue("level-lb"));
416 /******************************************************************************/
418 // Convert from the JSBsim generic_ struct to the FGInterface struct
420 bool FGJSBsim::copy_from_JSBsim() {
423 _set_Inertias( MassBalance->GetMass(),
424 MassBalance->GetIxx(),
425 MassBalance->GetIyy(),
426 MassBalance->GetIzz(),
427 MassBalance->GetIxz() );
429 _set_CG_Position( MassBalance->GetXYZcg(1),
430 MassBalance->GetXYZcg(2),
431 MassBalance->GetXYZcg(3) );
433 _set_Accels_Body( Aircraft->GetBodyAccel()(1),
434 Aircraft->GetBodyAccel()(2),
435 Aircraft->GetBodyAccel()(3) );
437 //_set_Accels_CG_Body( Aircraft->GetBodyAccel()(1),
438 // Aircraft->GetBodyAccel()(2),
439 // Aircraft->GetBodyAccel()(3) );
441 _set_Accels_CG_Body_N ( Aircraft->GetNcg()(1),
442 Aircraft->GetNcg()(2),
443 Aircraft->GetNcg()(3) );
445 _set_Accels_Pilot_Body( Auxiliary->GetPilotAccel()(1),
446 Auxiliary->GetPilotAccel()(2),
447 Auxiliary->GetPilotAccel()(3) );
449 // _set_Accels_Pilot_Body_N( Auxiliary->GetPilotAccel()(1)/32.1739,
450 // Auxiliary->GetNpilot(2)/32.1739,
451 // Auxiliary->GetNpilot(3)/32.1739 );
453 _set_Nlf( Aircraft->GetNlf() );
457 _set_Velocities_Local( Position->GetVn(),
461 _set_Velocities_Wind_Body( Translation->GetUVW(1),
462 Translation->GetUVW(2),
463 Translation->GetUVW(3) );
465 _set_V_rel_wind( Translation->GetVt() );
467 _set_V_equiv_kts( Auxiliary->GetVequivalentKTS() );
469 // _set_V_calibrated( Auxiliary->GetVcalibratedFPS() );
471 _set_V_calibrated_kts( Auxiliary->GetVcalibratedKTS() );
473 _set_V_ground_speed( Position->GetVground() );
475 _set_Omega_Body( Rotation->GetPQR(1),
477 Rotation->GetPQR(3) );
479 _set_Euler_Rates( Rotation->GetEulerRates(1),
480 Rotation->GetEulerRates(2),
481 Rotation->GetEulerRates(3) );
483 _set_Geocentric_Rates(Position->GetLatitudeDot(),
484 Position->GetLongitudeDot(),
485 Position->Gethdot() );
487 _set_Mach_number( Translation->GetMach() );
490 _updateGeocentricPosition( Position->GetLatitude(),
491 Position->GetLongitude(),
494 _set_Altitude_AGL( Position->GetDistanceAGL() );
496 _set_Euler_Angles( Rotation->Getphi(),
498 Rotation->Getpsi() );
500 _set_Alpha( Translation->Getalpha() );
501 _set_Beta( Translation->Getbeta() );
504 _set_Gamma_vert_rad( Position->GetGamma() );
505 // set_Gamma_horiz_rad( Gamma_horiz_rad );
507 _set_Earth_position_angle( Auxiliary->GetEarthPositionAngle() );
509 _set_Climb_Rate( Position->Gethdot() );
512 for ( i = 1; i <= 3; i++ ) {
513 for ( j = 1; j <= 3; j++ ) {
514 _set_T_Local_to_Body( i, j, State->GetTl2b(i,j) );
518 // Copy the engine values from JSBSim.
519 for( i=0; i < Propulsion->GetNumEngines(); i++ ) {
520 SGPropertyNode * node = fgGetNode("engines/engine", i, true);
521 FGEngine * eng = Propulsion->GetEngine(i);
522 FGThruster * thrust = Propulsion->GetThruster(i);
524 node->setDoubleValue("mp-osi", eng->getManifoldPressure_inHg());
525 node->setDoubleValue("rpm", thrust->GetRPM());
526 node->setDoubleValue("egt-degf", eng->getExhaustGasTemp_degF());
527 node->setDoubleValue("fuel-flow-gph", eng->getFuelFlow_gph());
528 node->setDoubleValue("cht-degf", eng->getCylinderHeadTemp_degF());
529 node->setDoubleValue("oil-temperature-degf", eng->getOilTemp_degF());
530 node->setDoubleValue("oil-pressure-psi", eng->getOilPressure_psi());
531 node->setBoolValue("running", eng->GetRunning());
532 node->setBoolValue("cranking", eng->GetCranking());
535 static const SGPropertyNode *fuel_freeze
536 = fgGetNode("/sim/freeze/fuel");
538 // Copy the fuel levels from JSBSim if fuel
539 // freeze not enabled.
540 if ( ! fuel_freeze->getBoolValue() ) {
541 for (i = 0; i < Propulsion->GetNumTanks(); i++) {
542 SGPropertyNode * node
543 = fgGetNode("/consumables/fuel/tank", i, true);
544 double contents = Propulsion->GetTank(i)->GetContents();
545 node->setDoubleValue("level-gal_us", contents/6.6);
546 // node->setDoubleValue("level-lb", contents);
552 stall_warning->setDoubleValue( Aerodynamics->GetStallWarn() );
554 /* elevator_pos_deg->setDoubleValue( FCS->GetDePos()*SG_RADIANS_TO_DEGREES );
555 left_aileron_pos_deg->setDoubleValue( FCS->GetDaLPos()*SG_RADIANS_TO_DEGREES );
556 right_aileron_pos_deg->setDoubleValue( FCS->GetDaRPos()*SG_RADIANS_TO_DEGREES );
557 rudder_pos_deg->setDoubleValue( -1*FCS->GetDrPos()*SG_RADIANS_TO_DEGREES );
558 flap_pos_deg->setDoubleValue( FCS->GetDfPos() ); */
561 elevator_pos_pct->setDoubleValue( FCS->GetDePos(ofNorm) );
562 left_aileron_pos_pct->setDoubleValue( FCS->GetDaLPos(ofNorm) );
563 right_aileron_pos_pct->setDoubleValue( -1*FCS->GetDaLPos(ofNorm) );
564 rudder_pos_pct->setDoubleValue( -1*FCS->GetDrPos(ofNorm) );
565 flap_pos_pct->setDoubleValue( FCS->GetDfPos(ofNorm) );
571 bool FGJSBsim::ToggleDataLogging(void) {
572 return fdmex->GetOutput()->Toggle();
576 bool FGJSBsim::ToggleDataLogging(bool state) {
578 fdmex->GetOutput()->Enable();
581 fdmex->GetOutput()->Disable();
588 void FGJSBsim::set_Latitude(double lat) {
589 static const SGPropertyNode *altitude = fgGetNode("/position/altitude-ft");
591 double sea_level_radius_meters, lat_geoc;
593 if ( altitude->getDoubleValue() > -9990 ) {
594 alt = altitude->getDoubleValue();
600 SG_LOG(SG_FLIGHT,SG_INFO,"FGJSBsim::set_Latitude: " << lat );
601 SG_LOG(SG_FLIGHT,SG_INFO," cur alt (ft) = " << alt );
603 sgGeodToGeoc( lat, alt * SG_FEET_TO_METER,
604 &sea_level_radius_meters, &lat_geoc );
605 _set_Sea_level_radius( sea_level_radius_meters * SG_METER_TO_FEET );
606 fgic->SetSeaLevelRadiusFtIC( sea_level_radius_meters * SG_METER_TO_FEET );
607 _set_Runway_altitude( cur_fdm_state->get_Runway_altitude() );
608 fgic->SetTerrainAltitudeFtIC( cur_fdm_state->get_ground_elev_ft() );
609 fgic->SetLatitudeRadIC( lat_geoc );
613 void FGJSBsim::set_Longitude(double lon) {
615 SG_LOG(SG_FLIGHT,SG_INFO,"FGJSBsim::set_Longitude: " << lon );
617 fgic->SetLongitudeRadIC( lon );
618 _set_Runway_altitude( cur_fdm_state->get_Runway_altitude() );
619 fgic->SetTerrainAltitudeFtIC( cur_fdm_state->get_ground_elev_ft() );
623 void FGJSBsim::set_Altitude(double alt) {
624 static const SGPropertyNode *latitude = fgGetNode("/position/latitude-deg");
626 double sea_level_radius_meters,lat_geoc;
628 SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Altitude: " << alt );
629 SG_LOG(SG_FLIGHT,SG_INFO, " lat (deg) = " << latitude->getDoubleValue() );
632 sgGeodToGeoc( latitude->getDoubleValue() * SGD_DEGREES_TO_RADIANS, alt,
633 &sea_level_radius_meters, &lat_geoc);
634 _set_Sea_level_radius( sea_level_radius_meters * SG_METER_TO_FEET );
635 fgic->SetSeaLevelRadiusFtIC( sea_level_radius_meters * SG_METER_TO_FEET );
636 _set_Runway_altitude( cur_fdm_state->get_Runway_altitude() );
637 fgic->SetTerrainAltitudeFtIC( cur_fdm_state->get_ground_elev_ft() );
638 SG_LOG(SG_FLIGHT, SG_INFO,
639 "Terrain altitude: " << cur_fdm_state->get_Runway_altitude() * SG_METER_TO_FEET );
640 fgic->SetLatitudeRadIC( lat_geoc );
641 fgic->SetAltitudeFtIC(alt);
645 void FGJSBsim::set_V_calibrated_kts(double vc) {
646 SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_V_calibrated_kts: " << vc );
649 fgic->SetVcalibratedKtsIC(vc);
653 void FGJSBsim::set_Mach_number(double mach) {
654 SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Mach_number: " << mach );
657 fgic->SetMachIC(mach);
661 void FGJSBsim::set_Velocities_Local( double north, double east, double down ){
662 SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Velocities_Local: "
663 << north << ", " << east << ", " << down );
666 fgic->SetVnorthFpsIC(north);
667 fgic->SetVeastFpsIC(east);
668 fgic->SetVdownFpsIC(down);
672 void FGJSBsim::set_Velocities_Wind_Body( double u, double v, double w){
673 SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Velocities_Wind_Body: "
674 << u << ", " << v << ", " << w );
677 fgic->SetUBodyFpsIC(u);
678 fgic->SetVBodyFpsIC(v);
679 fgic->SetWBodyFpsIC(w);
684 void FGJSBsim::set_Euler_Angles( double phi, double theta, double psi ) {
685 SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Euler_Angles: "
686 << phi << ", " << theta << ", " << psi );
689 fgic->SetPitchAngleRadIC(theta);
690 fgic->SetRollAngleRadIC(phi);
691 fgic->SetTrueHeadingRadIC(psi);
696 void FGJSBsim::set_Climb_Rate( double roc) {
697 SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Climb_Rate: " << roc );
700 //since both climb rate and flight path angle are set in the FG
701 //startup sequence, something is needed to keep one from cancelling
703 if( !(fabs(roc) > 1 && fabs(fgic->GetFlightPathAngleRadIC()) < 0.01) ) {
704 fgic->SetClimbRateFpsIC(roc);
709 void FGJSBsim::set_Gamma_vert_rad( double gamma) {
710 SG_LOG(SG_FLIGHT,SG_INFO, "FGJSBsim::set_Gamma_vert_rad: " << gamma );
713 if( !(fabs(gamma) < 0.01 && fabs(fgic->GetClimbRateFpsIC()) > 1) ) {
714 fgic->SetFlightPathAngleRadIC(gamma);
719 void FGJSBsim::init_gear(void ) {
721 FGGroundReactions* gr=fdmex->GetGroundReactions();
722 int Ngear=GroundReactions->GetNumGearUnits();
723 for (int i=0;i<Ngear;i++) {
724 SGPropertyNode * node = fgGetNode("gear/gear", i, true);
725 node->setDoubleValue("xoffset-in",
726 gr->GetGearUnit(i)->GetBodyLocation()(1));
727 node->setDoubleValue("yoffset-in",
728 gr->GetGearUnit(i)->GetBodyLocation()(2));
729 node->setDoubleValue("zoffset-in",
730 gr->GetGearUnit(i)->GetBodyLocation()(3));
731 node->setBoolValue("wow", gr->GetGearUnit(i)->GetWOW());
732 node->setBoolValue("has-brake", gr->GetGearUnit(i)->GetBrakeGroup() > 0);
733 node->setDoubleValue("position-norm", FCS->GetGearPos());
737 void FGJSBsim::update_gear(void) {
739 FGGroundReactions* gr=fdmex->GetGroundReactions();
740 int Ngear=GroundReactions->GetNumGearUnits();
741 for (int i=0;i<Ngear;i++) {
742 SGPropertyNode * node = fgGetNode("gear/gear", i, true);
743 node->getChild("wow", 0, true)
744 ->setBoolValue(gr->GetGearUnit(i)->GetWOW());
745 node->getChild("position-norm", 0, true)
746 ->setDoubleValue(FCS->GetGearPos());
750 void FGJSBsim::do_trim(void) {
753 if( fgGetBool("/sim/presets/onground") ) {
754 fgic->SetVcalibratedKtsIC(0.0);
755 fgtrim=new FGTrim(fdmex,tGround);
757 fgtrim=new FGTrim(fdmex,tLongitudinal);
759 if( !fgtrim->DoTrim() ) {
763 trimmed->setBoolValue(true);
765 State->ReportState();
767 pitch_trim->setDoubleValue( FCS->GetPitchTrimCmd() );
768 throttle_trim->setDoubleValue( FCS->GetThrottleCmd(0) );
769 aileron_trim->setDoubleValue( FCS->GetDaCmd() );
770 rudder_trim->setDoubleValue( FCS->GetDrCmd() );
772 globals->get_controls()->set_elevator_trim(FCS->GetPitchTrimCmd());
773 globals->get_controls()->set_elevator(FCS->GetDeCmd());
774 globals->get_controls()->set_throttle(FGControls::ALL_ENGINES,
775 FCS->GetThrottleCmd(0));
777 globals->get_controls()->set_aileron(FCS->GetDaCmd());
778 globals->get_controls()->set_rudder( FCS->GetDrCmd());
780 SG_LOG( SG_FLIGHT, SG_INFO, " Trim complete" );
783 void FGJSBsim::update_ic(void) {
785 fgic->SetLatitudeRadIC(get_Lat_geocentric() );
786 fgic->SetLongitudeRadIC( get_Longitude() );
787 fgic->SetAltitudeFtIC( get_Altitude() );
788 fgic->SetVcalibratedKtsIC( get_V_calibrated_kts() );
789 fgic->SetPitchAngleRadIC( get_Theta() );
790 fgic->SetRollAngleRadIC( get_Phi() );
791 fgic->SetTrueHeadingRadIC( get_Psi() );
792 fgic->SetClimbRateFpsIC( get_Climb_Rate() );