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.
|
|
|
|
|
|
|
|
------------- Copyright (C) 1999 Jon S. Berndt (jsb@hal-pc.org) -------------
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU 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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
|
|
Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
Further information about the GNU General Public License can also be found on
|
|
|
|
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
|
|
|
|
1999-02-26 22:09:10 +00:00
|
|
|
#ifdef FGFS
|
2000-02-15 03:30:01 +00:00
|
|
|
# include <simgear/compiler.h>
|
2001-06-05 20:58:48 +00:00
|
|
|
# include STL_IOSTREAM
|
|
|
|
# include STL_ITERATOR
|
1999-02-26 22:09:10 +00:00
|
|
|
#else
|
2004-01-14 22:09:39 +00:00
|
|
|
# if defined(sgi) && !defined(__GNUC__) && (_COMPILER_VERSION < 740)
|
2001-10-05 20:19:59 +00:00
|
|
|
# include <iostream.h>
|
|
|
|
# else
|
|
|
|
# include <iostream>
|
|
|
|
# endif
|
2001-03-30 01:04:50 +00:00
|
|
|
# include <iterator>
|
1999-02-26 22:09:10 +00:00
|
|
|
#endif
|
1999-02-05 21:26:01 +00:00
|
|
|
|
1999-02-11 21:05:34 +00:00
|
|
|
#include "FGFDMExec.h"
|
|
|
|
#include "FGState.h"
|
2006-01-12 15:04:22 +00:00
|
|
|
#include <models/FGAtmosphere.h>
|
|
|
|
#include <models/atmosphere/FGMSIS.h>
|
|
|
|
#include <models/atmosphere/FGMars.h>
|
|
|
|
#include <models/FGFCS.h>
|
|
|
|
#include <models/FGPropulsion.h>
|
|
|
|
#include <models/FGMassBalance.h>
|
|
|
|
#include <models/FGGroundReactions.h>
|
|
|
|
#include <models/FGAerodynamics.h>
|
|
|
|
#include <models/FGInertial.h>
|
|
|
|
#include <models/FGAircraft.h>
|
|
|
|
#include <models/FGPropagate.h>
|
|
|
|
#include <models/FGAuxiliary.h>
|
|
|
|
#include <models/FGInput.h>
|
|
|
|
#include <models/FGOutput.h>
|
|
|
|
#include <initialization/FGInitialCondition.h>
|
|
|
|
#include <input_output/FGPropertyManager.h>
|
1999-02-11 21:05:34 +00:00
|
|
|
|
2003-01-24 12:55:28 +00:00
|
|
|
namespace JSBSim {
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
static const char *IdSrc = "$Id$";
|
2001-06-05 20:58:48 +00:00
|
|
|
static const char *IdHdr = ID_FDMEXEC;
|
2000-10-14 02:10:10 +00:00
|
|
|
|
2000-11-03 23:02:47 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2001-03-30 01:04:50 +00:00
|
|
|
GLOBAL DECLARATIONS
|
2000-11-03 23:02:47 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
1999-02-05 21:26:01 +00:00
|
|
|
|
2001-11-12 16:06:29 +00:00
|
|
|
unsigned int FGFDMExec::FDMctr = 0;
|
2002-03-23 00:29:21 +00:00
|
|
|
FGPropertyManager* FGFDMExec::master=0;
|
2001-11-12 16:06:29 +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
|
|
|
void checkTied ( FGPropertyManager *node )
|
|
|
|
{
|
2002-09-29 13:33:53 +00:00
|
|
|
int N = node->nChildren();
|
|
|
|
string name;
|
2003-03-23 15:12:35 +00:00
|
|
|
|
|
|
|
for (int i=0; i<N; i++) {
|
|
|
|
if (node->getChild(i)->nChildren() ) {
|
2002-09-29 13:33:53 +00:00
|
|
|
checkTied( (FGPropertyManager*)node->getChild(i) );
|
2003-03-23 15:12:35 +00:00
|
|
|
} else if ( node->getChild(i)->isTied() ) {
|
|
|
|
name = ((FGPropertyManager*)node->getChild(i))->GetFullyQualifiedName();
|
2002-09-29 13:33:53 +00:00
|
|
|
cerr << name << " is tied" << endl;
|
2004-06-14 11:40:45 +00:00
|
|
|
}
|
2002-09-29 13:33:53 +00:00
|
|
|
}
|
2004-06-14 11:40:45 +00:00
|
|
|
}
|
2002-09-29 13:33:53 +00:00
|
|
|
|
2003-03-23 15:12:35 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
1999-02-05 21:26:01 +00:00
|
|
|
// Constructor
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
FGFDMExec::FGFDMExec(FGPropertyManager* root) : Root(root)
|
1999-02-05 21:26:01 +00:00
|
|
|
{
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2001-10-05 20:19:59 +00:00
|
|
|
Frame = 0;
|
|
|
|
FirstModel = 0;
|
|
|
|
Error = 0;
|
2006-01-12 15:04:22 +00:00
|
|
|
GroundCallback = 0;
|
2001-10-05 20:19:59 +00:00
|
|
|
State = 0;
|
|
|
|
Atmosphere = 0;
|
|
|
|
FCS = 0;
|
|
|
|
Propulsion = 0;
|
|
|
|
MassBalance = 0;
|
|
|
|
Aerodynamics = 0;
|
|
|
|
Inertial = 0;
|
|
|
|
GroundReactions = 0;
|
|
|
|
Aircraft = 0;
|
2004-06-14 11:40:45 +00:00
|
|
|
Propagate = 0;
|
2001-10-05 20:19:59 +00:00
|
|
|
Auxiliary = 0;
|
2006-01-12 15:04:22 +00:00
|
|
|
Input = 0;
|
2002-09-22 15:31:09 +00:00
|
|
|
IC = 0;
|
|
|
|
Trim = 0;
|
1999-02-11 21:05:34 +00:00
|
|
|
|
2000-10-10 17:44:35 +00:00
|
|
|
terminate = false;
|
2000-10-12 01:06:31 +00:00
|
|
|
modelLoaded = false;
|
2002-03-23 00:29:21 +00:00
|
|
|
IsSlave = false;
|
2006-01-12 15:04:22 +00:00
|
|
|
holding = false;
|
|
|
|
|
2002-08-05 20:13:34 +00:00
|
|
|
|
2005-06-11 08:19:16 +00:00
|
|
|
// Multiple FDM's are stopped for now. We need to ensure that
|
|
|
|
// the "user" instance always gets the zeroeth instance number,
|
|
|
|
// because there may be instruments or scripts tied to properties
|
|
|
|
// in the jsbsim[0] node.
|
2006-01-12 15:04:22 +00:00
|
|
|
// ToDo: it could be that when JSBSim is reset and a new FDM is wanted, that
|
|
|
|
// process might try setting FDMctr = 0. Then the line below would not need
|
|
|
|
// to be commented out.
|
2001-11-12 16:06:29 +00:00
|
|
|
IdFDM = FDMctr;
|
2005-06-11 08:19:16 +00:00
|
|
|
//FDMctr++;
|
2002-09-05 13:55:16 +00:00
|
|
|
|
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
|
2001-03-30 01:04:50 +00:00
|
|
|
} catch (...) { // if error set to 1
|
|
|
|
debug_lvl = 1;
|
|
|
|
}
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
if (Root == 0) master= new FGPropertyManager;
|
|
|
|
else master = Root;
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2002-03-20 12:45:02 +00:00
|
|
|
instance = master->GetNode("/fdm/jsbsim",IdFDM,true);
|
|
|
|
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
|
|
|
|
|
|
|
Constructing = true;
|
|
|
|
typedef int (FGFDMExec::*iPMF)(void) const;
|
|
|
|
instance->Tie("simulation/do_trim", this, (iPMF)0, &FGFDMExec::DoTrim);
|
|
|
|
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()
|
|
|
|
{
|
2006-01-12 15:04:22 +00:00
|
|
|
instance->Untie("simulation/do_trim");
|
|
|
|
|
2002-03-20 12:45:02 +00:00
|
|
|
try {
|
|
|
|
DeAllocate();
|
2002-09-29 13:33:53 +00:00
|
|
|
checkTied( instance );
|
2006-01-12 15:04:22 +00:00
|
|
|
if (Root == 0) delete master;
|
2002-03-20 12:45:02 +00:00
|
|
|
} catch ( string msg ) {
|
|
|
|
cout << "Caught error: " << msg << endl;
|
2004-06-14 11:40:45 +00:00
|
|
|
}
|
|
|
|
|
2002-04-30 13:42:26 +00:00
|
|
|
for (unsigned int i=1; i<SlaveFDMList.size(); i++) delete SlaveFDMList[i]->exec;
|
2002-03-23 00:29:21 +00:00
|
|
|
SlaveFDMList.clear();
|
2004-06-14 11:40:45 +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
|
|
|
|
2001-10-05 20:19:59 +00:00
|
|
|
Atmosphere = new FGAtmosphere(this);
|
|
|
|
FCS = new FGFCS(this);
|
|
|
|
Propulsion = new FGPropulsion(this);
|
|
|
|
MassBalance = new FGMassBalance(this);
|
|
|
|
Aerodynamics = new FGAerodynamics (this);
|
|
|
|
Inertial = new FGInertial(this);
|
|
|
|
GroundReactions = new FGGroundReactions(this);
|
|
|
|
Aircraft = new FGAircraft(this);
|
2004-06-14 11:40:45 +00:00
|
|
|
Propagate = new FGPropagate(this);
|
2001-10-05 20:19:59 +00:00
|
|
|
Auxiliary = new FGAuxiliary(this);
|
2006-01-12 15:04:22 +00:00
|
|
|
Input = new FGInput(this);
|
2001-06-05 20:58:48 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
GroundCallback = new FGGroundCallback();
|
|
|
|
State = new FGState(this); // This must be done here, as the FGState
|
|
|
|
// class needs valid pointers to the above
|
|
|
|
// model classes
|
2004-06-14 11:40:45 +00:00
|
|
|
|
1999-02-11 21:05:34 +00:00
|
|
|
// Initialize models so they can communicate with each other
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
if (!Atmosphere->InitModel()) {
|
|
|
|
cerr << fgred << "Atmosphere model init failed" << fgdef << endl;
|
|
|
|
Error+=1;}
|
|
|
|
if (!FCS->InitModel()) {
|
|
|
|
cerr << fgred << "FCS model init failed" << fgdef << endl;
|
|
|
|
Error+=2;}
|
|
|
|
if (!Propulsion->InitModel()) {
|
|
|
|
cerr << fgred << "FGPropulsion model init failed" << fgdef << endl;
|
|
|
|
Error+=4;}
|
2001-06-05 20:58:48 +00:00
|
|
|
if (!MassBalance->InitModel()) {
|
|
|
|
cerr << fgred << "FGMassBalance model init failed" << fgdef << endl;
|
|
|
|
Error+=8;}
|
|
|
|
if (!Aerodynamics->InitModel()) {
|
|
|
|
cerr << fgred << "FGAerodynamics model init failed" << fgdef << endl;
|
|
|
|
Error+=16;}
|
|
|
|
if (!Inertial->InitModel()) {
|
|
|
|
cerr << fgred << "FGInertial model init failed" << fgdef << endl;
|
|
|
|
Error+=32;}
|
2001-10-05 20:19:59 +00:00
|
|
|
if (!GroundReactions->InitModel()) {
|
|
|
|
cerr << fgred << "Ground Reactions model init failed" << fgdef << endl;
|
|
|
|
Error+=64;}
|
2001-03-30 01:04:50 +00:00
|
|
|
if (!Aircraft->InitModel()) {
|
|
|
|
cerr << fgred << "Aircraft model init failed" << fgdef << endl;
|
2001-10-05 20:19:59 +00:00
|
|
|
Error+=128;}
|
2004-06-14 11:40:45 +00:00
|
|
|
if (!Propagate->InitModel()) {
|
|
|
|
cerr << fgred << "Propagate model init failed" << fgdef << endl;
|
2006-01-12 15:04:22 +00:00
|
|
|
Error+=256;}
|
2001-03-30 01:04:50 +00:00
|
|
|
if (!Auxiliary->InitModel()) {
|
|
|
|
cerr << fgred << "Auxiliary model init failed" << fgdef << endl;
|
2006-01-12 15:04:22 +00:00
|
|
|
Error+=512;}
|
|
|
|
if (!Input->InitModel()) {
|
|
|
|
cerr << fgred << "Input model init failed" << fgdef << endl;
|
|
|
|
Error+=1024;}
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
if (Error > 0) result = false;
|
2004-06-14 11:40:45 +00:00
|
|
|
|
|
|
|
IC = new FGInitialCondition(this);
|
|
|
|
|
1999-08-17 21:18:11 +00:00
|
|
|
// Schedule a model. The second arg (the integer) is the pass number. For
|
2006-01-12 15:04:22 +00:00
|
|
|
// instance, the atmosphere model could get executed every fifth pass it is called
|
|
|
|
// by the executive. IC and Trim objects are NOT scheduled.
|
1999-02-05 21:26:01 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
Schedule(Input, 1);
|
2001-10-05 20:19:59 +00:00
|
|
|
Schedule(Atmosphere, 1);
|
|
|
|
Schedule(FCS, 1);
|
|
|
|
Schedule(Propulsion, 1);
|
|
|
|
Schedule(MassBalance, 1);
|
|
|
|
Schedule(Aerodynamics, 1);
|
|
|
|
Schedule(Inertial, 1);
|
|
|
|
Schedule(GroundReactions, 1);
|
|
|
|
Schedule(Aircraft, 1);
|
2004-06-14 11:40:45 +00:00
|
|
|
Schedule(Propagate, 1);
|
2001-10-05 20:19:59 +00:00
|
|
|
Schedule(Auxiliary, 1);
|
2001-03-30 01:04:50 +00:00
|
|
|
|
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)
|
|
|
|
{
|
2006-01-12 15:04:22 +00:00
|
|
|
delete Input;
|
2002-09-22 15:31:09 +00:00
|
|
|
delete Atmosphere;
|
|
|
|
delete FCS;
|
|
|
|
delete Propulsion;
|
|
|
|
delete MassBalance;
|
|
|
|
delete Aerodynamics;
|
|
|
|
delete Inertial;
|
|
|
|
delete GroundReactions;
|
|
|
|
delete Aircraft;
|
2004-06-14 11:40:45 +00:00
|
|
|
delete Propagate;
|
2002-09-22 15:31:09 +00:00
|
|
|
delete Auxiliary;
|
|
|
|
delete State;
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
for (int i=0; i<Outputs.size(); i++) {
|
|
|
|
if (Outputs[i]) delete Outputs[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
Outputs.clear();
|
|
|
|
|
2002-09-22 15:31:09 +00:00
|
|
|
delete IC;
|
|
|
|
delete Trim;
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2005-05-22 08:06:47 +00:00
|
|
|
delete GroundCallback;
|
|
|
|
|
2000-10-12 01:06:31 +00:00
|
|
|
FirstModel = 0L;
|
|
|
|
Error = 0;
|
|
|
|
|
2001-10-05 20:19:59 +00:00
|
|
|
State = 0;
|
2006-01-12 15:04:22 +00:00
|
|
|
Input = 0;
|
2001-10-05 20:19:59 +00:00
|
|
|
Atmosphere = 0;
|
|
|
|
FCS = 0;
|
|
|
|
Propulsion = 0;
|
|
|
|
MassBalance = 0;
|
|
|
|
Aerodynamics = 0;
|
|
|
|
Inertial = 0;
|
|
|
|
GroundReactions = 0;
|
|
|
|
Aircraft = 0;
|
2004-06-14 11:40:45 +00:00
|
|
|
Propagate = 0;
|
2001-10-05 20:19:59 +00:00
|
|
|
Auxiliary = 0;
|
2000-10-12 01:06:31 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
int FGFDMExec::Schedule(FGModel* model, int rate)
|
|
|
|
{
|
|
|
|
FGModel* model_iterator;
|
|
|
|
|
|
|
|
model_iterator = FirstModel;
|
|
|
|
|
|
|
|
if (model_iterator == 0L) { // this is the first model
|
|
|
|
|
|
|
|
FirstModel = model;
|
|
|
|
FirstModel->NextModel = 0L;
|
|
|
|
FirstModel->SetRate(rate);
|
|
|
|
|
|
|
|
} else { // subsequent model
|
|
|
|
|
|
|
|
while (model_iterator->NextModel != 0L) {
|
|
|
|
model_iterator = model_iterator->NextModel;
|
|
|
|
}
|
|
|
|
model_iterator->NextModel = model;
|
|
|
|
model_iterator->NextModel->SetRate(rate);
|
|
|
|
|
|
|
|
}
|
2004-06-14 11:40:45 +00:00
|
|
|
|
1999-02-05 21:26:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
1999-02-05 21:26:01 +00:00
|
|
|
|
|
|
|
bool FGFDMExec::Run(void)
|
|
|
|
{
|
|
|
|
FGModel* model_iterator;
|
|
|
|
|
|
|
|
model_iterator = FirstModel;
|
|
|
|
if (model_iterator == 0L) return false;
|
|
|
|
|
2001-12-13 04:48:34 +00:00
|
|
|
Debug(2);
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2002-09-05 13:55:16 +00:00
|
|
|
for (unsigned int i=1; i<SlaveFDMList.size(); i++) {
|
|
|
|
// SlaveFDMList[i]->exec->State->Initialize(); // Transfer state to the slave FDM
|
|
|
|
// SlaveFDMList[i]->exec->Run();
|
2002-03-23 00:29:21 +00:00
|
|
|
}
|
|
|
|
|
2002-08-05 20:13:34 +00:00
|
|
|
while (model_iterator != 0L) {
|
|
|
|
model_iterator->Run();
|
1999-02-05 21:26:01 +00:00
|
|
|
model_iterator = model_iterator->NextModel;
|
|
|
|
}
|
|
|
|
|
2001-11-24 22:13:04 +00:00
|
|
|
frame = Frame++;
|
2006-01-12 15:04:22 +00:00
|
|
|
if (!Holding()) State->IncrTime();
|
1999-02-05 21:26:01 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2006-01-12 15:04:22 +00:00
|
|
|
State->SuspendIntegration();
|
2002-09-22 15:31:09 +00:00
|
|
|
State->Initialize(IC);
|
1999-08-17 21:18:11 +00:00
|
|
|
Run();
|
2006-01-12 15:04:22 +00:00
|
|
|
State->ResumeIntegration();
|
2003-03-23 15:12:35 +00:00
|
|
|
|
1999-08-17 21:18:11 +00:00
|
|
|
return true;
|
|
|
|
}
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
1999-08-17 21:18:11 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
void FGFDMExec::SetGroundCallback(FGGroundCallback* p)
|
|
|
|
{
|
|
|
|
if (GroundCallback) delete GroundCallback;
|
|
|
|
|
2005-05-22 08:06:47 +00:00
|
|
|
GroundCallback = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2002-03-23 00:29:21 +00:00
|
|
|
vector <string> FGFDMExec::EnumerateFDMs(void)
|
|
|
|
{
|
|
|
|
vector <string> FDMList;
|
|
|
|
|
|
|
|
FDMList.push_back(Aircraft->GetAircraftName());
|
|
|
|
|
2002-04-30 13:42:26 +00:00
|
|
|
for (unsigned int i=1; i<SlaveFDMList.size(); i++) {
|
2002-03-23 00:29:21 +00:00
|
|
|
FDMList.push_back(SlaveFDMList[i]->exec->GetAircraft()->GetAircraftName());
|
|
|
|
}
|
|
|
|
|
|
|
|
return FDMList;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2004-06-27 19:35:54 +00:00
|
|
|
bool FGFDMExec::LoadModel(string AircraftPath, string EnginePath, string model,
|
|
|
|
bool addModelToPath)
|
2003-03-23 15:12:35 +00:00
|
|
|
{
|
|
|
|
FGFDMExec::AircraftPath = AircraftPath;
|
|
|
|
FGFDMExec::EnginePath = EnginePath;
|
|
|
|
|
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
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2004-06-27 19:35:54 +00:00
|
|
|
bool FGFDMExec::LoadModel(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;
|
2006-01-12 15:04:22 +00:00
|
|
|
string separator = "/";
|
|
|
|
|
|
|
|
# ifdef macintosh
|
|
|
|
separator = ";";
|
|
|
|
# endif
|
2001-07-10 15:56:38 +00:00
|
|
|
|
2002-09-22 15:31:09 +00:00
|
|
|
if( AircraftPath.empty() || EnginePath.empty() ) {
|
|
|
|
cerr << "Error: attempted to load aircraft with undefined ";
|
|
|
|
cerr << "aircraft and engine paths" << endl;
|
|
|
|
return false;
|
|
|
|
}
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2004-06-27 19:35:54 +00:00
|
|
|
aircraftCfgFileName = AircraftPath;
|
2006-01-12 15:04:22 +00:00
|
|
|
if (addModelToPath) aircraftCfgFileName += separator + model;
|
|
|
|
aircraftCfgFileName += separator + model + ".xml";
|
2001-07-10 15:56:38 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
FGXMLParse *XMLParse = new FGXMLParse();
|
|
|
|
Element* element = 0L;
|
|
|
|
Element* document;
|
|
|
|
|
|
|
|
ifstream input_file(aircraftCfgFileName.c_str());
|
|
|
|
readXML(input_file, *XMLParse);
|
|
|
|
document = XMLParse->GetDocument();
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2002-09-22 15:31:09 +00:00
|
|
|
modelName = model;
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
if (modelLoaded) {
|
|
|
|
DeAllocate();
|
|
|
|
Allocate();
|
|
|
|
}
|
2001-06-05 20:58:48 +00:00
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
ReadPrologue(document);
|
|
|
|
element = document->GetElement();
|
|
|
|
|
|
|
|
bool result = true;
|
|
|
|
while (element && result) {
|
|
|
|
string element_name = element->GetName();
|
|
|
|
if (element_name == "fileheader" ) result = ReadFileHeader(element);
|
|
|
|
else if (element_name == "slave") result = ReadSlave(element);
|
|
|
|
else if (element_name == "metrics") result = Aircraft->Load(element);
|
|
|
|
else if (element_name == "mass_balance") result = MassBalance->Load(element);
|
|
|
|
else if (element_name == "ground_reactions") result = GroundReactions->Load(element);
|
|
|
|
else if (element_name == "propulsion") result = Propulsion->Load(element);
|
|
|
|
else if (element_name == "autopilot") result = FCS->Load(element);
|
|
|
|
else if (element_name == "flight_control") result = FCS->Load(element);
|
|
|
|
else if (element_name == "aerodynamics") result = Aerodynamics->Load(element);
|
|
|
|
else if (element_name == "input") result = Input->Load(element);
|
|
|
|
else if (element_name == "output") {
|
|
|
|
FGOutput* Output = new FGOutput(this);
|
|
|
|
Output->InitModel();
|
|
|
|
Schedule(Output, 1);
|
|
|
|
Outputs.push_back(Output);
|
|
|
|
result = Output->Load(element);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cerr << "Found unexpected subsystem: " << element_name << ", exiting." << endl;
|
|
|
|
result = false;
|
|
|
|
break;
|
2001-12-24 13:54:55 +00:00
|
|
|
}
|
2006-01-12 15:04:22 +00:00
|
|
|
element = document->GetNextElement();
|
2001-12-24 13:54:55 +00:00
|
|
|
}
|
2000-11-03 23:02:47 +00:00
|
|
|
|
|
|
|
if (result) {
|
|
|
|
modelLoaded = true;
|
2001-12-13 04:48:34 +00:00
|
|
|
Debug(3);
|
2000-10-12 01:06:31 +00:00
|
|
|
} else {
|
2001-03-30 01:04:50 +00:00
|
|
|
cerr << fgred
|
2006-01-12 15:04:22 +00:00
|
|
|
<< " JSBSim failed to load aircraft and/or engine model"
|
2001-03-30 01:04:50 +00:00
|
|
|
<< fgdef << endl;
|
2006-01-12 15:04:22 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct PropertyCatalogStructure masterPCS;
|
|
|
|
masterPCS.base_string = "";
|
|
|
|
masterPCS.node = (FGPropertyManager*)master;
|
|
|
|
|
|
|
|
BuildPropertyCatalog(&masterPCS);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGFDMExec::BuildPropertyCatalog(struct PropertyCatalogStructure* pcs)
|
|
|
|
{
|
|
|
|
struct PropertyCatalogStructure* pcsNew = new struct PropertyCatalogStructure;
|
|
|
|
int node_idx = 0;
|
|
|
|
char int_buf[10];
|
|
|
|
|
|
|
|
for (int i=0; i<pcs->node->nChildren(); i++) {
|
|
|
|
pcsNew->base_string = pcs->base_string + "/" + pcs->node->getChild(i)->getName();
|
|
|
|
node_idx = pcs->node->getChild(i)->getIndex();
|
|
|
|
sprintf(int_buf, "[%d]", node_idx);
|
|
|
|
if (node_idx != 0) pcsNew->base_string += string(int_buf);
|
|
|
|
if (pcs->node->getChild(i)->nChildren() == 0) {
|
|
|
|
PropertyCatalog.push_back(pcsNew->base_string);
|
|
|
|
} else {
|
|
|
|
pcsNew->node = (FGPropertyManager*)pcs->node->getChild(i);
|
|
|
|
BuildPropertyCatalog(pcsNew);
|
|
|
|
}
|
2000-11-03 23:02:47 +00:00
|
|
|
}
|
2006-01-12 15:04:22 +00:00
|
|
|
delete pcsNew;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
string FGFDMExec::QueryPropertyCatalog(string in)
|
|
|
|
{
|
|
|
|
string results="";
|
|
|
|
for (int i=0; i<PropertyCatalog.size(); i++) {
|
|
|
|
if (PropertyCatalog[i].find(in) != string::npos) results += PropertyCatalog[i] + "\n";
|
|
|
|
}
|
|
|
|
if (results.empty()) return "No matches found\n";
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
bool FGFDMExec::ReadFileHeader(Element* el)
|
|
|
|
{
|
|
|
|
bool result = true; // true for success
|
|
|
|
|
|
|
|
if (debug_lvl & ~1) return result;
|
|
|
|
|
|
|
|
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;
|
|
|
|
if (el->FindElement("description"))
|
|
|
|
cout << " Description: " << el->FindElement("description")->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");
|
2001-12-24 13:54:55 +00:00
|
|
|
Aircraft->SetAircraftName(AircraftName);
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
bool FGFDMExec::ReadSlave(Element* el)
|
2002-03-23 00:29:21 +00:00
|
|
|
{
|
|
|
|
// Add a new slaveData object to the slave FDM list
|
|
|
|
// Populate that slaveData element with a new FDMExec object
|
|
|
|
// Set the IsSlave flag for that FDMExec object
|
|
|
|
// Get the aircraft name
|
|
|
|
// set debug level to print out no additional data for slave objects
|
|
|
|
// Load the model given the aircraft name
|
|
|
|
// reset debug level to prior setting
|
|
|
|
|
|
|
|
int saved_debug_lvl = debug_lvl;
|
2002-08-28 13:46:42 +00:00
|
|
|
string token;
|
2002-03-23 00:29:21 +00:00
|
|
|
|
|
|
|
SlaveFDMList.push_back(new slaveData);
|
|
|
|
SlaveFDMList.back()->exec = new FGFDMExec();
|
|
|
|
SlaveFDMList.back()->exec->SetSlave();
|
2006-01-12 15:04:22 +00:00
|
|
|
/*
|
|
|
|
string AircraftName = AC_cfg->GetValue("file");
|
2002-03-23 00:29:21 +00:00
|
|
|
|
2002-08-28 13:46:42 +00:00
|
|
|
debug_lvl = 0; // turn off debug output for slave vehicle
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2002-09-22 15:31:09 +00:00
|
|
|
SlaveFDMList.back()->exec->SetAircraftPath( AircraftPath );
|
|
|
|
SlaveFDMList.back()->exec->SetEnginePath( EnginePath );
|
|
|
|
SlaveFDMList.back()->exec->LoadModel(AircraftName);
|
2002-08-28 13:46:42 +00:00
|
|
|
debug_lvl = saved_debug_lvl; // turn debug output back on for master vehicle
|
|
|
|
|
|
|
|
AC_cfg->GetNextConfigLine();
|
|
|
|
while ((token = AC_cfg->GetValue()) != string("/SLAVE")) {
|
|
|
|
*AC_cfg >> token;
|
2006-01-12 15:04:22 +00:00
|
|
|
if (token == "xloc") { *AC_cfg >> SlaveFDMList.back()->x; }
|
|
|
|
else if (token == "yloc") { *AC_cfg >> SlaveFDMList.back()->y; }
|
|
|
|
else if (token == "zloc") { *AC_cfg >> SlaveFDMList.back()->z; }
|
|
|
|
else if (token == "pitch") { *AC_cfg >> SlaveFDMList.back()->pitch;}
|
|
|
|
else if (token == "yaw") { *AC_cfg >> SlaveFDMList.back()->yaw; }
|
|
|
|
else if (token == "roll") { *AC_cfg >> SlaveFDMList.back()->roll; }
|
2002-08-28 13:46:42 +00:00
|
|
|
else cerr << "Unknown identifier: " << token << " in slave vehicle definition" << endl;
|
|
|
|
}
|
2006-01-12 15:04:22 +00:00
|
|
|
*/
|
2002-08-28 13:46:42 +00:00
|
|
|
if (debug_lvl > 0) {
|
|
|
|
cout << " X = " << SlaveFDMList.back()->x << endl;
|
|
|
|
cout << " Y = " << SlaveFDMList.back()->y << endl;
|
|
|
|
cout << " Z = " << SlaveFDMList.back()->z << endl;
|
|
|
|
cout << " Pitch = " << SlaveFDMList.back()->pitch << endl;
|
|
|
|
cout << " Yaw = " << SlaveFDMList.back()->yaw << endl;
|
|
|
|
cout << " Roll = " << SlaveFDMList.back()->roll << endl;
|
|
|
|
}
|
2002-03-23 00:29:21 +00:00
|
|
|
|
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
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
void FGFDMExec::DisableOutput(void)
|
2001-12-24 13:54:55 +00:00
|
|
|
{
|
2006-01-12 15:04:22 +00:00
|
|
|
for (int i=0; i<Outputs.size(); i++) {
|
|
|
|
Outputs[i]->Disable();
|
2001-12-14 03:35:41 +00:00
|
|
|
}
|
2001-12-24 13:54:55 +00:00
|
|
|
}
|
2001-12-14 03:35:41 +00:00
|
|
|
|
2001-12-24 13:54:55 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
void FGFDMExec::EnableOutput(void)
|
2001-12-24 13:54:55 +00:00
|
|
|
{
|
2006-01-12 15:04:22 +00:00
|
|
|
for (int i=0; i<Outputs.size(); i++) {
|
|
|
|
Outputs[i]->Enable();
|
2001-12-24 13:54:55 +00:00
|
|
|
}
|
2001-03-30 01:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2000-10-02 23:07:30 +00:00
|
|
|
|
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
|
|
|
cout << "DoTrim called" << endl;
|
2001-12-24 13:54:55 +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
|
|
|
}
|
2006-01-12 15:04:22 +00:00
|
|
|
saved_time = State->Getsim_time();
|
|
|
|
FGTrim trim(this, (JSBSim::TrimMode)mode);
|
|
|
|
if ( !trim.DoTrim() ) cerr << endl << "Trim Failed" << endl << endl;
|
|
|
|
trim.Report();
|
|
|
|
State->Setsim_time(saved_time);
|
2000-10-02 23:07:30 +00:00
|
|
|
}
|
2001-03-30 01:04:50 +00:00
|
|
|
|
2002-03-20 12:45:02 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
void FGFDMExec::UseAtmosphereMSIS(void)
|
|
|
|
{
|
|
|
|
FGAtmosphere *oldAtmosphere = Atmosphere;
|
|
|
|
Atmosphere = new MSIS(this);
|
|
|
|
if (!Atmosphere->InitModel()) {
|
|
|
|
cerr << fgred << "MSIS Atmosphere model init failed" << fgdef << endl;
|
|
|
|
Error+=1;
|
|
|
|
}
|
|
|
|
delete oldAtmosphere;
|
2002-03-20 12:45:02 +00:00
|
|
|
}
|
|
|
|
|
2002-09-22 15:31:09 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2006-01-12 15:04:22 +00:00
|
|
|
void FGFDMExec::UseAtmosphereMars(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
FGAtmosphere *oldAtmosphere = Atmosphere;
|
|
|
|
Atmosphere = new FGMars(this);
|
|
|
|
if (!Atmosphere->InitModel()) {
|
|
|
|
cerr << fgred << "Mars Atmosphere model init failed" << fgdef << endl;
|
|
|
|
Error+=1;
|
|
|
|
}
|
|
|
|
delete oldAtmosphere;
|
|
|
|
*/
|
2002-09-22 15:31:09 +00:00
|
|
|
}
|
2004-06-14 11:40:45 +00:00
|
|
|
|
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
|
|
|
|
cout << "\n\n " << highint << underon << "JSBSim Flight Dynamics Model v"
|
|
|
|
<< JSBSim_version << underoff << normint << endl;
|
|
|
|
cout << halfint << " [cfg file spec v" << needed_cfg_version << "]\n\n";
|
|
|
|
cout << normint << "JSBSim startup beginning ...\n\n";
|
|
|
|
} 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: "
|
2006-01-12 15:04:22 +00:00
|
|
|
<< State->Getsim_time() << " dt: " << State->Getdt() << 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
|
|
|
|