X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FFDM%2FJSBSim%2FJSBSim.cxx;h=e2d98b673d2fd2bf68b9c278eb2601b176ba7743;hb=e16f772e54216b0088ca9cb3f3b0fb062be8bfdb;hp=15daa8e22953ae67fbe69e106f4d254df3b738c1;hpb=b5c46a8d59120f18b0bc268af72ecb6d3a75b3e3;p=flightgear.git diff --git a/src/FDM/JSBSim/JSBSim.cxx b/src/FDM/JSBSim/JSBSim.cxx index 15daa8e22..e2d98b673 100644 --- a/src/FDM/JSBSim/JSBSim.cxx +++ b/src/FDM/JSBSim/JSBSim.cxx @@ -5,20 +5,20 @@ // Copyright (C) 1999 Curtis L. Olson - curt@flightgear.org // // This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License as +// modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 2 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. +// Lesser General Public License for more details. // -// You should have received a copy of the GNU General Public License +// You should have received a copy of the GNU Lesser General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // -// $Id$ +// $Id: JSBSim.cxx,v 1.64 2010/10/31 04:49:25 jberndt Exp $ #ifdef HAVE_CONFIG_H @@ -26,6 +26,7 @@ #endif #include +#include #include // size_t #include @@ -38,7 +39,6 @@ #include -#include #include #include
#include
@@ -46,7 +46,6 @@ #include "JSBSim.hxx" #include #include -#include #include #include #include @@ -59,6 +58,8 @@ #include #include #include +#include +#include #include #include #include @@ -97,14 +98,15 @@ public: /** Compute the altitude above ground. */ virtual double GetAGLevel(double t, const FGLocation& l, - FGLocation& cont, - FGColumnVector3& n, FGColumnVector3& v) const { + FGLocation& cont, FGColumnVector3& n, + FGColumnVector3& v, FGColumnVector3& w) const { double loc_cart[3] = { l(eX), l(eY), l(eZ) }; - double contact[3], normal[3], vel[3], agl = 0; + double contact[3], normal[3], vel[3], angularVel[3], agl = 0; mInterface->get_agl_ft(t, loc_cart, SG_METER_TO_FEET*2, contact, normal, - vel, &agl); - n = FGColumnVector3( -normal[0], -normal[1], -normal[2] ); + vel, angularVel, &agl); + n = FGColumnVector3( normal[0], normal[1], normal[2] ); v = FGColumnVector3( vel[0], vel[1], vel[2] ); + w = FGColumnVector3( angularVel[0], angularVel[1], angularVel[2] ); cont = FGColumnVector3( contact[0], contact[1], contact[2] ); return agl; } @@ -148,7 +150,6 @@ FGJSBsim::FGJSBsim( double dt ) // Register ground callback. fdmex->SetGroundCallback( new FGFSGroundCallback(this) ); - State = fdmex->GetState(); Atmosphere = fdmex->GetAtmosphere(); FCS = fdmex->GetFCS(); MassBalance = fdmex->GetMassBalance(); @@ -171,7 +172,13 @@ FGJSBsim::FGJSBsim( double dt ) SGPath systems_path( fgGetString("/sim/aircraft-dir") ); systems_path.append( "Systems" ); - State->Setdt( dt ); +// deprecate sim-time-sec for simulation/sim-time-sec +// remove alias with increased configuration file version number (2.1 or later) + SGPropertyNode * node = fgGetNode("/fdm/jsbsim/simulation/sim-time-sec"); + fgGetNode("/fdm/jsbsim/sim-time-sec", true)->alias( node ); +// end of sim-time-sec deprecation patch + + fdmex->Setdt( dt ); result = fdmex->LoadModel( aircraft_path.str(), engine_path.str(), @@ -206,15 +213,25 @@ FGJSBsim::FGJSBsim( double dt ) // Set initial fuel levels if provided. for (unsigned int i = 0; i < Propulsion->GetNumTanks(); i++) { + double d; SGPropertyNode * node = fgGetNode("/consumables/fuel/tank", i, true); - if (node->getChild("level-gal_us", 0, false) != 0) { - Propulsion->GetTank(i)->SetContents(node->getDoubleValue("level-gal_us") * 6.6); + FGTank* tank = Propulsion->GetTank(i); + + d = node->getNode( "density-ppg", true )->getDoubleValue(); + if( d > 0.0 ) { + tank->SetDensity( d ); } else { - node->setDoubleValue("level-lbs", Propulsion->GetTank(i)->GetContents()); - node->setDoubleValue("level-gal_us", Propulsion->GetTank(i)->GetContents() / 6.6); + node->getNode( "density-ppg", true )->setDoubleValue( SG_MAX2(tank->GetDensity(), 0.1) ); } - node->setDoubleValue("capacity-gal_us", - Propulsion->GetTank(i)->GetCapacity() / 6.6); + + d = node->getNode( "level-lbs", true )->getDoubleValue(); + if( d > 0.0 ) { + tank->SetContents( d ); + } else { + node->getNode( "level-lbs", true )->setDoubleValue( tank->GetContents() ); + } + /* Capacity is read-only in FGTank and can't be overwritten from FlightGear */ + node->getNode("capacity-gal_us", true )->setDoubleValue( tank->GetCapacityGallons() ); } Propulsion->SetFuelFreeze((fgGetNode("/sim/freeze/fuel",true))->getBoolValue()); @@ -284,6 +301,8 @@ FGJSBsim::FGJSBsim( double dt ) fgGetDouble("/fdm/jsbsim/systems/hook/tailhook-offset-x-in", 196), fgGetDouble("/fdm/jsbsim/systems/hook/tailhook-offset-y-in", 0), fgGetDouble("/fdm/jsbsim/systems/hook/tailhook-offset-z-in", -16)); + last_hook_tip[0] = 0; last_hook_tip[1] = 0; last_hook_tip[2] = 0; + last_hook_root[0] = 0; last_hook_root[1] = 0; last_hook_root[2] = 0; crashed = false; } @@ -301,8 +320,6 @@ FGJSBsim::~FGJSBsim(void) void FGJSBsim::init() { - double tmp; - SG_LOG( SG_FLIGHT, SG_INFO, "Starting and initializing JSBsim" ); // Explicitly call the superclass's @@ -333,6 +350,21 @@ void FGJSBsim::init() << ", " << fdmex->GetAtmosphere()->GetPressure() << ", " << fdmex->GetAtmosphere()->GetDensity() ); +// deprecate egt_degf for egt-degf to have consistent naming +// TODO: raise log-level to ALERT in summer 2010, +// remove alias in fall 2010, +// remove this code in winter 2010 + for (unsigned int i=0; i < Propulsion->GetNumEngines(); i++) { + SGPropertyNode * node = fgGetNode("engines/engine", i, true); + SGPropertyNode * egtn = node->getNode( "egt_degf" ); + if( egtn != NULL ) { + SG_LOG(SG_FLIGHT,SG_WARN, + "Aircraft uses deprecated node egt_degf. Please upgrade to egt-degf"); + node->getNode("egt-degf", true)->alias( egtn ); + } + } +// end of egt_degf deprecation patch + if (fgGetBool("/sim/presets/running")) { for (unsigned int i=0; i < Propulsion->GetNumEngines(); i++) { SGPropertyNode * node = fgGetNode("engines/engine", i, true); @@ -401,6 +433,14 @@ void FGJSBsim::init() /******************************************************************************/ +void FGJSBsim::unbind() +{ + fdmex->Unbind(); + FGInterface::unbind(); +} + +/******************************************************************************/ + // Run an iteration of the EOM (equations of motion) void FGJSBsim::update( double dt ) @@ -433,7 +473,7 @@ void FGJSBsim::update( double dt ) // ground in this area. double groundCacheRadius = acrad + 2*dt*Propagate->GetUVW().Magnitude(); double alt, slr, lat, lon; - FGColumnVector3 cart = Auxiliary->GetLocationVRP(); + FGLocation cart = Auxiliary->GetLocationVRP(); if ( needTrim && startup_trim->getBoolValue() ) { alt = fgic->GetAltitudeASLFtIC(); slr = fgic->GetSeaLevelRadiusFtIC(); @@ -442,7 +482,7 @@ void FGJSBsim::update( double dt ) cart = FGLocation(lon, lat, alt+slr); } double cart_pos[3] = { cart(1), cart(2), cart(3) }; - double t0 = State->Getsim_time(); + double t0 = fdmex->GetSimTime(); bool cache_ok = prepare_ground_cache_ft( t0, t0 + dt, cart_pos, groundCacheRadius ); if (!cache_ok) { @@ -469,9 +509,9 @@ void FGJSBsim::update( double dt ) if ( needTrim ) { if ( startup_trim->getBoolValue() ) { - double contact[3], d[3], agl; - get_agl_ft(State->Getsim_time(), cart_pos, SG_METER_TO_FEET*2, contact, - d, d, &agl); + double contact[3], d[3], vel[3], agl; + get_agl_ft(fdmex->GetSimTime(), cart_pos, SG_METER_TO_FEET*2, contact, + d, vel, d, &agl); double terrain_alt = sqrt(contact[0]*contact[0] + contact[1]*contact[1] + contact[2]*contact[2]) - fgic->GetSeaLevelRadiusFtIC(); @@ -479,6 +519,13 @@ void FGJSBsim::update( double dt ) "Ready to trim, terrain elevation is: " << terrain_alt * SG_METER_TO_FEET ); + if (fgGetBool("/sim/presets/onground")) { + FGColumnVector3 gndVelNED = cart.GetTec2l() + * FGColumnVector3(vel[0], vel[1], vel[2]); + fgic->SetVNorthFpsIC(gndVelNED(1)); + fgic->SetVEastFpsIC(gndVelNED(2)); + fgic->SetVDownFpsIC(gndVelNED(3)); + } fgic->SetTerrainElevationFtIC( terrain_alt ); do_trim(); } else { @@ -489,11 +536,11 @@ void FGJSBsim::update( double dt ) for ( i=0; i < multiloop; i++ ) { fdmex->Run(); - update_external_forces(State->Getsim_time() + i * State->Getdt()); + update_external_forces(fdmex->GetSimTime() + i * fdmex->GetDeltaT()); } FGJSBBase::Message* msg; - while (msg = fdmex->ProcessNextMessage()) { + while ((msg = fdmex->ProcessNextMessage()) != NULL) { // msg = fdmex->ProcessNextMessage(); switch (msg->type) { case FGJSBBase::Message::eText: @@ -523,6 +570,22 @@ void FGJSBsim::update( double dt ) /******************************************************************************/ +void FGJSBsim::suspend() +{ + fdmex->Hold(); + SGSubsystem::suspend(); +} + +/******************************************************************************/ + +void FGJSBsim::resume() +{ + fdmex->Resume(); + SGSubsystem::resume(); +} + +/******************************************************************************/ + // Convert from the FGInterface struct to the JSBsim generic_ struct bool FGJSBsim::copy_to_JSBsim() @@ -589,7 +652,7 @@ bool FGJSBsim::copy_to_JSBsim() } // end FGTurbine code block case FGEngine::etRocket: { // FGRocket code block - FGRocket* eng = (FGRocket*)Propulsion->GetEngine(i); +// FGRocket* eng = (FGRocket*)Propulsion->GetEngine(i); break; } // end FGRocket code block case FGEngine::etTurboprop: @@ -640,8 +703,13 @@ bool FGJSBsim::copy_to_JSBsim() for (i = 0; i < Propulsion->GetNumTanks(); i++) { SGPropertyNode * node = fgGetNode("/consumables/fuel/tank", i, true); FGTank * tank = Propulsion->GetTank(i); - tank->SetContents(node->getDoubleValue("level-gal_us") * 6.6); -// tank->SetContents(node->getDoubleValue("level-lbs")); + double fuelDensity = node->getDoubleValue("density-ppg"); + + if (fuelDensity < 0.1) + fuelDensity = 6.0; // Use average fuel value + + tank->SetDensity(fuelDensity); + tank->SetContents(node->getDoubleValue("level-lbs")); } Propulsion->SetFuelFreeze((fgGetNode("/sim/freeze/fuel",true))->getBoolValue()); @@ -725,7 +793,7 @@ bool FGJSBsim::copy_from_JSBsim() double loc_cart[3] = { l(FGJSBBase::eX), l(FGJSBBase::eY), l(FGJSBBase::eZ) }; double contact[3], d[3], sd, t; is_valid_m(&t, d, &sd); - get_agl_ft(t, loc_cart, SG_METER_TO_FEET*2, contact, d, d, &sd); + get_agl_ft(t, loc_cart, SG_METER_TO_FEET*2, contact, d, d, d, &sd); double rwrad = FGColumnVector3( contact[0], contact[1], contact[2] ).Magnitude(); _set_Runway_altitude( rwrad - get_Sea_level_radius() ); @@ -776,7 +844,7 @@ bool FGJSBsim::copy_from_JSBsim() break; case FGEngine::etRocket: { // FGRocket code block - FGRocket* eng = (FGRocket*)Propulsion->GetEngine(i); +// FGRocket* eng = (FGRocket*)Propulsion->GetEngine(i); } // end FGRocket code block break; case FGEngine::etTurbine: @@ -784,10 +852,10 @@ bool FGJSBsim::copy_from_JSBsim() FGTurbine* eng = (FGTurbine*)Propulsion->GetEngine(i); node->setDoubleValue("n1", eng->GetN1()); node->setDoubleValue("n2", eng->GetN2()); - node->setDoubleValue("egt_degf", 32 + eng->GetEGT()*9/5); + node->setDoubleValue("egt-degf", 32 + eng->GetEGT()*9/5); node->setBoolValue("augmentation", eng->GetAugmentation()); node->setBoolValue("water-injection", eng->GetInjection()); - node->setBoolValue("ignition", eng->GetIgnition()); + node->setBoolValue("ignition", eng->GetIgnition() != 0); node->setDoubleValue("nozzle-pos-norm", eng->GetNozzle()); node->setDoubleValue("inlet-pos-norm", eng->GetInlet()); node->setDoubleValue("oil-pressure-psi", eng->getOilPressure_psi()); @@ -806,7 +874,7 @@ bool FGJSBsim::copy_from_JSBsim() node->setDoubleValue("n1", eng->GetN1()); //node->setDoubleValue("n2", eng->GetN2()); node->setDoubleValue("itt_degf", 32 + eng->GetITT()*9/5); - node->setBoolValue("ignition", eng->GetIgnition()); + node->setBoolValue("ignition", eng->GetIgnition() != 0); node->setDoubleValue("nozzle-pos-norm", eng->GetNozzle()); node->setDoubleValue("inlet-pos-norm", eng->GetInlet()); node->setDoubleValue("oil-pressure-psi", eng->getOilPressure_psi()); @@ -814,7 +882,7 @@ bool FGJSBsim::copy_from_JSBsim() node->setBoolValue("cutoff", eng->GetCutoff()); node->setBoolValue("starting", eng->GetEngStarting()); node->setBoolValue("generator-power", eng->GetGeneratorPower()); - node->setBoolValue("damaged", eng->GetCondition()); + node->setBoolValue("damaged", eng->GetCondition() != 0); node->setBoolValue("ielu-intervent", eng->GetIeluIntervent()); node->setDoubleValue("oil-temperature-degf", eng->getOilTemp_degF()); // node->setBoolValue("onfire", eng->GetFire()); @@ -828,6 +896,8 @@ bool FGJSBsim::copy_from_JSBsim() node->setDoubleValue("rpm", eng->getRPM()); } // end FGElectric code block break; + case FGEngine::etUnknown: + break; } { // FGEngine code block @@ -844,7 +914,7 @@ bool FGJSBsim::copy_from_JSBsim() switch (thruster->GetType()) { case FGThruster::ttNozzle: { // FGNozzle code block - FGNozzle* noz = (FGNozzle*)thruster; +// FGNozzle* noz = (FGNozzle*)thruster; } // end FGNozzle code block break; case FGThruster::ttPropeller: @@ -858,7 +928,7 @@ bool FGJSBsim::copy_from_JSBsim() break; case FGThruster::ttRotor: { // FGRotor code block - FGRotor* rotor = (FGRotor*)thruster; +// FGRotor* rotor = (FGRotor*)thruster; } // end FGRotor code block break; case FGThruster::ttDirect: @@ -877,7 +947,12 @@ bool FGJSBsim::copy_from_JSBsim() FGTank* tank = Propulsion->GetTank(i); double contents = tank->GetContents(); double temp = tank->GetTemperature_degC(); - node->setDoubleValue("level-gal_us", contents/6.6); + double fuelDensity = tank->GetDensity(); + + if (fuelDensity < 0.1) + fuelDensity = 6.0; // Use average fuel value + + node->setDoubleValue("density-ppg" , fuelDensity); node->setDoubleValue("level-lbs", contents); if (temp != -9999.0) node->setDoubleValue("temperature_degC", temp); } @@ -899,7 +974,7 @@ bool FGJSBsim::copy_from_JSBsim() // force a sim crashed if crashed (altitude AGL < 0) if (get_Altitude_AGL() < -100.0) { - State->SuspendIntegration(); + fdmex->SuspendIntegration(); crashed = true; } @@ -952,7 +1027,9 @@ void FGJSBsim::set_Latitude(double lat) _set_Sea_level_radius( sea_level_radius_meters * SG_METER_TO_FEET ); fgic->SetSeaLevelRadiusFtIC( sea_level_radius_meters * SG_METER_TO_FEET ); fgic->SetLatitudeRadIC( lat_geoc ); - needTrim=true; + + if (!fdmex->Holding()) + needTrim=true; } @@ -965,7 +1042,9 @@ void FGJSBsim::set_Longitude(double lon) update_ic(); fgic->SetLongitudeRadIC( lon ); - needTrim=true; + + if (!fdmex->Holding()) + needTrim=true; } // Sets the altitude above sea level. @@ -987,10 +1066,12 @@ void FGJSBsim::set_Altitude(double alt) _set_Sea_level_radius( sea_level_radius_meters * SG_METER_TO_FEET ); fgic->SetSeaLevelRadiusFtIC( sea_level_radius_meters * SG_METER_TO_FEET ); SG_LOG(SG_FLIGHT, SG_INFO, - "Terrain elevation: " << cur_fdm_state->get_Runway_altitude() * SG_METER_TO_FEET ); + "Terrain elevation: " << FGInterface::get_Runway_altitude() * SG_METER_TO_FEET ); fgic->SetLatitudeRadIC( lat_geoc ); fgic->SetAltitudeASLFtIC(alt); - needTrim=true; + + if (!fdmex->Holding()) + needTrim=true; } void FGJSBsim::set_V_calibrated_kts(double vc) @@ -1002,7 +1083,9 @@ void FGJSBsim::set_V_calibrated_kts(double vc) update_ic(); fgic->SetVcalibratedKtsIC(vc); - needTrim=true; + + if (!fdmex->Holding()) + needTrim=true; } void FGJSBsim::set_Mach_number(double mach) @@ -1014,7 +1097,9 @@ void FGJSBsim::set_Mach_number(double mach) update_ic(); fgic->SetMachIC(mach); - needTrim=true; + + if (!fdmex->Holding()) + needTrim=true; } void FGJSBsim::set_Velocities_Local( double north, double east, double down ) @@ -1029,7 +1114,9 @@ void FGJSBsim::set_Velocities_Local( double north, double east, double down ) fgic->SetVNorthFpsIC(north); fgic->SetVEastFpsIC(east); fgic->SetVDownFpsIC(down); - needTrim=true; + + if (!fdmex->Holding()) + needTrim=true; } void FGJSBsim::set_Velocities_Wind_Body( double u, double v, double w) @@ -1044,7 +1131,9 @@ void FGJSBsim::set_Velocities_Wind_Body( double u, double v, double w) fgic->SetUBodyFpsIC(u); fgic->SetVBodyFpsIC(v); fgic->SetWBodyFpsIC(w); - needTrim=true; + + if (!fdmex->Holding()) + needTrim=true; } //Euler angles @@ -1060,7 +1149,9 @@ void FGJSBsim::set_Euler_Angles( double phi, double theta, double psi ) fgic->SetThetaRadIC(theta); fgic->SetPhiRadIC(phi); fgic->SetPsiRadIC(psi); - needTrim=true; + + if (!fdmex->Holding()) + needTrim=true; } //Flight Path @@ -1078,7 +1169,9 @@ void FGJSBsim::set_Climb_Rate( double roc) if( !(fabs(roc) > 1 && fabs(fgic->GetFlightPathAngleRadIC()) < 0.01) ) { fgic->SetClimbRateFpsIC(roc); } - needTrim=true; + + if (!fdmex->Holding()) + needTrim=true; } void FGJSBsim::set_Gamma_vert_rad( double gamma) @@ -1089,7 +1182,9 @@ void FGJSBsim::set_Gamma_vert_rad( double gamma) if( !(fabs(gamma) < 0.01 && fabs(fgic->GetClimbRateFpsIC()) > 1) ) { fgic->SetFlightPathAngleRadIC(gamma); } - needTrim=true; + + if (!fdmex->Holding()) + needTrim=true; } void FGJSBsim::init_gear(void ) @@ -1149,9 +1244,6 @@ void FGJSBsim::do_trim(void) } else { trimmed->setBoolValue(true); } -// if (FGJSBBase::debug_lvl > 0) -// State->ReportState(); - delete fgtrim; pitch_trim->setDoubleValue( FCS->GetPitchTrimCmd() ); @@ -1161,8 +1253,8 @@ void FGJSBsim::do_trim(void) globals->get_controls()->set_elevator_trim(FCS->GetPitchTrimCmd()); globals->get_controls()->set_elevator(FCS->GetDeCmd()); - globals->get_controls()->set_throttle(FGControls::ALL_ENGINES, - FCS->GetThrottleCmd(0)); + for( unsigned i = 0; i < Propulsion->GetNumEngines(); i++ ) + globals->get_controls()->set_throttle(i, FCS->GetThrottleCmd(i)); globals->get_controls()->set_aileron(FCS->GetDaCmd()); globals->get_controls()->set_rudder( FCS->GetDrCmd()); @@ -1187,9 +1279,8 @@ void FGJSBsim::update_ic(void) bool FGJSBsim::get_agl_ft(double t, const double pt[3], double alt_off, double contact[3], double normal[3], double vel[3], - double *agl) + double angularVel[3], double *agl) { - double angularVel[3]; const SGMaterial* material; simgear::BVHNode::Id id; if (!FGInterface::get_agl_ft(t, pt, alt_off, contact, normal, vel, @@ -1268,15 +1359,16 @@ void FGJSBsim::update_external_forces(double t_off) FGColumnVector3 hook_tip_body = hook_root_body; hook_tip_body(1) -= hook_length * cos_fi; hook_tip_body(3) += hook_length * sin_fi; - bool hook_tip_valid = true; double contact[3]; double ground_normal[3]; double ground_vel[3]; + double ground_angular_vel[3]; double root_agl_ft; if (!got_wire) { - bool got = get_agl_ft(t_off, hook_area[1], 0, contact, ground_normal, ground_vel, &root_agl_ft); + bool got = get_agl_ft(t_off, hook_area[1], 0, contact, ground_normal, + ground_vel, ground_angular_vel, &root_agl_ft); if (got && root_agl_ft > 0 && root_agl_ft < hook_length) { FGColumnVector3 ground_normal_body = Tl2b * (Tec2l * FGColumnVector3(ground_normal[0], ground_normal[1], ground_normal[2])); FGColumnVector3 contact_body = Tl2b * Location.LocationToLocal(FGColumnVector3(contact[0], contact[1], contact[2]));