2013-01-19 21:32:55 +00:00
|
|
|
|
2000-11-03 23:02:47 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
1999-02-05 21:26:01 +00:00
|
|
|
|
|
|
|
Module: FGFDMExec.cpp
|
|
|
|
Author: Jon S. Berndt
|
|
|
|
Date started: 11/17/98
|
|
|
|
Purpose: Schedules and runs the model routines.
|
|
|
|
|
2009-08-30 08:22:03 +00:00
|
|
|
------------- Copyright (C) 1999 Jon S. Berndt (jon@jsbsim.org) -------------
|
1999-02-05 21:26:01 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
2007-01-15 12:48:54 +00:00
|
|
|
the terms of the GNU Lesser General Public License as published by the Free Software
|
1999-02-05 21:26:01 +00:00
|
|
|
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
|
2007-01-15 12:48:54 +00:00
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
1999-02-05 21:26:01 +00:00
|
|
|
details.
|
|
|
|
|
2007-01-15 12:48:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along with
|
1999-02-05 21:26:01 +00:00
|
|
|
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
|
|
Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
2007-01-15 12:48:54 +00:00
|
|
|
Further information about the GNU Lesser General Public License can also be found on
|
1999-02-05 21:26:01 +00:00
|
|
|
the world wide web at http://www.gnu.org.
|
|
|
|
|
|
|
|
FUNCTIONAL DESCRIPTION
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
This class wraps up the simulation scheduling routines.
|
|
|
|
|
|
|
|
HISTORY
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
11/17/98 JSB Created
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
COMMENTS, REFERENCES, and NOTES
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2000-11-03 23:02:47 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
1999-02-05 21:26:01 +00:00
|
|
|
INCLUDES
|
2000-11-03 23:02:47 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
1999-02-05 21:26:01 +00:00
|
|
|
|
2011-09-11 09:42:21 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <iterator>
|
|
|
|
#include <cstdlib>
|
|
|
|
|
1999-02-11 21:05:34 +00:00
|
|
|
#include "FGFDMExec.h"
|
2011-09-11 09:42:21 +00:00
|
|
|
#include "models/atmosphere/FGStandardAtmosphere.h"
|
|
|
|
#include "models/atmosphere/FGWinds.h"
|
2009-10-12 07:24:41 +00:00
|
|
|
#include "models/FGFCS.h"
|
|
|
|
#include "models/FGPropulsion.h"
|
|
|
|
#include "models/FGMassBalance.h"
|
|
|
|
#include "models/FGGroundReactions.h"
|
|
|
|
#include "models/FGExternalReactions.h"
|
|
|
|
#include "models/FGBuoyantForces.h"
|
|
|
|
#include "models/FGAerodynamics.h"
|
|
|
|
#include "models/FGInertial.h"
|
|
|
|
#include "models/FGAircraft.h"
|
2011-09-11 09:42:21 +00:00
|
|
|
#include "models/FGAccelerations.h"
|
2009-10-12 07:24:41 +00:00
|
|
|
#include "models/FGPropagate.h"
|
|
|
|
#include "models/FGAuxiliary.h"
|
|
|
|
#include "models/FGInput.h"
|
|
|
|
#include "models/FGOutput.h"
|
|
|
|
#include "initialization/FGInitialCondition.h"
|
2013-01-19 21:32:55 +00:00
|
|
|
#include "initialization/FGSimplexTrim.h"
|
2013-06-11 20:06:35 +00:00
|
|
|
#include "initialization/FGLinearization.h"
|
2009-10-12 07:24:41 +00:00
|
|
|
#include "input_output/FGPropertyManager.h"
|
|
|
|
#include "input_output/FGScript.h"
|
2013-11-24 19:12:17 +00:00
|
|
|
#include "input_output/FGXMLFileRead.h"
|
|
|
|
#include "input_output/FGXMLElement.h"
|
1999-02-11 21:05:34 +00:00
|
|
|
|
2009-10-26 13:29:58 +00:00
|
|
|
using namespace std;
|
2008-07-22 08:49:15 +00:00
|
|
|
|
2003-01-24 12:55:28 +00:00
|
|
|
namespace JSBSim {
|
|
|
|
|
2014-01-18 09:56:15 +00:00
|
|
|
IDENT(IdSrc,"$Id: FGFDMExec.cpp,v 1.154 2014/01/13 10:45:59 ehofman Exp $");
|
|
|
|
IDENT(IdHdr,ID_FDMEXEC);
|
2000-10-14 02:10:10 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
CLASS IMPLEMENTATION
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
1999-02-05 21:26:01 +00:00
|
|
|
|
2003-03-23 15:12:35 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2010-11-28 09:58:47 +00:00
|
|
|
// Constructor
|
2010-10-26 07:48:56 +00:00
|
|
|
|
2010-11-28 09:58:47 +00:00
|
|
|
FGFDMExec::FGFDMExec(FGPropertyManager* root, unsigned int* fdmctr) : Root(root), FDMctr(fdmctr)
|
2010-10-26 07:48:56 +00:00
|
|
|
{
|
2001-10-05 20:19:59 +00:00
|
|
|
Frame = 0;
|
|
|
|
Error = 0;
|
2011-11-25 12:38:08 +00:00
|
|
|
SetGroundCallback(new FGDefaultGroundCallback());
|
2002-09-22 15:31:09 +00:00
|
|
|
IC = 0;
|
|
|
|
Trim = 0;
|
2007-01-15 12:48:54 +00:00
|
|
|
Script = 0;
|
1999-02-11 21:05:34 +00:00
|
|
|
|
2010-07-16 09:05:59 +00:00
|
|
|
RootDir = "";
|
|
|
|
|
2000-10-12 01:06:31 +00:00
|
|
|
modelLoaded = false;
|
2009-06-01 08:52:34 +00:00
|
|
|
IsChild = false;
|
2006-01-12 15:04:22 +00:00
|
|
|
holding = false;
|
2007-06-03 09:37:02 +00:00
|
|
|
Terminate = false;
|
2010-11-28 09:58:47 +00:00
|
|
|
StandAlone = false;
|
2014-01-18 09:56:15 +00:00
|
|
|
ResetMode = 0;
|
2006-01-12 15:04:22 +00:00
|
|
|
|
2012-05-30 06:39:04 +00:00
|
|
|
IncrementThenHolding = false; // increment then hold is off by default
|
|
|
|
TimeStepsUntilHold = -1;
|
|
|
|
|
2010-07-16 09:05:59 +00:00
|
|
|
sim_time = 0.0;
|
|
|
|
dT = 1.0/120.0; // a default timestep size. This is needed for when JSBSim is
|
|
|
|
// run in standalone mode with no initialization file.
|
|
|
|
|
2011-04-11 08:06:57 +00:00
|
|
|
AircraftPath = "aircraft";
|
|
|
|
EnginePath = "engine";
|
|
|
|
SystemsPath = "systems";
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
try {
|
|
|
|
char* num = getenv("JSBSIM_DEBUG");
|
2003-11-24 17:59:41 +00:00
|
|
|
if (num) debug_lvl = atoi(num); // set debug level
|
2010-10-26 07:48:56 +00:00
|
|
|
} catch (...) { // if error set to 1
|
2001-03-30 01:04:50 +00:00
|
|
|
debug_lvl = 1;
|
|
|
|
}
|
|
|
|
|
2010-10-26 07:48:56 +00:00
|
|
|
if (Root == 0) { // Then this is the root FDM
|
|
|
|
Root = new FGPropertyManager; // Create the property manager
|
2010-11-28 09:58:47 +00:00
|
|
|
StandAlone = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FDMctr == 0) {
|
2010-10-26 07:48:56 +00:00
|
|
|
FDMctr = new unsigned int; // Create and initialize the child FDM counter
|
|
|
|
(*FDMctr) = 0;
|
2008-07-10 17:23:02 +00:00
|
|
|
}
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2010-10-26 07:48:56 +00:00
|
|
|
// Store this FDM's ID
|
|
|
|
IdFDM = (*FDMctr); // The main (parent) JSBSim instance is always the "zeroth"
|
2012-05-30 06:39:04 +00:00
|
|
|
|
2010-10-26 07:48:56 +00:00
|
|
|
// Prepare FDMctr for the next child FDM id
|
|
|
|
(*FDMctr)++; // instance. "child" instances are loaded last.
|
|
|
|
|
2013-06-11 20:06:35 +00:00
|
|
|
FGPropertyNode* instanceRoot = Root->GetNode("/fdm/jsbsim",IdFDM,true);
|
|
|
|
instance = new FGPropertyManager(instanceRoot);
|
2002-03-20 12:45:02 +00:00
|
|
|
Debug(0);
|
2006-01-12 15:04:22 +00:00
|
|
|
// this is to catch errors in binding member functions to the property tree.
|
2002-03-20 12:45:02 +00:00
|
|
|
try {
|
|
|
|
Allocate();
|
|
|
|
} catch ( string msg ) {
|
|
|
|
cout << "Caught error: " << msg << endl;
|
|
|
|
exit(1);
|
2004-06-14 11:40:45 +00:00
|
|
|
}
|
2006-01-12 15:04:22 +00:00
|
|
|
|
2008-07-10 17:23:02 +00:00
|
|
|
trim_status = false;
|
|
|
|
ta_mode = 99;
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
Constructing = true;
|
|
|
|
typedef int (FGFDMExec::*iPMF)(void) const;
|
2014-01-18 09:56:15 +00:00
|
|
|
// typedef double (FGFDMExec::*dPMF)(void) const;
|
2012-05-30 06:39:04 +00:00
|
|
|
// typedef unsigned int (FGFDMExec::*uiPMF)(void) const;
|
2011-04-11 08:06:57 +00:00
|
|
|
// instance->Tie("simulation/do_trim_analysis", this, (iPMF)0, &FGFDMExec::DoTrimAnalysis, false);
|
|
|
|
instance->Tie("simulation/do_simple_trim", this, (iPMF)0, &FGFDMExec::DoTrim, false);
|
2013-01-19 21:32:55 +00:00
|
|
|
instance->Tie("simulation/do_simplex_trim", this, (iPMF)0, &FGFDMExec::DoSimplexTrim);
|
2013-06-11 20:06:35 +00:00
|
|
|
instance->Tie("simulation/do_linearization", this, (iPMF)0, &FGFDMExec::DoLinearization);
|
2014-01-18 09:56:15 +00:00
|
|
|
instance->Tie("simulation/reset", (int*)&ResetMode);
|
2012-05-30 06:39:04 +00:00
|
|
|
instance->Tie("simulation/randomseed", this, (iPMF)0, &FGFDMExec::SRand, false);
|
2007-06-03 09:37:02 +00:00
|
|
|
instance->Tie("simulation/terminate", (int *)&Terminate);
|
2010-07-16 09:05:59 +00:00
|
|
|
instance->Tie("simulation/sim-time-sec", this, &FGFDMExec::GetSimTime);
|
2013-11-24 19:12:17 +00:00
|
|
|
instance->Tie("simulation/dt", this, &FGFDMExec::GetDeltaT);
|
2010-07-16 09:05:59 +00:00
|
|
|
instance->Tie("simulation/jsbsim-debug", this, &FGFDMExec::GetDebugLevel, &FGFDMExec::SetDebugLevel);
|
2011-04-11 08:06:57 +00:00
|
|
|
instance->Tie("simulation/frame", (int *)&Frame, false);
|
2010-07-16 09:05:59 +00:00
|
|
|
|
2013-01-19 21:32:55 +00:00
|
|
|
// simplex trim properties
|
2013-06-11 20:06:35 +00:00
|
|
|
instanceRoot->SetDouble("trim/solver/rtol",0.0001);
|
|
|
|
instanceRoot->SetDouble("trim/solver/speed",2);
|
|
|
|
instanceRoot->SetDouble("trim/solver/abstol",0.001);
|
|
|
|
instanceRoot->SetDouble("trim/solver/iterMax",2000);
|
|
|
|
instanceRoot->SetInt("trim/solver/debugLevel",0);
|
|
|
|
instanceRoot->SetDouble("trim/solver/random",0);
|
|
|
|
instanceRoot->SetBool("trim/solver/showSimplex",false);
|
|
|
|
instanceRoot->SetBool("trim/solver/showConvergence",false);
|
|
|
|
instanceRoot->SetBool("trim/solver/pause",false);
|
|
|
|
instanceRoot->SetBool("trim/solver/variablePropPitch",false);
|
|
|
|
|
|
|
|
instanceRoot->SetDouble("trim/solver/throttleGuess",0.50);
|
|
|
|
instanceRoot->SetDouble("trim/solver/throttleMin",0.0);
|
|
|
|
instanceRoot->SetDouble("trim/solver/throttleMax",1.0);
|
|
|
|
instanceRoot->SetDouble("trim/solver/throttleStep",0.1);
|
|
|
|
|
|
|
|
instanceRoot->SetDouble("trim/solver/aileronGuess",0);
|
|
|
|
instanceRoot->SetDouble("trim/solver/aileronMin",-1.00);
|
|
|
|
instanceRoot->SetDouble("trim/solver/aileronMax",1.00);
|
|
|
|
instanceRoot->SetDouble("trim/solver/aileronStep",0.1);
|
|
|
|
|
|
|
|
instanceRoot->SetDouble("trim/solver/rudderGuess",0);
|
|
|
|
instanceRoot->SetDouble("trim/solver/rudderMin",-1.00);
|
|
|
|
instanceRoot->SetDouble("trim/solver/rudderMax",1.00);
|
|
|
|
instanceRoot->SetDouble("trim/solver/rudderStep",0.1);
|
|
|
|
|
|
|
|
instanceRoot->SetDouble("trim/solver/elevatorGuess",-0.1);
|
|
|
|
instanceRoot->SetDouble("trim/solver/elevatorMin",-1.0);
|
|
|
|
instanceRoot->SetDouble("trim/solver/elevatorMax",1.0);
|
|
|
|
instanceRoot->SetDouble("trim/solver/elevatorStep",0.1);
|
|
|
|
|
|
|
|
instanceRoot->SetDouble("trim/solver/alphaGuess",0.05);
|
|
|
|
instanceRoot->SetDouble("trim/solver/alphaMin",-0.1);
|
|
|
|
instanceRoot->SetDouble("trim/solver/alphaMax",.18);
|
|
|
|
instanceRoot->SetDouble("trim/solver/alphaStep",0.05);
|
|
|
|
|
|
|
|
instanceRoot->SetDouble("trim/solver/betaGuess",0);
|
|
|
|
instanceRoot->SetDouble("trim/solver/betaMin",-0.1);
|
|
|
|
instanceRoot->SetDouble("trim/solver/betaMax",0.1);
|
|
|
|
instanceRoot->SetDouble("trim/solver/betaStep",0.0001);
|
2013-01-19 21:32:55 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
Constructing = false;
|
2000-10-10 17:44:35 +00:00
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
1999-02-11 21:05:34 +00:00
|
|
|
|
2001-12-13 04:48:34 +00:00
|
|
|
FGFDMExec::~FGFDMExec()
|
|
|
|
{
|
2002-03-20 12:45:02 +00:00
|
|
|
try {
|
2011-02-06 14:16:58 +00:00
|
|
|
Unbind();
|
2008-07-10 17:23:02 +00:00
|
|
|
DeAllocate();
|
2012-05-30 06:39:04 +00:00
|
|
|
|
2013-06-11 20:06:35 +00:00
|
|
|
delete instance;
|
|
|
|
|
2010-11-28 09:58:47 +00:00
|
|
|
if (IdFDM == 0) { // Meaning this is no child FDM
|
2010-10-26 07:48:56 +00:00
|
|
|
if(Root != 0) {
|
2010-11-28 09:58:47 +00:00
|
|
|
if(StandAlone)
|
2010-10-29 07:00:31 +00:00
|
|
|
delete Root;
|
2010-10-26 07:48:56 +00:00
|
|
|
Root = 0;
|
|
|
|
}
|
2010-11-28 09:58:47 +00:00
|
|
|
if(FDMctr != 0) {
|
2010-10-26 07:48:56 +00:00
|
|
|
delete FDMctr;
|
|
|
|
FDMctr = 0;
|
|
|
|
}
|
|
|
|
}
|
2002-03-20 12:45:02 +00:00
|
|
|
} catch ( string msg ) {
|
|
|
|
cout << "Caught error: " << msg << endl;
|
2004-06-14 11:40:45 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
for (unsigned int i=1; i<ChildFDMList.size(); i++) delete ChildFDMList[i]->exec;
|
|
|
|
ChildFDMList.clear();
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
PropertyCatalog.clear();
|
2007-01-15 12:48:54 +00:00
|
|
|
|
2011-09-11 09:42:21 +00:00
|
|
|
if (FDMctr > 0) (*FDMctr)--;
|
2009-06-26 13:27:40 +00:00
|
|
|
|
2001-12-13 04:48:34 +00:00
|
|
|
Debug(1);
|
2000-10-10 17:44:35 +00:00
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2001-12-13 04:48:34 +00:00
|
|
|
bool FGFDMExec::Allocate(void)
|
|
|
|
{
|
2000-10-10 17:44:35 +00:00
|
|
|
bool result=true;
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2011-09-11 09:42:21 +00:00
|
|
|
Models.resize(eNumStandardModels);
|
|
|
|
|
|
|
|
// See the eModels enum specification in the header file. The order of the enums
|
|
|
|
// specifies the order of execution. The Models[] vector is the primary
|
|
|
|
// storage array for the list of models.
|
|
|
|
Models[ePropagate] = new FGPropagate(this);
|
|
|
|
Models[eInput] = new FGInput(this);
|
|
|
|
Models[eInertial] = new FGInertial(this);
|
|
|
|
Models[eAtmosphere] = new FGStandardAtmosphere(this);
|
|
|
|
Models[eWinds] = new FGWinds(this);
|
|
|
|
Models[eAuxiliary] = new FGAuxiliary(this);
|
|
|
|
Models[eSystems] = new FGFCS(this);
|
|
|
|
Models[ePropulsion] = new FGPropulsion(this);
|
|
|
|
Models[eAerodynamics] = new FGAerodynamics (this);
|
|
|
|
Models[eGroundReactions] = new FGGroundReactions(this);
|
|
|
|
Models[eExternalReactions] = new FGExternalReactions(this);
|
|
|
|
Models[eBuoyantForces] = new FGBuoyantForces(this);
|
|
|
|
Models[eMassBalance] = new FGMassBalance(this);
|
|
|
|
Models[eAircraft] = new FGAircraft(this);
|
|
|
|
Models[eAccelerations] = new FGAccelerations(this);
|
2013-01-19 21:32:55 +00:00
|
|
|
Models[eOutput] = new FGOutput(this);
|
2011-09-11 09:42:21 +00:00
|
|
|
|
|
|
|
// Assign the Model shortcuts for internal executive use only.
|
|
|
|
Propagate = (FGPropagate*)Models[ePropagate];
|
|
|
|
Inertial = (FGInertial*)Models[eInertial];
|
|
|
|
Atmosphere = (FGAtmosphere*)Models[eAtmosphere];
|
|
|
|
Winds = (FGWinds*)Models[eWinds];
|
|
|
|
Auxiliary = (FGAuxiliary*)Models[eAuxiliary];
|
|
|
|
FCS = (FGFCS*)Models[eSystems];
|
|
|
|
Propulsion = (FGPropulsion*)Models[ePropulsion];
|
|
|
|
Aerodynamics = (FGAerodynamics*)Models[eAerodynamics];
|
|
|
|
GroundReactions = (FGGroundReactions*)Models[eGroundReactions];
|
|
|
|
ExternalReactions = (FGExternalReactions*)Models[eExternalReactions];
|
|
|
|
BuoyantForces = (FGBuoyantForces*)Models[eBuoyantForces];
|
|
|
|
MassBalance = (FGMassBalance*)Models[eMassBalance];
|
|
|
|
Aircraft = (FGAircraft*)Models[eAircraft];
|
|
|
|
Accelerations = (FGAccelerations*)Models[eAccelerations];
|
2013-01-19 21:32:55 +00:00
|
|
|
Output = (FGOutput*)Models[eOutput];
|
2011-09-11 09:42:21 +00:00
|
|
|
|
|
|
|
// Initialize planet (environment) constants
|
|
|
|
LoadPlanetConstants();
|
2013-01-19 21:32:55 +00:00
|
|
|
GetGroundCallback()->SetSeaLevelRadius(Inertial->GetRefRadius());
|
2011-09-11 09:42:21 +00:00
|
|
|
|
|
|
|
// Initialize models
|
|
|
|
for (unsigned int i = 0; i < Models.size(); i++) {
|
2013-01-19 21:32:55 +00:00
|
|
|
// The Output model must not be initialized prior to IC loading
|
|
|
|
if (i == eOutput) continue;
|
|
|
|
|
2011-09-11 09:42:21 +00:00
|
|
|
LoadInputs(i);
|
|
|
|
Models[i]->InitModel();
|
|
|
|
}
|
2009-11-27 08:54:33 +00:00
|
|
|
|
|
|
|
IC = new FGInitialCondition(this);
|
|
|
|
|
2000-10-12 01:06:31 +00:00
|
|
|
modelLoaded = false;
|
1999-02-05 21:26:01 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
return result;
|
1999-02-05 21:26:01 +00:00
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2003-03-23 15:12:35 +00:00
|
|
|
bool FGFDMExec::DeAllocate(void)
|
|
|
|
{
|
2011-09-11 09:42:21 +00:00
|
|
|
|
|
|
|
for (unsigned int i=0; i<eNumStandardModels; i++) delete Models[i];
|
|
|
|
Models.clear();
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2011-09-11 09:42:21 +00:00
|
|
|
delete Script;
|
2002-09-22 15:31:09 +00:00
|
|
|
delete IC;
|
|
|
|
delete Trim;
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2000-10-12 01:06:31 +00:00
|
|
|
Error = 0;
|
|
|
|
|
|
|
|
modelLoaded = false;
|
2001-03-30 01:04:50 +00:00
|
|
|
return modelLoaded;
|
1999-02-05 21:26:01 +00:00
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
1999-02-05 21:26:01 +00:00
|
|
|
|
2009-11-27 08:54:33 +00:00
|
|
|
void FGFDMExec::Schedule(FGModel* model, int rate)
|
1999-02-05 21:26:01 +00:00
|
|
|
{
|
2009-11-27 08:54:33 +00:00
|
|
|
model->SetRate(rate);
|
|
|
|
Models.push_back(model);
|
1999-02-05 21:26:01 +00:00
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
1999-02-05 21:26:01 +00:00
|
|
|
|
|
|
|
bool FGFDMExec::Run(void)
|
|
|
|
{
|
2008-07-10 17:23:02 +00:00
|
|
|
bool success=true;
|
1999-02-05 21:26:01 +00:00
|
|
|
|
2001-12-13 04:48:34 +00:00
|
|
|
Debug(2);
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
for (unsigned int i=1; i<ChildFDMList.size(); i++) {
|
2011-09-11 09:42:21 +00:00
|
|
|
ChildFDMList[i]->AssignState( (FGPropagate*)Models[ePropagate] ); // Transfer state to the child FDM
|
2009-06-01 08:52:34 +00:00
|
|
|
ChildFDMList[i]->Run();
|
2002-03-23 00:29:21 +00:00
|
|
|
}
|
|
|
|
|
2011-10-30 12:30:57 +00:00
|
|
|
IncrTime();
|
|
|
|
|
2009-11-27 08:54:33 +00:00
|
|
|
// returns true if success, false if complete
|
2010-07-16 09:05:59 +00:00
|
|
|
if (Script != 0 && !IntegrationSuspended()) success = Script->RunScript();
|
2008-07-10 17:23:02 +00:00
|
|
|
|
2011-09-11 09:42:21 +00:00
|
|
|
for (unsigned int i = 0; i < Models.size(); i++) {
|
|
|
|
LoadInputs(i);
|
|
|
|
Models[i]->Run(holding);
|
|
|
|
}
|
|
|
|
|
2014-01-18 09:56:15 +00:00
|
|
|
if (ResetMode) {
|
|
|
|
if (ResetMode == 1) Output->SetStartNewOutput();
|
|
|
|
|
|
|
|
ResetMode = 0;
|
|
|
|
ResetToInitialConditions();
|
|
|
|
}
|
|
|
|
|
2007-06-03 09:37:02 +00:00
|
|
|
if (Terminate) success = false;
|
2008-07-10 17:23:02 +00:00
|
|
|
|
2014-01-18 09:56:15 +00:00
|
|
|
return success;
|
1999-02-05 21:26:01 +00:00
|
|
|
}
|
|
|
|
|
2011-09-11 09:42:21 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGFDMExec::LoadInputs(unsigned int idx)
|
|
|
|
{
|
|
|
|
switch(idx) {
|
|
|
|
case ePropagate:
|
|
|
|
Propagate->in.vPQRidot = Accelerations->GetPQRidot();
|
|
|
|
Propagate->in.vQtrndot = Accelerations->GetQuaterniondot();
|
|
|
|
Propagate->in.vUVWidot = Accelerations->GetUVWidot();
|
|
|
|
Propagate->in.DeltaT = dT;
|
|
|
|
break;
|
|
|
|
case eInput:
|
|
|
|
break;
|
|
|
|
case eInertial:
|
|
|
|
Inertial->in.Radius = Propagate->GetRadius();
|
|
|
|
Inertial->in.Latitude = Propagate->GetLatitude();
|
|
|
|
break;
|
|
|
|
case eAtmosphere:
|
|
|
|
Atmosphere->in.altitudeASL = Propagate->GetAltitudeASL();
|
|
|
|
break;
|
|
|
|
case eWinds:
|
|
|
|
Winds->in.AltitudeASL = Propagate->GetAltitudeASL();
|
|
|
|
Winds->in.DistanceAGL = Propagate->GetDistanceAGL();
|
|
|
|
Winds->in.Tl2b = Propagate->GetTl2b();
|
|
|
|
Winds->in.Tw2b = Auxiliary->GetTw2b();
|
|
|
|
Winds->in.V = Auxiliary->GetVt();
|
|
|
|
Winds->in.totalDeltaT = dT * Winds->GetRate();
|
|
|
|
break;
|
|
|
|
case eAuxiliary:
|
|
|
|
Auxiliary->in.Pressure = Atmosphere->GetPressure();
|
|
|
|
Auxiliary->in.Density = Atmosphere->GetDensity();
|
|
|
|
Auxiliary->in.DensitySL = Atmosphere->GetDensitySL();
|
|
|
|
Auxiliary->in.PressureSL = Atmosphere->GetPressureSL();
|
|
|
|
Auxiliary->in.Temperature = Atmosphere->GetTemperature();
|
|
|
|
Auxiliary->in.SoundSpeed = Atmosphere->GetSoundSpeed();
|
|
|
|
Auxiliary->in.KinematicViscosity = Atmosphere->GetKinematicViscosity();
|
|
|
|
Auxiliary->in.DistanceAGL = Propagate->GetDistanceAGL();
|
|
|
|
Auxiliary->in.Mass = MassBalance->GetMass();
|
|
|
|
Auxiliary->in.Tl2b = Propagate->GetTl2b();
|
|
|
|
Auxiliary->in.Tb2l = Propagate->GetTb2l();
|
|
|
|
Auxiliary->in.vPQR = Propagate->GetPQR();
|
|
|
|
Auxiliary->in.vPQRdot = Accelerations->GetPQRdot();
|
|
|
|
Auxiliary->in.vUVW = Propagate->GetUVW();
|
|
|
|
Auxiliary->in.vUVWdot = Accelerations->GetUVWdot();
|
|
|
|
Auxiliary->in.vVel = Propagate->GetVel();
|
|
|
|
Auxiliary->in.vBodyAccel = Accelerations->GetBodyAccel();
|
|
|
|
Auxiliary->in.ToEyePt = MassBalance->StructuralToBody(Aircraft->GetXYZep());
|
|
|
|
Auxiliary->in.VRPBody = MassBalance->StructuralToBody(Aircraft->GetXYZvrp());
|
|
|
|
Auxiliary->in.RPBody = MassBalance->StructuralToBody(Aircraft->GetXYZrp());
|
|
|
|
Auxiliary->in.vFw = Aerodynamics->GetvFw();
|
|
|
|
Auxiliary->in.vLocation = Propagate->GetLocation();
|
|
|
|
Auxiliary->in.CosTht = Propagate->GetCosEuler(eTht);
|
|
|
|
Auxiliary->in.SinTht = Propagate->GetSinEuler(eTht);
|
|
|
|
Auxiliary->in.CosPhi = Propagate->GetCosEuler(ePhi);
|
|
|
|
Auxiliary->in.SinPhi = Propagate->GetSinEuler(ePhi);
|
|
|
|
Auxiliary->in.Psi = Propagate->GetEuler(ePsi);
|
|
|
|
Auxiliary->in.TotalWindNED = Winds->GetTotalWindNED();
|
|
|
|
Auxiliary->in.TurbPQR = Winds->GetTurbPQR();
|
|
|
|
Auxiliary->in.WindPsi = Winds->GetWindPsi();
|
|
|
|
Auxiliary->in.Vwind = Winds->GetTotalWindNED().Magnitude();
|
|
|
|
break;
|
|
|
|
case eSystems:
|
|
|
|
// Dynamic inputs come into the components that FCS manages through properties
|
|
|
|
break;
|
|
|
|
case ePropulsion:
|
|
|
|
Propulsion->in.SLPressure = Atmosphere->GetPressureSL();
|
|
|
|
Propulsion->in.Pressure = Atmosphere->GetPressure();
|
|
|
|
Propulsion->in.PressureRatio = Atmosphere->GetPressureRatio();
|
|
|
|
Propulsion->in.Temperature = Atmosphere->GetTemperature();
|
|
|
|
Propulsion->in.DensityRatio = Atmosphere->GetDensityRatio();
|
|
|
|
Propulsion->in.Density = Atmosphere->GetDensity();
|
|
|
|
Propulsion->in.Soundspeed = Atmosphere->GetSoundSpeed();
|
|
|
|
Propulsion->in.TotalPressure = Auxiliary->GetTotalPressure();
|
|
|
|
Propulsion->in.TotalTempearture = Auxiliary->GetTotalTemperature();
|
|
|
|
Propulsion->in.Vc = Auxiliary->GetVcalibratedKTS();
|
|
|
|
Propulsion->in.Vt = Auxiliary->GetVt();
|
|
|
|
Propulsion->in.qbar = Auxiliary->Getqbar();
|
|
|
|
Propulsion->in.TAT_c = Auxiliary->GetTAT_C();
|
|
|
|
Propulsion->in.AeroUVW = Auxiliary->GetAeroUVW();
|
|
|
|
Propulsion->in.AeroPQR = Auxiliary->GetAeroPQR();
|
|
|
|
Propulsion->in.alpha = Auxiliary->Getalpha();
|
|
|
|
Propulsion->in.beta = Auxiliary->Getbeta();
|
|
|
|
Propulsion->in.TotalDeltaT = dT * Propulsion->GetRate();
|
|
|
|
Propulsion->in.ThrottlePos = FCS->GetThrottlePos();
|
|
|
|
Propulsion->in.MixturePos = FCS->GetMixturePos();
|
|
|
|
Propulsion->in.ThrottleCmd = FCS->GetThrottleCmd();
|
|
|
|
Propulsion->in.MixtureCmd = FCS->GetMixtureCmd();
|
|
|
|
Propulsion->in.PropAdvance = FCS->GetPropAdvance();
|
|
|
|
Propulsion->in.PropFeather = FCS->GetPropFeather();
|
|
|
|
Propulsion->in.H_agl = Propagate->GetDistanceAGL();
|
|
|
|
Propulsion->in.PQR = Propagate->GetPQR();
|
2012-05-30 06:39:04 +00:00
|
|
|
|
2011-09-11 09:42:21 +00:00
|
|
|
break;
|
|
|
|
case eAerodynamics:
|
|
|
|
Aerodynamics->in.Alpha = Auxiliary->Getalpha();
|
|
|
|
Aerodynamics->in.Beta = Auxiliary->Getbeta();
|
|
|
|
Aerodynamics->in.Qbar = Auxiliary->Getqbar();
|
|
|
|
Aerodynamics->in.Vt = Auxiliary->GetVt();
|
|
|
|
Aerodynamics->in.Tb2w = Auxiliary->GetTb2w();
|
|
|
|
Aerodynamics->in.Tw2b = Auxiliary->GetTw2b();
|
|
|
|
Aerodynamics->in.RPBody = MassBalance->StructuralToBody(Aircraft->GetXYZrp());
|
|
|
|
break;
|
|
|
|
case eGroundReactions:
|
|
|
|
// There are no external inputs to this model.
|
|
|
|
GroundReactions->in.Vground = Auxiliary->GetVground();
|
|
|
|
GroundReactions->in.VcalibratedKts = Auxiliary->GetVcalibratedKTS();
|
|
|
|
GroundReactions->in.Temperature = Atmosphere->GetTemperature();
|
|
|
|
GroundReactions->in.TakeoffThrottle = (FCS->GetThrottlePos().size() > 0) ? (FCS->GetThrottlePos(0) > 0.90) : false;
|
|
|
|
GroundReactions->in.SteerPosDeg = FCS->GetSteerPosDeg();
|
|
|
|
GroundReactions->in.BrakePos = FCS->GetBrakePos();
|
|
|
|
GroundReactions->in.FCSGearPos = FCS->GetGearPos();
|
|
|
|
GroundReactions->in.EmptyWeight = MassBalance->GetEmptyWeight();
|
|
|
|
GroundReactions->in.Tb2l = Propagate->GetTb2l();
|
|
|
|
GroundReactions->in.Tec2l = Propagate->GetTec2l();
|
|
|
|
GroundReactions->in.Tec2b = Propagate->GetTec2b();
|
|
|
|
GroundReactions->in.PQR = Propagate->GetPQR();
|
|
|
|
GroundReactions->in.UVW = Propagate->GetUVW();
|
|
|
|
GroundReactions->in.DistanceAGL = Propagate->GetDistanceAGL();
|
|
|
|
GroundReactions->in.DistanceASL = Propagate->GetAltitudeASL();
|
|
|
|
GroundReactions->in.TotalDeltaT = dT * GroundReactions->GetRate();
|
|
|
|
GroundReactions->in.WOW = GroundReactions->GetWOW();
|
|
|
|
GroundReactions->in.Location = Propagate->GetLocation();
|
2012-05-30 06:39:04 +00:00
|
|
|
GroundReactions->in.vXYZcg = MassBalance->GetXYZcg();
|
2011-09-11 09:42:21 +00:00
|
|
|
break;
|
|
|
|
case eExternalReactions:
|
|
|
|
// There are no external inputs to this model.
|
|
|
|
break;
|
|
|
|
case eBuoyantForces:
|
|
|
|
BuoyantForces->in.Density = Atmosphere->GetDensity();
|
|
|
|
BuoyantForces->in.Pressure = Atmosphere->GetPressure();
|
|
|
|
BuoyantForces->in.Temperature = Atmosphere->GetTemperature();
|
|
|
|
BuoyantForces->in.gravity = Inertial->gravity();
|
|
|
|
break;
|
|
|
|
case eMassBalance:
|
|
|
|
MassBalance->in.GasInertia = BuoyantForces->GetGasMassInertia();
|
|
|
|
MassBalance->in.GasMass = BuoyantForces->GetGasMass();
|
|
|
|
MassBalance->in.GasMoment = BuoyantForces->GetGasMassMoment();
|
|
|
|
MassBalance->in.TanksWeight = Propulsion->GetTanksWeight();
|
|
|
|
MassBalance->in.TanksMoment = Propulsion->GetTanksMoment();
|
|
|
|
MassBalance->in.TankInertia = Propulsion->CalculateTankInertias();
|
|
|
|
break;
|
|
|
|
case eAircraft:
|
|
|
|
Aircraft->in.AeroForce = Aerodynamics->GetForces();
|
|
|
|
Aircraft->in.PropForce = Propulsion->GetForces();
|
|
|
|
Aircraft->in.GroundForce = GroundReactions->GetForces();
|
|
|
|
Aircraft->in.ExternalForce = ExternalReactions->GetForces();
|
|
|
|
Aircraft->in.BuoyantForce = BuoyantForces->GetForces();
|
|
|
|
Aircraft->in.AeroMoment = Aerodynamics->GetMoments();
|
|
|
|
Aircraft->in.PropMoment = Propulsion->GetMoments();
|
|
|
|
Aircraft->in.GroundMoment = GroundReactions->GetMoments();
|
|
|
|
Aircraft->in.ExternalMoment = ExternalReactions->GetMoments();
|
|
|
|
Aircraft->in.BuoyantMoment = BuoyantForces->GetMoments();
|
|
|
|
break;
|
|
|
|
case eAccelerations:
|
|
|
|
Accelerations->in.J = MassBalance->GetJ();
|
|
|
|
Accelerations->in.Jinv = MassBalance->GetJinv();
|
|
|
|
Accelerations->in.Ti2b = Propagate->GetTi2b();
|
|
|
|
Accelerations->in.Tb2i = Propagate->GetTb2i();
|
|
|
|
Accelerations->in.Tec2b = Propagate->GetTec2b();
|
2012-05-30 06:39:04 +00:00
|
|
|
Accelerations->in.Tec2i = Propagate->GetTec2i();
|
2011-09-11 09:42:21 +00:00
|
|
|
Accelerations->in.qAttitudeECI = Propagate->GetQuaternionECI();
|
|
|
|
Accelerations->in.Moment = Aircraft->GetMoments();
|
|
|
|
Accelerations->in.GroundMoment = GroundReactions->GetMoments();
|
|
|
|
Accelerations->in.Force = Aircraft->GetForces();
|
|
|
|
Accelerations->in.GroundForce = GroundReactions->GetForces();
|
|
|
|
Accelerations->in.GAccel = Inertial->GetGAccel(Propagate->GetRadius());
|
|
|
|
Accelerations->in.J2Grav = Inertial->GetGravityJ2(Propagate->GetLocation());
|
|
|
|
Accelerations->in.vPQRi = Propagate->GetPQRi();
|
|
|
|
Accelerations->in.vPQR = Propagate->GetPQR();
|
|
|
|
Accelerations->in.vUVW = Propagate->GetUVW();
|
|
|
|
Accelerations->in.vInertialPosition = Propagate->GetInertialPosition();
|
|
|
|
Accelerations->in.DeltaT = dT;
|
|
|
|
Accelerations->in.Mass = MassBalance->GetMass();
|
|
|
|
Accelerations->in.MultipliersList = GroundReactions->GetMultipliersList();
|
|
|
|
Accelerations->in.TerrainVelocity = Propagate->GetTerrainVelocity();
|
|
|
|
Accelerations->in.TerrainAngularVel = Propagate->GetTerrainAngularVelocity();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGFDMExec::LoadPlanetConstants(void)
|
|
|
|
{
|
|
|
|
Propagate->in.vOmegaPlanet = Inertial->GetOmegaPlanet();
|
|
|
|
Accelerations->in.vOmegaPlanet = Inertial->GetOmegaPlanet();
|
|
|
|
Propagate->in.SemiMajor = Inertial->GetSemimajor();
|
|
|
|
Propagate->in.SemiMinor = Inertial->GetSemiminor();
|
|
|
|
Auxiliary->in.SLGravity = Inertial->SLgravity();
|
|
|
|
Auxiliary->in.ReferenceRadius = Inertial->GetRefRadius();
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGFDMExec::LoadModelConstants(void)
|
|
|
|
{
|
|
|
|
Winds->in.wingspan = Aircraft->GetWingSpan();
|
|
|
|
FCS->in.NumGear = GroundReactions->GetNumGearUnits();
|
|
|
|
Aerodynamics->in.Wingarea = Aircraft->GetWingArea();
|
|
|
|
Aerodynamics->in.Wingchord = Aircraft->Getcbar();
|
|
|
|
Aerodynamics->in.Wingincidence = Aircraft->GetWingIncidence();
|
|
|
|
Aerodynamics->in.Wingspan = Aircraft->GetWingSpan();
|
|
|
|
Auxiliary->in.Wingspan = Aircraft->GetWingSpan();
|
|
|
|
Auxiliary->in.Wingchord = Aircraft->Getcbar();
|
2012-05-30 06:39:04 +00:00
|
|
|
GroundReactions->in.vXYZcg = MassBalance->GetXYZcg();
|
2011-09-11 09:42:21 +00:00
|
|
|
|
|
|
|
LoadPlanetConstants();
|
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2006-01-12 15:04:22 +00:00
|
|
|
// This call will cause the sim time to reset to 0.0
|
2000-05-02 18:25:30 +00:00
|
|
|
|
2002-09-22 15:31:09 +00:00
|
|
|
bool FGFDMExec::RunIC(void)
|
1999-08-17 21:18:11 +00:00
|
|
|
{
|
2013-01-19 21:32:55 +00:00
|
|
|
FGPropulsion* propulsion = (FGPropulsion*)Models[ePropulsion];
|
|
|
|
|
2014-01-18 09:56:15 +00:00
|
|
|
if (!trim_status)
|
|
|
|
Models[eOutput]->InitModel();
|
2013-01-19 21:32:55 +00:00
|
|
|
|
2010-07-16 09:05:59 +00:00
|
|
|
SuspendIntegration(); // saves the integration rate, dt, then sets it to 0.0.
|
|
|
|
Initialize(IC);
|
1999-08-17 21:18:11 +00:00
|
|
|
Run();
|
2010-07-16 09:05:59 +00:00
|
|
|
ResumeIntegration(); // Restores the integration rate to what it was.
|
2003-03-23 15:12:35 +00:00
|
|
|
|
2013-01-19 21:32:55 +00:00
|
|
|
for (unsigned int i=0; i<IC->GetNumEnginesRunning(); i++)
|
|
|
|
propulsion->InitRunning(IC->GetEngineRunning(i));
|
|
|
|
|
1999-08-17 21:18:11 +00:00
|
|
|
return true;
|
|
|
|
}
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2010-07-16 09:05:59 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGFDMExec::Initialize(FGInitialCondition *FGIC)
|
|
|
|
{
|
2011-04-11 08:06:57 +00:00
|
|
|
Setsim_time(0.0);
|
|
|
|
|
2010-07-16 09:05:59 +00:00
|
|
|
Propagate->SetInitialState( FGIC );
|
2014-01-18 09:56:15 +00:00
|
|
|
LoadInputs(eInertial);
|
|
|
|
Inertial->Run(false);
|
2011-09-11 09:42:21 +00:00
|
|
|
LoadInputs(eAccelerations);
|
|
|
|
Accelerations->Run(false);
|
|
|
|
LoadInputs(ePropagate);
|
|
|
|
Propagate->InitializeDerivatives();
|
2011-10-30 12:30:57 +00:00
|
|
|
Winds->SetWindNED(FGIC->GetWindNEDFpsIC());
|
2014-01-18 09:56:15 +00:00
|
|
|
LoadInputs(eMassBalance);
|
|
|
|
MassBalance->Run(false);
|
2009-03-25 10:00:46 +00:00
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
1999-08-17 21:18:11 +00:00
|
|
|
|
2008-07-10 17:23:02 +00:00
|
|
|
void FGFDMExec::ResetToInitialConditions(void)
|
|
|
|
{
|
2009-11-27 08:54:33 +00:00
|
|
|
if (Constructing) return;
|
2008-07-10 17:23:02 +00:00
|
|
|
|
2013-01-19 21:32:55 +00:00
|
|
|
for (unsigned int i = 0; i < Models.size(); i++) {
|
|
|
|
// The Output model will be initialized during the RunIC() execution
|
|
|
|
if (i == eOutput) continue;
|
2008-07-10 17:23:02 +00:00
|
|
|
|
2013-01-19 21:32:55 +00:00
|
|
|
LoadInputs(i);
|
|
|
|
Models[i]->InitModel();
|
|
|
|
}
|
2011-09-11 09:42:21 +00:00
|
|
|
|
2013-01-19 21:32:55 +00:00
|
|
|
if (Script) Script->ResetEvents();
|
2014-01-18 09:56:15 +00:00
|
|
|
|
|
|
|
RunIC();
|
2011-09-11 09:42:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2002-03-23 00:29:21 +00:00
|
|
|
vector <string> FGFDMExec::EnumerateFDMs(void)
|
|
|
|
{
|
|
|
|
vector <string> FDMList;
|
2011-09-11 09:42:21 +00:00
|
|
|
FGAircraft* Aircraft = (FGAircraft*)Models[eAircraft];
|
2002-03-23 00:29:21 +00:00
|
|
|
|
|
|
|
FDMList.push_back(Aircraft->GetAircraftName());
|
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
for (unsigned int i=1; i<ChildFDMList.size(); i++) {
|
|
|
|
FDMList.push_back(ChildFDMList[i]->exec->GetAircraft()->GetAircraftName());
|
2002-03-23 00:29:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return FDMList;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2013-01-19 21:32:55 +00:00
|
|
|
bool FGFDMExec::LoadScript(const string& script, double deltaT, const string initfile)
|
2007-01-15 12:48:54 +00:00
|
|
|
{
|
|
|
|
bool result;
|
|
|
|
|
|
|
|
Script = new FGScript(this);
|
2013-01-19 21:32:55 +00:00
|
|
|
result = Script->LoadScript(RootDir + script, deltaT, initfile);
|
2007-01-15 12:48:54 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2010-10-26 07:48:56 +00:00
|
|
|
bool FGFDMExec::LoadModel(const string& AircraftPath, const string& EnginePath, const string& SystemsPath,
|
|
|
|
const string& model, bool addModelToPath)
|
2003-03-23 15:12:35 +00:00
|
|
|
{
|
2010-07-16 09:05:59 +00:00
|
|
|
FGFDMExec::AircraftPath = RootDir + AircraftPath;
|
|
|
|
FGFDMExec::EnginePath = RootDir + EnginePath;
|
|
|
|
FGFDMExec::SystemsPath = RootDir + SystemsPath;
|
2003-03-23 15:12:35 +00:00
|
|
|
|
2004-06-27 19:35:54 +00:00
|
|
|
return LoadModel(model, addModelToPath);
|
2004-06-14 11:40:45 +00:00
|
|
|
}
|
2002-09-22 15:31:09 +00:00
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2010-10-26 07:48:56 +00:00
|
|
|
bool FGFDMExec::LoadModel(const string& model, bool addModelToPath)
|
2000-10-02 23:07:30 +00:00
|
|
|
{
|
2001-12-24 13:54:55 +00:00
|
|
|
string token;
|
2001-07-10 15:56:38 +00:00
|
|
|
string aircraftCfgFileName;
|
2007-06-03 09:37:02 +00:00
|
|
|
Element* element = 0L;
|
2008-07-10 17:23:02 +00:00
|
|
|
bool result = false; // initialize result to false, indicating input file not yet read
|
2007-06-03 09:37:02 +00:00
|
|
|
|
|
|
|
modelName = model; // Set the class modelName attribute
|
2006-01-12 15:04:22 +00:00
|
|
|
|
2008-07-10 17:23:02 +00:00
|
|
|
if( AircraftPath.empty() || EnginePath.empty() || SystemsPath.empty()) {
|
2002-09-22 15:31:09 +00:00
|
|
|
cerr << "Error: attempted to load aircraft with undefined ";
|
2008-07-10 17:23:02 +00:00
|
|
|
cerr << "aircraft, engine, and system paths" << endl;
|
2002-09-22 15:31:09 +00:00
|
|
|
return false;
|
|
|
|
}
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2007-01-15 12:48:54 +00:00
|
|
|
FullAircraftPath = AircraftPath;
|
2010-07-16 09:05:59 +00:00
|
|
|
if (addModelToPath) FullAircraftPath += "/" + model;
|
|
|
|
aircraftCfgFileName = FullAircraftPath + "/" + model + ".xml";
|
2001-07-10 15:56:38 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
if (modelLoaded) {
|
|
|
|
DeAllocate();
|
|
|
|
Allocate();
|
|
|
|
}
|
2001-06-05 20:58:48 +00:00
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
int saved_debug_lvl = debug_lvl;
|
2013-11-24 19:12:17 +00:00
|
|
|
FGXMLFileRead XMLFileRead;
|
|
|
|
Element *document = XMLFileRead.LoadXMLDocument(aircraftCfgFileName); // "document" is a class member
|
2009-06-01 08:52:34 +00:00
|
|
|
|
2008-07-10 17:23:02 +00:00
|
|
|
if (document) {
|
2009-06-01 08:52:34 +00:00
|
|
|
if (IsChild) debug_lvl = 0;
|
|
|
|
|
2008-07-10 17:23:02 +00:00
|
|
|
ReadPrologue(document);
|
2009-04-13 11:47:57 +00:00
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
if (IsChild) debug_lvl = saved_debug_lvl;
|
|
|
|
|
2009-04-13 11:47:57 +00:00
|
|
|
// Process the fileheader element in the aircraft config file. This element is OPTIONAL.
|
|
|
|
element = document->FindElement("fileheader");
|
|
|
|
if (element) {
|
|
|
|
result = ReadFileHeader(element);
|
|
|
|
if (!result) {
|
|
|
|
cerr << endl << "Aircraft fileheader element has problems in file " << aircraftCfgFileName << endl;
|
|
|
|
return result;
|
2008-07-10 17:23:02 +00:00
|
|
|
}
|
2009-04-13 11:47:57 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
if (IsChild) debug_lvl = 0;
|
|
|
|
|
2009-04-13 11:47:57 +00:00
|
|
|
// Process the metrics element. This element is REQUIRED.
|
|
|
|
element = document->FindElement("metrics");
|
|
|
|
if (element) {
|
2011-09-11 09:42:21 +00:00
|
|
|
result = ((FGAircraft*)Models[eAircraft])->Load(element);
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
|
|
|
cerr << endl << "Aircraft metrics element has problems in file " << aircraftCfgFileName << endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cerr << endl << "No metrics element was found in the aircraft config file." << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process the mass_balance element. This element is REQUIRED.
|
|
|
|
element = document->FindElement("mass_balance");
|
|
|
|
if (element) {
|
2011-09-11 09:42:21 +00:00
|
|
|
result = ((FGMassBalance*)Models[eMassBalance])->Load(element);
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
|
|
|
cerr << endl << "Aircraft mass_balance element has problems in file " << aircraftCfgFileName << endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cerr << endl << "No mass_balance element was found in the aircraft config file." << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process the ground_reactions element. This element is REQUIRED.
|
|
|
|
element = document->FindElement("ground_reactions");
|
|
|
|
if (element) {
|
2011-09-11 09:42:21 +00:00
|
|
|
result = ((FGGroundReactions*)Models[eGroundReactions])->Load(element);
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
|
|
|
cerr << endl << "Aircraft ground_reactions element has problems in file " << aircraftCfgFileName << endl;
|
|
|
|
return result;
|
|
|
|
}
|
2011-09-11 09:42:21 +00:00
|
|
|
((FGFCS*)Models[eSystems])->AddGear(((FGGroundReactions*)Models[eGroundReactions])->GetNumGearUnits());
|
2009-04-13 11:47:57 +00:00
|
|
|
} else {
|
|
|
|
cerr << endl << "No ground_reactions element was found in the aircraft config file." << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process the external_reactions element. This element is OPTIONAL.
|
|
|
|
element = document->FindElement("external_reactions");
|
|
|
|
if (element) {
|
2011-09-11 09:42:21 +00:00
|
|
|
result = ((FGExternalReactions*)Models[eExternalReactions])->Load(element);
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
|
|
|
cerr << endl << "Aircraft external_reactions element has problems in file " << aircraftCfgFileName << endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process the buoyant_forces element. This element is OPTIONAL.
|
|
|
|
element = document->FindElement("buoyant_forces");
|
|
|
|
if (element) {
|
2011-09-11 09:42:21 +00:00
|
|
|
result = ((FGBuoyantForces*)Models[eBuoyantForces])->Load(element);
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
|
|
|
cerr << endl << "Aircraft buoyant_forces element has problems in file " << aircraftCfgFileName << endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process the propulsion element. This element is OPTIONAL.
|
|
|
|
element = document->FindElement("propulsion");
|
|
|
|
if (element) {
|
2011-09-11 09:42:21 +00:00
|
|
|
result = ((FGPropulsion*)Models[ePropulsion])->Load(element);
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
|
|
|
cerr << endl << "Aircraft propulsion element has problems in file " << aircraftCfgFileName << endl;
|
|
|
|
return result;
|
|
|
|
}
|
2011-09-11 09:42:21 +00:00
|
|
|
for (unsigned int i=0; i<((FGPropulsion*)Models[ePropulsion])->GetNumEngines(); i++)
|
|
|
|
((FGFCS*)Models[eSystems])->AddThrottle();
|
2009-04-13 11:47:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Process the system element[s]. This element is OPTIONAL, and there may be more than one.
|
|
|
|
element = document->FindElement("system");
|
|
|
|
while (element) {
|
2011-09-11 09:42:21 +00:00
|
|
|
result = ((FGFCS*)Models[eSystems])->Load(element, FGFCS::stSystem);
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
|
|
|
cerr << endl << "Aircraft system element has problems in file " << aircraftCfgFileName << endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
element = document->FindNextElement("system");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process the autopilot element. This element is OPTIONAL.
|
|
|
|
element = document->FindElement("autopilot");
|
|
|
|
if (element) {
|
2011-09-11 09:42:21 +00:00
|
|
|
result = ((FGFCS*)Models[eSystems])->Load(element, FGFCS::stAutoPilot);
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
|
|
|
cerr << endl << "Aircraft autopilot element has problems in file " << aircraftCfgFileName << endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process the flight_control element. This element is OPTIONAL.
|
|
|
|
element = document->FindElement("flight_control");
|
|
|
|
if (element) {
|
2011-09-11 09:42:21 +00:00
|
|
|
result = ((FGFCS*)Models[eSystems])->Load(element, FGFCS::stFCS);
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
|
|
|
cerr << endl << "Aircraft flight_control element has problems in file " << aircraftCfgFileName << endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process the aerodynamics element. This element is OPTIONAL, but almost always expected.
|
|
|
|
element = document->FindElement("aerodynamics");
|
|
|
|
if (element) {
|
2011-09-11 09:42:21 +00:00
|
|
|
result = ((FGAerodynamics*)Models[eAerodynamics])->Load(element);
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
|
|
|
cerr << endl << "Aircraft aerodynamics element has problems in file " << aircraftCfgFileName << endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cerr << endl << "No expected aerodynamics element was found in the aircraft config file." << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process the input element. This element is OPTIONAL.
|
|
|
|
element = document->FindElement("input");
|
|
|
|
if (element) {
|
2011-09-11 09:42:21 +00:00
|
|
|
result = ((FGInput*)Models[eInput])->Load(element);
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
|
|
|
cerr << endl << "Aircraft input element has problems in file " << aircraftCfgFileName << endl;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process the output element[s]. This element is OPTIONAL, and there may be more than one.
|
|
|
|
element = document->FindElement("output");
|
|
|
|
while (element) {
|
2013-01-19 21:32:55 +00:00
|
|
|
string output_file_name = aircraftCfgFileName;
|
|
|
|
|
|
|
|
if (!element->GetAttributeValue("file").empty()) {
|
|
|
|
output_file_name = RootDir + element->GetAttributeValue("file");
|
|
|
|
result = ((FGOutput*)Models[eOutput])->SetDirectivesFile(output_file_name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
result = ((FGOutput*)Models[eOutput])->Load(element);
|
|
|
|
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
2013-01-19 21:32:55 +00:00
|
|
|
cerr << endl << "Aircraft output element has problems in file " << output_file_name << endl;
|
2009-04-13 11:47:57 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
element = document->FindNextElement("output");
|
|
|
|
}
|
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
// Lastly, process the child element. This element is OPTIONAL - and NOT YET SUPPORTED.
|
|
|
|
element = document->FindElement("child");
|
2009-04-13 11:47:57 +00:00
|
|
|
if (element) {
|
2009-06-01 08:52:34 +00:00
|
|
|
result = ReadChild(element);
|
2009-04-13 11:47:57 +00:00
|
|
|
if (!result) {
|
2009-06-01 08:52:34 +00:00
|
|
|
cerr << endl << "Aircraft child element has problems in file " << aircraftCfgFileName << endl;
|
2009-04-13 11:47:57 +00:00
|
|
|
return result;
|
2008-07-10 17:23:02 +00:00
|
|
|
}
|
2006-01-12 15:04:22 +00:00
|
|
|
}
|
2000-11-03 23:02:47 +00:00
|
|
|
|
2011-09-11 09:42:21 +00:00
|
|
|
// Since all vehicle characteristics have been loaded, place the values in the Inputs
|
|
|
|
// structure for the FGModel-derived classes.
|
|
|
|
LoadModelConstants();
|
|
|
|
|
2000-11-03 23:02:47 +00:00
|
|
|
modelLoaded = true;
|
2009-04-13 11:47:57 +00:00
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
if (debug_lvl > 0) {
|
2011-09-11 09:42:21 +00:00
|
|
|
LoadInputs(eMassBalance); // Update all input mass properties for the report.
|
|
|
|
Models[eMassBalance]->Run(false); // Update all mass properties for the report.
|
2013-01-19 21:32:55 +00:00
|
|
|
LoadInputs(ePropulsion); // Update propulsion properties for the report.
|
|
|
|
Models[ePropulsion]->Run(false); // Update propulsion properties for the report.
|
|
|
|
LoadInputs(eMassBalance); // Update all (one more time) input mass properties for the report.
|
|
|
|
Models[eMassBalance]->Run(false); // Update all (one more time) mass properties for the report.
|
2011-09-11 09:42:21 +00:00
|
|
|
((FGMassBalance*)Models[eMassBalance])->GetMassPropertiesReport();
|
2010-08-03 07:51:13 +00:00
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
cout << endl << fgblue << highint
|
|
|
|
<< "End of vehicle configuration loading." << endl
|
|
|
|
<< "-------------------------------------------------------------------------------"
|
|
|
|
<< reset << endl;
|
|
|
|
}
|
2012-05-30 06:39:04 +00:00
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
if (IsChild) debug_lvl = saved_debug_lvl;
|
|
|
|
|
2000-10-12 01:06:31 +00:00
|
|
|
} else {
|
2001-03-30 01:04:50 +00:00
|
|
|
cerr << fgred
|
2009-04-13 11:47:57 +00:00
|
|
|
<< " JSBSim failed to open the configuration file: " << aircraftCfgFileName
|
2001-03-30 01:04:50 +00:00
|
|
|
<< fgdef << endl;
|
2006-01-12 15:04:22 +00:00
|
|
|
}
|
|
|
|
|
2011-09-11 09:42:21 +00:00
|
|
|
for (unsigned int i=0; i< Models.size(); i++) LoadInputs(i);
|
|
|
|
|
2010-09-19 09:16:29 +00:00
|
|
|
if (result) {
|
|
|
|
struct PropertyCatalogStructure masterPCS;
|
|
|
|
masterPCS.base_string = "";
|
2013-06-11 20:06:35 +00:00
|
|
|
masterPCS.node = Root->GetNode();
|
2010-09-19 09:16:29 +00:00
|
|
|
BuildPropertyCatalog(&masterPCS);
|
|
|
|
}
|
2006-01-12 15:04:22 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2011-09-11 09:42:21 +00:00
|
|
|
string FGFDMExec::GetPropulsionTankReport()
|
|
|
|
{
|
|
|
|
return ((FGPropulsion*)Models[ePropulsion])->GetPropulsionTankReport();
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
void FGFDMExec::BuildPropertyCatalog(struct PropertyCatalogStructure* pcs)
|
|
|
|
{
|
|
|
|
struct PropertyCatalogStructure* pcsNew = new struct PropertyCatalogStructure;
|
|
|
|
int node_idx = 0;
|
|
|
|
|
2009-10-12 07:24:41 +00:00
|
|
|
for (int i=0; i<pcs->node->nChildren(); i++) {
|
2013-06-11 20:06:35 +00:00
|
|
|
string access="";
|
2006-01-12 15:04:22 +00:00
|
|
|
pcsNew->base_string = pcs->base_string + "/" + pcs->node->getChild(i)->getName();
|
|
|
|
node_idx = pcs->node->getChild(i)->getIndex();
|
2009-10-26 13:29:58 +00:00
|
|
|
if (node_idx != 0) {
|
|
|
|
pcsNew->base_string = CreateIndexedPropertyName(pcsNew->base_string, node_idx);
|
|
|
|
}
|
2006-01-12 15:04:22 +00:00
|
|
|
if (pcs->node->getChild(i)->nChildren() == 0) {
|
2013-01-19 21:32:55 +00:00
|
|
|
if (pcsNew->base_string.substr(0,12) == string("/fdm/jsbsim/")) {
|
2009-01-26 20:36:17 +00:00
|
|
|
pcsNew->base_string = pcsNew->base_string.erase(0,12);
|
|
|
|
}
|
2013-06-11 20:06:35 +00:00
|
|
|
if (pcs->node->getChild(i)->getAttribute(SGPropertyNode::READ)) access="R";
|
|
|
|
if (pcs->node->getChild(i)->getAttribute(SGPropertyNode::WRITE)) access+="W";
|
|
|
|
PropertyCatalog.push_back(pcsNew->base_string+" ("+access+")");
|
2006-01-12 15:04:22 +00:00
|
|
|
} else {
|
2013-06-11 20:06:35 +00:00
|
|
|
pcsNew->node = (FGPropertyNode*)pcs->node->getChild(i);
|
2006-01-12 15:04:22 +00:00
|
|
|
BuildPropertyCatalog(pcsNew);
|
|
|
|
}
|
2000-11-03 23:02:47 +00:00
|
|
|
}
|
2006-01-12 15:04:22 +00:00
|
|
|
delete pcsNew;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2010-10-26 07:48:56 +00:00
|
|
|
string FGFDMExec::QueryPropertyCatalog(const string& in)
|
2006-01-12 15:04:22 +00:00
|
|
|
{
|
|
|
|
string results="";
|
2007-01-15 12:48:54 +00:00
|
|
|
for (unsigned i=0; i<PropertyCatalog.size(); i++) {
|
2006-01-12 15:04:22 +00:00
|
|
|
if (PropertyCatalog[i].find(in) != string::npos) results += PropertyCatalog[i] + "\n";
|
|
|
|
}
|
|
|
|
if (results.empty()) return "No matches found\n";
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2007-01-15 12:48:54 +00:00
|
|
|
void FGFDMExec::PrintPropertyCatalog(void)
|
|
|
|
{
|
|
|
|
cout << endl;
|
|
|
|
cout << " " << fgblue << highint << underon << "Property Catalog for "
|
|
|
|
<< modelName << reset << endl << endl;
|
|
|
|
for (unsigned i=0; i<PropertyCatalog.size(); i++) {
|
|
|
|
cout << " " << PropertyCatalog[i] << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
bool FGFDMExec::ReadFileHeader(Element* el)
|
|
|
|
{
|
|
|
|
bool result = true; // true for success
|
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
if (debug_lvl == 0) return result;
|
|
|
|
|
|
|
|
if (IsChild) {
|
|
|
|
cout << endl <<highint << fgblue << "Reading child model: " << IdFDM << reset << endl << endl;
|
|
|
|
}
|
2006-01-12 15:04:22 +00:00
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
if (el->FindElement("description"))
|
|
|
|
cout << " Description: " << el->FindElement("description")->GetDataLine() << endl;
|
2006-01-12 15:04:22 +00:00
|
|
|
if (el->FindElement("author"))
|
|
|
|
cout << " Model Author: " << el->FindElement("author")->GetDataLine() << endl;
|
|
|
|
if (el->FindElement("filecreationdate"))
|
|
|
|
cout << " Creation Date: " << el->FindElement("filecreationdate")->GetDataLine() << endl;
|
|
|
|
if (el->FindElement("version"))
|
|
|
|
cout << " Version: " << el->FindElement("version")->GetDataLine() << endl;
|
2000-11-03 23:02:47 +00:00
|
|
|
|
2000-10-12 01:06:31 +00:00
|
|
|
return result;
|
2000-10-02 23:07:30 +00:00
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
bool FGFDMExec::ReadPrologue(Element* el) // el for ReadPrologue is the document element
|
2001-03-30 01:04:50 +00:00
|
|
|
{
|
2006-01-12 15:04:22 +00:00
|
|
|
bool result = true; // true for success
|
|
|
|
|
|
|
|
if (!el) return false;
|
2002-03-23 00:29:21 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
string AircraftName = el->GetAttributeValue("name");
|
2011-09-11 09:42:21 +00:00
|
|
|
((FGAircraft*)Models[eAircraft])->SetAircraftName(AircraftName);
|
2001-12-24 13:54:55 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
if (debug_lvl & 1) cout << underon << "Reading Aircraft Configuration File"
|
2001-12-24 13:54:55 +00:00
|
|
|
<< underoff << ": " << highint << AircraftName << normint << endl;
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
CFGVersion = el->GetAttributeValue("version");
|
|
|
|
Release = el->GetAttributeValue("release");
|
2001-12-24 13:54:55 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
if (debug_lvl & 1)
|
2001-12-24 13:54:55 +00:00
|
|
|
cout << " Version: " << highint << CFGVersion
|
2002-03-23 00:29:21 +00:00
|
|
|
<< normint << endl;
|
2001-12-24 13:54:55 +00:00
|
|
|
if (CFGVersion != needed_cfg_version) {
|
|
|
|
cerr << endl << fgred << "YOU HAVE AN INCOMPATIBLE CFG FILE FOR THIS AIRCRAFT."
|
|
|
|
" RESULTS WILL BE UNPREDICTABLE !!" << endl;
|
|
|
|
cerr << "Current version needed is: " << needed_cfg_version << endl;
|
|
|
|
cerr << " You have version: " << CFGVersion << endl << fgdef << endl;
|
|
|
|
return false;
|
2001-03-30 01:04:50 +00:00
|
|
|
}
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
if (Release == "ALPHA" && (debug_lvl & 1)) {
|
2004-01-14 22:09:39 +00:00
|
|
|
cout << endl << endl
|
|
|
|
<< highint << "This aircraft model is an " << fgred << Release
|
|
|
|
<< reset << highint << " release!!!" << endl << endl << reset
|
|
|
|
<< "This aircraft model may not even properly load, and probably"
|
|
|
|
<< " will not fly as expected." << endl << endl
|
|
|
|
<< fgred << highint << "Use this model for development purposes ONLY!!!"
|
2004-01-19 13:51:05 +00:00
|
|
|
<< normint << reset << endl << endl;
|
2006-01-12 15:04:22 +00:00
|
|
|
} else if (Release == "BETA" && (debug_lvl & 1)) {
|
2004-01-14 22:09:39 +00:00
|
|
|
cout << endl << endl
|
|
|
|
<< highint << "This aircraft model is a " << fgred << Release
|
|
|
|
<< reset << highint << " release!!!" << endl << endl << reset
|
|
|
|
<< "This aircraft model probably will not fly as expected." << endl << endl
|
|
|
|
<< fgblue << highint << "Use this model for development purposes ONLY!!!"
|
|
|
|
<< normint << reset << endl << endl;
|
2006-01-12 15:04:22 +00:00
|
|
|
} else if (Release == "PRODUCTION" && (debug_lvl & 1)) {
|
|
|
|
cout << endl << endl
|
|
|
|
<< highint << "This aircraft model is a " << fgblue << Release
|
|
|
|
<< reset << highint << " release." << endl << endl << reset;
|
|
|
|
} else if (debug_lvl & 1) {
|
|
|
|
cout << endl << endl
|
|
|
|
<< highint << "This aircraft model is an " << fgred << Release
|
|
|
|
<< reset << highint << " release!!!" << endl << endl << reset
|
|
|
|
<< "This aircraft model may not even properly load, and probably"
|
|
|
|
<< " will not fly as expected." << endl << endl
|
|
|
|
<< fgred << highint << "Use this model for development purposes ONLY!!!"
|
|
|
|
<< normint << reset << endl << endl;
|
2004-01-14 22:09:39 +00:00
|
|
|
}
|
2002-03-23 00:29:21 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
return result;
|
2002-03-23 00:29:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
bool FGFDMExec::ReadChild(Element* el)
|
2002-03-23 00:29:21 +00:00
|
|
|
{
|
2009-06-01 08:52:34 +00:00
|
|
|
// Add a new childData object to the child FDM list
|
|
|
|
// Populate that childData element with a new FDMExec object
|
|
|
|
// Set the IsChild flag for that FDMExec object
|
2002-03-23 00:29:21 +00:00
|
|
|
// Get the aircraft name
|
2009-06-01 08:52:34 +00:00
|
|
|
// set debug level to print out no additional data for child objects
|
2002-03-23 00:29:21 +00:00
|
|
|
// Load the model given the aircraft name
|
|
|
|
// reset debug level to prior setting
|
|
|
|
|
2002-08-28 13:46:42 +00:00
|
|
|
string token;
|
2002-03-23 00:29:21 +00:00
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
struct childData* child = new childData;
|
|
|
|
|
2010-10-26 07:48:56 +00:00
|
|
|
child->exec = new FGFDMExec(Root, FDMctr);
|
2009-06-01 08:52:34 +00:00
|
|
|
child->exec->SetChild(true);
|
|
|
|
|
|
|
|
string childAircraft = el->GetAttributeValue("name");
|
|
|
|
string sMated = el->GetAttributeValue("mated");
|
|
|
|
if (sMated == "false") child->mated = false; // child objects are mated by default.
|
|
|
|
string sInternal = el->GetAttributeValue("internal");
|
|
|
|
if (sInternal == "true") child->internal = true; // child objects are external by default.
|
|
|
|
|
|
|
|
child->exec->SetAircraftPath( AircraftPath );
|
|
|
|
child->exec->SetEnginePath( EnginePath );
|
|
|
|
child->exec->SetSystemsPath( SystemsPath );
|
|
|
|
child->exec->LoadModel(childAircraft);
|
|
|
|
|
|
|
|
Element* location = el->FindElement("location");
|
|
|
|
if (location) {
|
|
|
|
child->Loc = location->FindElementTripletConvertTo("IN");
|
|
|
|
} else {
|
|
|
|
cerr << endl << highint << fgred << " No location was found for this child object!" << reset << endl;
|
|
|
|
exit(-1);
|
2002-08-28 13:46:42 +00:00
|
|
|
}
|
2012-05-30 06:39:04 +00:00
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
Element* orientation = el->FindElement("orient");
|
|
|
|
if (orientation) {
|
|
|
|
child->Orient = orientation->FindElementTripletConvertTo("RAD");
|
|
|
|
} else if (debug_lvl > 0) {
|
|
|
|
cerr << endl << highint << " No orientation was found for this child object! Assuming 0,0,0." << reset << endl;
|
2002-08-28 13:46:42 +00:00
|
|
|
}
|
2002-03-23 00:29:21 +00:00
|
|
|
|
2009-06-01 08:52:34 +00:00
|
|
|
ChildFDMList.push_back(child);
|
|
|
|
|
2001-12-24 13:54:55 +00:00
|
|
|
return true;
|
|
|
|
}
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2001-12-24 13:54:55 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
FGPropertyManager* FGFDMExec::GetPropertyManager(void)
|
2001-12-24 13:54:55 +00:00
|
|
|
{
|
2006-01-12 15:04:22 +00:00
|
|
|
return instance;
|
2001-12-24 13:54:55 +00:00
|
|
|
}
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2001-12-24 13:54:55 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
FGTrim* FGFDMExec::GetTrim(void)
|
2001-12-24 13:54:55 +00:00
|
|
|
{
|
2006-01-12 15:04:22 +00:00
|
|
|
delete Trim;
|
|
|
|
Trim = new FGTrim(this,tNone);
|
|
|
|
return Trim;
|
2001-12-24 13:54:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2012-05-30 06:39:04 +00:00
|
|
|
void FGFDMExec::CheckIncrementalHold(void)
|
|
|
|
{
|
|
|
|
// Only check if increment then hold is on
|
|
|
|
if( IncrementThenHolding ) {
|
|
|
|
|
|
|
|
if (TimeStepsUntilHold == 0) {
|
|
|
|
|
|
|
|
// Should hold simulation if TimeStepsUntilHold has reached zero
|
|
|
|
holding = true;
|
|
|
|
|
|
|
|
// Still need to decrement TimeStepsUntilHold as value of -1
|
|
|
|
// indicates that incremental then hold is turned off
|
|
|
|
IncrementThenHolding = false;
|
|
|
|
TimeStepsUntilHold--;
|
|
|
|
|
|
|
|
} else if ( TimeStepsUntilHold > 0 ) {
|
|
|
|
// Keep decrementing until 0 is reached
|
|
|
|
TimeStepsUntilHold--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
void FGFDMExec::DoTrim(int mode)
|
2000-10-02 23:07:30 +00:00
|
|
|
{
|
2006-01-12 15:04:22 +00:00
|
|
|
double saved_time;
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
if (Constructing) return;
|
|
|
|
|
|
|
|
if (mode < 0 || mode > JSBSim::tNone) {
|
|
|
|
cerr << endl << "Illegal trimming mode!" << endl << endl;
|
|
|
|
return;
|
2001-03-30 01:04:50 +00:00
|
|
|
}
|
2010-07-16 09:05:59 +00:00
|
|
|
saved_time = sim_time;
|
2006-01-12 15:04:22 +00:00
|
|
|
FGTrim trim(this, (JSBSim::TrimMode)mode);
|
|
|
|
if ( !trim.DoTrim() ) cerr << endl << "Trim Failed" << endl << endl;
|
|
|
|
trim.Report();
|
2010-07-16 09:05:59 +00:00
|
|
|
sim_time = saved_time;
|
2000-10-02 23:07:30 +00:00
|
|
|
}
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2013-01-19 21:32:55 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGFDMExec::DoSimplexTrim(int mode)
|
|
|
|
{
|
|
|
|
double saved_time;
|
|
|
|
if (Constructing) return;
|
|
|
|
if (mode < 0 || mode > JSBSim::tNone) {
|
|
|
|
cerr << endl << "Illegal trimming mode!" << endl << endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
saved_time = sim_time;
|
|
|
|
FGSimplexTrim trim(this, (JSBSim::TrimMode)mode);
|
|
|
|
sim_time = saved_time;
|
|
|
|
Setsim_time(saved_time);
|
2013-06-11 20:06:35 +00:00
|
|
|
std::cout << "dT: " << dT << std::endl;
|
2013-01-19 21:32:55 +00:00
|
|
|
}
|
|
|
|
|
2013-06-11 20:06:35 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGFDMExec::DoLinearization(int mode)
|
|
|
|
{
|
|
|
|
double saved_time;
|
|
|
|
if (Constructing) return;
|
|
|
|
saved_time = sim_time;
|
|
|
|
FGLinearization lin(this,mode);
|
|
|
|
sim_time = saved_time;
|
|
|
|
Setsim_time(saved_time);
|
|
|
|
}
|
2013-01-19 21:32:55 +00:00
|
|
|
|
2012-05-30 06:39:04 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGFDMExec::SRand(int sr)
|
|
|
|
{
|
|
|
|
srand(sr);
|
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2001-12-13 04:48:34 +00:00
|
|
|
// The bitmasked value choices are as follows:
|
|
|
|
// unset: In this case (the default) JSBSim would only print
|
|
|
|
// out the normally expected messages, essentially echoing
|
|
|
|
// the config files as they are read. If the environment
|
|
|
|
// variable is not set, debug_lvl is set to 1 internally
|
|
|
|
// 0: This requests JSBSim not to output any messages
|
|
|
|
// whatsoever.
|
|
|
|
// 1: This value explicity requests the normal JSBSim
|
|
|
|
// startup messages
|
|
|
|
// 2: This value asks for a message to be printed out when
|
|
|
|
// a class is instantiated
|
|
|
|
// 4: When this value is set, a message is displayed when a
|
|
|
|
// FGModel object executes its Run() method
|
|
|
|
// 8: When this value is set, various runtime state variables
|
|
|
|
// are printed out periodically
|
|
|
|
// 16: When set various parameters are sanity checked and
|
|
|
|
// a message is printed out when they go out of bounds
|
|
|
|
|
|
|
|
void FGFDMExec::Debug(int from)
|
2001-03-30 01:04:50 +00:00
|
|
|
{
|
2001-12-13 04:48:34 +00:00
|
|
|
if (debug_lvl <= 0) return;
|
|
|
|
|
2002-09-05 13:55:16 +00:00
|
|
|
if (debug_lvl & 1 && IdFDM == 0) { // Standard console startup message output
|
2001-12-13 04:48:34 +00:00
|
|
|
if (from == 0) { // Constructor
|
2012-05-30 06:39:04 +00:00
|
|
|
cout << "\n\n "
|
2011-09-11 09:42:21 +00:00
|
|
|
<< "JSBSim Flight Dynamics Model v" << JSBSim_version << endl;
|
|
|
|
cout << " [JSBSim-ML v" << needed_cfg_version << "]\n\n";
|
|
|
|
cout << "JSBSim startup beginning ...\n\n";
|
2001-12-13 04:48:34 +00:00
|
|
|
} else if (from == 3) {
|
|
|
|
cout << "\n\nJSBSim startup complete\n\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (debug_lvl & 2 ) { // Instantiation/Destruction notification
|
|
|
|
if (from == 0) cout << "Instantiated: FGFDMExec" << endl;
|
|
|
|
if (from == 1) cout << "Destroyed: FGFDMExec" << endl;
|
|
|
|
}
|
|
|
|
if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
|
|
|
|
if (from == 2) {
|
|
|
|
cout << "================== Frame: " << Frame << " Time: "
|
2010-07-16 09:05:59 +00:00
|
|
|
<< sim_time << " dt: " << dT << endl;
|
2001-12-13 04:48:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (debug_lvl & 8 ) { // Runtime state variables
|
|
|
|
}
|
|
|
|
if (debug_lvl & 16) { // Sanity checking
|
|
|
|
}
|
2001-12-24 13:54:55 +00:00
|
|
|
if (debug_lvl & 64) {
|
|
|
|
if (from == 0) { // Constructor
|
|
|
|
cout << IdSrc << endl;
|
|
|
|
cout << IdHdr << endl;
|
|
|
|
}
|
|
|
|
}
|
2001-12-13 04:48:34 +00:00
|
|
|
}
|
2003-01-24 12:55:28 +00:00
|
|
|
}
|
2001-12-24 13:54:55 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
|