JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGFDMExec Class Reference

Detailed Description

Encapsulates the JSBSim simulation executive.

This class is the executive class through which all other simulation classes are instantiated, initialized, and run. When integrated with FlightGear (or other flight simulator) this class is typically instantiated by an interface class on the simulator side.

At the time of simulation initialization, the interface class creates an instance of this executive class. The executive is subsequently directed to load the chosen aircraft specification file:

fdmex = new FGFDMExec( ... );
result = fdmex->LoadModel( ... );
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184

When an aircraft model is loaded, the config file is parsed and for each of the sections of the config file (propulsion, flight control, etc.) the corresponding Load() method is called (e.g. FGFCS::Load()).

Subsequent to the creation of the executive and loading of the model, initialization is performed. Initialization involves copying control inputs into the appropriate JSBSim data storage locations, configuring it for the set of user supplied initial conditions, and then copying state variables from JSBSim. The state variables are used to drive the instrument displays and to place the vehicle model in world space for visual rendering:

copy_to_JSBsim(); // copy control inputs to JSBSim
fdmex->RunIC(); // loop JSBSim once w/o integrating
copy_from_JSBsim(); // update the bus

Once initialization is complete, cyclic execution proceeds:

copy_to_JSBsim(); // copy control inputs to JSBSim
fdmex->Run(); // execute JSBSim
copy_from_JSBsim(); // update the bus

JSBSim can be used in a standalone mode by creating a compact stub program that effectively performs the same progression of steps as outlined above for the integrated version, but with two exceptions. First, the copy_to_JSBSim() and copy_from_JSBSim() functions are not used because the control inputs are handled directly by the scripting facilities and outputs are handled by the output (data logging) class. Second, the name of a script file can be supplied to the stub program. Scripting (see FGScript) provides a way to supply command inputs to the simulation:

FDMExec = new JSBSim::FGFDMExec();
FDMExec->LoadScript( ScriptName ); // the script loads the aircraft and ICs
result = FDMExec->Run();
while (result) { // cyclic execution
result = FDMExec->Run(); // execute JSBSim
}
bool LoadScript(const SGPath &Script, double deltaT=0.0, const SGPath &initfile=SGPath())
Load a script.
bool Run(void)
This function executes each scheduled model in succession.

The standalone mode has been useful for verifying changes before committing updates to the source code repository. It is also useful for running sets of tests that reveal some aspects of simulated aircraft performance, such as range, time-to-climb, takeoff distance, etc.

JSBSim Debugging Directives

This describes to any interested entity the debug level requested by setting the JSBSIM_DEBUG environment variable. 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

Properties

  • simulator/do_trim (write only) Can be set to the integer equivalent to one of tLongitudinal (0), tFull (1), tGround (2), tPullup (3), tCustom (4), tTurn (5). Setting this to a legal value (such as by a script) causes a trim to be performed. This property actually maps toa function call of DoTrim().
Author
Jon S. Berndt
Version
Revision
1.106

Definition at line 183 of file FGFDMExec.h.

#include <FGFDMExec.h>

+ Inheritance diagram for FGFDMExec:
+ Collaboration diagram for FGFDMExec:

Classes

struct  PropertyCatalogStructure
 

Public Types

enum  eModels {
  ePropagate =0 , eInput , eInertial , eAtmosphere ,
  eWinds , eSystems , eMassBalance , eAuxiliary ,
  ePropulsion , eAerodynamics , eGroundReactions , eExternalReactions ,
  eBuoyantForces , eAircraft , eAccelerations , eOutput ,
  eNumStandardModels
}
 
- Public Types inherited from FGJSBBase
enum  { eL = 1 , eM , eN }
 Moments L, M, N. More...
 
enum  { eP = 1 , eQ , eR }
 Rates P, Q, R. More...
 
enum  { eU = 1 , eV , eW }
 Velocities U, V, W. More...
 
enum  { eX = 1 , eY , eZ }
 Positions X, Y, Z. More...
 
enum  { ePhi = 1 , eTht , ePsi }
 Euler angles Phi, Theta, Psi. More...
 
enum  { eDrag = 1 , eSide , eLift }
 Stability axis forces, Drag, Side force, Lift. More...
 
enum  { eRoll = 1 , ePitch , eYaw }
 Local frame orientation Roll, Pitch, Yaw. More...
 
enum  { eNorth = 1 , eEast , eDown }
 Local frame position North, East, Down. More...
 
enum  { eLat = 1 , eLong , eRad }
 Locations Radius, Latitude, Longitude. More...
 
enum  {
  inNone = 0 , inDegrees , inRadians , inMeters ,
  inFeet
}
 Conversion specifiers. More...
 

Public Member Functions

 FGFDMExec (FGPropertyManager *root=nullptr, std::shared_ptr< unsigned int > fdmctr=nullptr)
 Default constructor.
 
 ~FGFDMExec ()
 Default destructor.
 
void AddTemplateFunc (const std::string &name, Element *el)
 
void BuildPropertyCatalog (struct PropertyCatalogStructure *pcs)
 Builds a catalog of properties.
 
void CheckIncrementalHold (void)
 Checks if required to hold afer increment.
 
void DisableOutput (void)
 Disables data logging to all outputs.
 
void DoLinearization (int)
 Executes linearization with state-space output You must trim first to get an accurate state-space model.
 
void DoTrim (int mode)
 Executes trimming in the selected mode.
 
void EnableIncrementThenHold (int Timesteps)
 Turn on hold after increment.
 
void EnableOutput (void)
 Enables data logging to all outputs.
 
std::vector< std::string > EnumerateFDMs (void)
 Returns a vector of strings representing the names of all loaded models (future)
 
void ForceOutput (int idx=0)
 Forces the specified output object to print its items once.
 
const SGPath & GetAircraftPath (void)
 Retrieves the aircraft path.
 
auto GetChildFDM (int i) const
 Gets a particular child FDM.
 
int GetDebugLevel (void) const
 Retrieves the current debug level setting.
 
double GetDeltaT (void) const
 Returns the simulation delta T.
 
const SGPath & GetEnginePath (void)
 Retrieves the engine path.
 
size_t GetFDMCount (void) const
 Gets the number of child FDMs.
 
unsigned int GetFrame (void) const
 Retrieves the current frame count.
 
const SGPath & GetFullAircraftPath (void)
 Retrieves the full aircraft path name.
 
bool GetHoldDown (void) const
 Gets the value of the property forces/hold-down.
 
const std::string & GetModelName (void) const
 Returns the model name.
 
std::string GetOutputFileName (int n) const
 Retrieves the current output filename.
 
const SGPath & GetOutputPath (void)
 Retrieves the path to the output files.
 
std::vector< std::string > & GetPropertyCatalog (void)
 
std::shared_ptr< FGPropertyManagerGetPropertyManager (void) const
 Returns a pointer to the property manager object.
 
double GetPropertyValue (const std::string &property)
 Retrieves the value of a property.
 
std::string GetPropulsionTankReport () const
 
auto GetRandomGenerator (void) const
 
const SGPath & GetRootDir (void) const
 Retrieve the Root Directory.
 
double GetSimTime (void) const
 Returns the cumulative simulation time in seconds.
 
const SGPath & GetSystemsPath (void)
 Retrieves the systems path.
 
FGTemplateFunc_ptr GetTemplateFunc (const std::string &name)
 
int GetTrimMode (void) const
 
bool GetTrimStatus (void) const
 
void Hold (void)
 Pauses execution by preventing time from incrementing.
 
bool Holding (void)
 Returns true if the simulation is Holding (i.e. simulation time is not moving).
 
double IncrTime (void)
 Increments the simulation time if not in Holding mode.
 
void Initialize (const FGInitialCondition *FGIC)
 Initializes the simulation with initial conditions.
 
bool IntegrationSuspended (void) const
 Returns the simulation suspension state.
 
bool LoadModel (const SGPath &AircraftPath, const SGPath &EnginePath, const SGPath &SystemsPath, const std::string &model, bool addModelToPath=true)
 Loads an aircraft model.
 
bool LoadModel (const std::string &model, bool addModelToPath=true)
 Loads an aircraft model.
 
bool LoadPlanet (const SGPath &PlanetPath, bool useAircraftPath=true)
 Loads the planet.
 
bool LoadScript (const SGPath &Script, double deltaT=0.0, const SGPath &initfile=SGPath())
 Load a script.
 
void PrintPropertyCatalog (void)
 
void PrintSimulationConfiguration (void) const
 
std::string QueryPropertyCatalog (const std::string &check, const std::string &end_of_line="\n")
 Retrieves property or properties matching the supplied string.
 
void ResetToInitialConditions (int mode)
 Resets the initial conditions object and prepares the simulation to run again.
 
void Resume (void)
 Resumes execution from a "Hold".
 
void ResumeIntegration (void)
 Resumes the simulation by resetting delta T to the correct value.
 
bool Run (void)
 This function executes each scheduled model in succession.
 
bool RunIC (void)
 Initializes the sim from the initial condition object and executes each scheduled model without integrating i.e.
 
bool SetAircraftPath (const SGPath &path)
 Set the path to the aircraft config file directories.
 
void SetChild (bool ch)
 Marks this instance of the Exec object as a "child" object.
 
void SetDebugLevel (int level)
 Sets the debug level.
 
void Setdt (double delta_t)
 Sets the integration time step for the simulation executive.
 
bool SetEnginePath (const SGPath &path)
 Set the path to the engine config file directories.
 
void SetHoldDown (bool hd)
 Sets the property forces/hold-down.
 
void SetLoggingRate (double rate)
 Sets the logging rate in Hz for all output objects (if any).
 
bool SetOutputDirectives (const SGPath &fname)
 Sets the output (logging) mechanism for this run.
 
bool SetOutputFileName (const int n, const std::string &fname)
 Sets (or overrides) the output filename.
 
bool SetOutputPath (const SGPath &path)
 Set the directory where the output files will be written.
 
void SetPropertyValue (const std::string &property, double value)
 Sets a property value.
 
void SetRootDir (const SGPath &rootDir)
 Set the root directory that is used to obtain absolute paths from relative paths.
 
double Setsim_time (double cur_time)
 Sets the current sim time.
 
bool SetSystemsPath (const SGPath &path)
 Set the path to the systems config file directories.
 
void SetTrimMode (int mode)
 
void SetTrimStatus (bool status)
 
void SuspendIntegration (void)
 Suspends the simulation and sets the delta T to zero.
 
void Unbind (void)
 Unbind all tied JSBSim properties.
 
Top-level executive State and Model retrieval mechanism

Returns the FGAtmosphere pointer.

std::shared_ptr< FGAtmosphereGetAtmosphere (void) const
 
std::shared_ptr< FGAccelerationsGetAccelerations (void) const
 Returns the FGAccelerations pointer.
 
std::shared_ptr< FGWindsGetWinds (void) const
 Returns the FGWinds pointer.
 
std::shared_ptr< FGFCSGetFCS (void) const
 Returns the FGFCS pointer.
 
std::shared_ptr< FGPropulsionGetPropulsion (void) const
 Returns the FGPropulsion pointer.
 
std::shared_ptr< FGMassBalanceGetMassBalance (void) const
 Returns the FGAircraft pointer.
 
std::shared_ptr< FGAerodynamicsGetAerodynamics (void) const
 Returns the FGAerodynamics pointer.
 
std::shared_ptr< FGInertialGetInertial (void) const
 Returns the FGInertial pointer.
 
std::shared_ptr< FGGroundReactionsGetGroundReactions (void) const
 Returns the FGGroundReactions pointer.
 
std::shared_ptr< FGExternalReactionsGetExternalReactions (void) const
 Returns the FGExternalReactions pointer.
 
std::shared_ptr< FGBuoyantForcesGetBuoyantForces (void) const
 Returns the FGBuoyantForces pointer.
 
std::shared_ptr< FGAircraftGetAircraft (void) const
 Returns the FGAircraft pointer.
 
std::shared_ptr< FGPropagateGetPropagate (void) const
 Returns the FGPropagate pointer.
 
std::shared_ptr< FGAuxiliaryGetAuxiliary (void) const
 Returns the FGAuxiliary pointer.
 
std::shared_ptr< FGInputGetInput (void) const
 Returns the FGInput pointer.
 
std::shared_ptr< FGOutputGetOutput (void) const
 Returns the FGOutput pointer.
 
std::shared_ptr< FGScriptGetScript (void) const
 Retrieves the script object.
 
std::shared_ptr< FGInitialConditionGetIC (void) const
 Returns a pointer to the FGInitialCondition object.
 
std::shared_ptr< FGTrimGetTrim (void)
 Returns a pointer to the FGTrim object.
 
- Public Member Functions inherited from FGJSBBase
 FGJSBBase ()
 Constructor for FGJSBBase.
 
virtual ~FGJSBBase ()
 Destructor for FGJSBBase.
 
void disableHighLighting (void)
 Disables highlighting in the console output.
 

Static Public Attributes

static const int DONT_EXECUTE_RUN_IC = 0x2
 
static const int START_NEW_OUTPUT = 0x1
 Mode flags for ResetToInitialConditions.
 
- Static Public Attributes inherited from FGJSBBase
static char highint [5] = {27, '[', '1', 'm', '\0' }
 highlights text
 
static char halfint [5] = {27, '[', '2', 'm', '\0' }
 low intensity text
 
static char normint [6] = {27, '[', '2', '2', 'm', '\0' }
 normal intensity text
 
static char reset [5] = {27, '[', '0', 'm', '\0' }
 resets text properties
 
static char underon [5] = {27, '[', '4', 'm', '\0' }
 underlines text
 
static char underoff [6] = {27, '[', '2', '4', 'm', '\0' }
 underline off
 
static char fgblue [6] = {27, '[', '3', '4', 'm', '\0' }
 blue text
 
static char fgcyan [6] = {27, '[', '3', '6', 'm', '\0' }
 cyan text
 
static char fgred [6] = {27, '[', '3', '1', 'm', '\0' }
 red text
 
static char fggreen [6] = {27, '[', '3', '2', 'm', '\0' }
 green text
 
static char fgdef [6] = {27, '[', '3', '9', 'm', '\0' }
 default text
 
static short debug_lvl = 1
 

Additional Inherited Members

- Static Public Member Functions inherited from FGJSBBase
static const std::string & GetVersion (void)
 Returns the version number of JSBSim.
 
static constexpr double KelvinToFahrenheit (double kelvin)
 Converts from degrees Kelvin to degrees Fahrenheit.
 
static constexpr double CelsiusToRankine (double celsius)
 Converts from degrees Celsius to degrees Rankine.
 
static constexpr double RankineToCelsius (double rankine)
 Converts from degrees Rankine to degrees Celsius.
 
static constexpr double KelvinToRankine (double kelvin)
 Converts from degrees Kelvin to degrees Rankine.
 
static constexpr double RankineToKelvin (double rankine)
 Converts from degrees Rankine to degrees Kelvin.
 
static constexpr double FahrenheitToCelsius (double fahrenheit)
 Converts from degrees Fahrenheit to degrees Celsius.
 
static constexpr double CelsiusToFahrenheit (double celsius)
 Converts from degrees Celsius to degrees Fahrenheit.
 
static constexpr double CelsiusToKelvin (double celsius)
 Converts from degrees Celsius to degrees Kelvin.
 
static constexpr double KelvinToCelsius (double kelvin)
 Converts from degrees Kelvin to degrees Celsius.
 
static constexpr double FeetToMeters (double measure)
 Converts from feet to meters.
 
static bool EqualToRoundoff (double a, double b)
 Finite precision comparison.
 
static bool EqualToRoundoff (float a, float b)
 Finite precision comparison.
 
static bool EqualToRoundoff (float a, double b)
 Finite precision comparison.
 
static bool EqualToRoundoff (double a, float b)
 Finite precision comparison.
 
static constexpr double Constrain (double min, double value, double max)
 Constrain a value between a minimum and a maximum value.
 
static constexpr double sign (double num)
 
- Static Protected Member Functions inherited from FGJSBBase
static std::string CreateIndexedPropertyName (const std::string &Property, int index)
 
- Static Protected Attributes inherited from FGJSBBase
static constexpr double radtodeg = 180. / M_PI
 
static constexpr double degtorad = M_PI / 180.
 
static constexpr double hptoftlbssec = 550.0
 
static constexpr double psftoinhg = 0.014138
 
static constexpr double psftopa = 47.88
 
static constexpr double fttom = 0.3048
 
static constexpr double ktstofps = 1852./(3600*fttom)
 
static constexpr double fpstokts = 1.0 / ktstofps
 
static constexpr double inchtoft = 1.0/12.0
 
static constexpr double m3toft3 = 1.0/(fttom*fttom*fttom)
 
static constexpr double in3tom3 = inchtoft*inchtoft*inchtoft/m3toft3
 
static constexpr double inhgtopa = 3386.38
 
static constexpr double slugtolb = 32.174049
 Note that definition of lbtoslug by the inverse of slugtolb and not to a different constant you can also get from some tables will make lbtoslug*slugtolb == 1 up to the magnitude of roundoff.
 
static constexpr double lbtoslug = 1.0/slugtolb
 
static constexpr double kgtolb = 2.20462
 
static constexpr double kgtoslug = 0.06852168
 
static const std::string needed_cfg_version = "2.0"
 
static const std::string JSBSim_version = JSBSIM_VERSION " " __DATE__ " " __TIME__
 

Member Enumeration Documentation

◆ eModels

enum eModels

Definition at line 224 of file FGFDMExec.h.

224 { ePropagate=0,
225 eInput,
226 eInertial,
227 eAtmosphere,
228 eWinds,
229 eSystems,
230 eMassBalance,
231 eAuxiliary,
232 ePropulsion,
233 eAerodynamics,
234 eGroundReactions,
235 eExternalReactions,
236 eBuoyantForces,
237 eAircraft,
238 eAccelerations,
239 eOutput,
240 eNumStandardModels };

Constructor & Destructor Documentation

◆ FGFDMExec()

FGFDMExec ( FGPropertyManager root = nullptr,
std::shared_ptr< unsigned int >  fdmctr = nullptr 
)

Default constructor.

Definition at line 79 of file FGFDMExec.cpp.

80 : RandomSeed(0), RandomGenerator(make_shared<RandomNumberGenerator>(RandomSeed)),
81 FDMctr(fdmctr)
82{
83 Frame = 0;
84 disperse = 0;
85
86 RootDir = "";
87
88 modelLoaded = false;
89 IsChild = false;
90 holding = false;
91 Terminate = false;
92 HoldDown = false;
93
94 IncrementThenHolding = false; // increment then hold is off by default
95 TimeStepsUntilHold = -1;
96
97 sim_time = 0.0;
98 dT = 1.0/120.0; // a default timestep size. This is needed for when JSBSim is
99 // run in standalone mode with no initialization file.
100
101 AircraftPath = "aircraft";
102 EnginePath = "engine";
103 SystemsPath = "systems";
104
105 try {
106 char* num = getenv("JSBSIM_DEBUG");
107 if (num) debug_lvl = atoi(num); // set debug level
108 } catch (...) { // if error set to 1
109 debug_lvl = 1;
110 }
111
112 if (!FDMctr) {
113 FDMctr = std::make_shared<unsigned int>(); // Create and initialize the child FDM counter
114 *FDMctr = 0;
115 }
116
117 // Store this FDM's ID
118 IdFDM = *FDMctr; // The main (parent) JSBSim instance is always the "zeroth"
119
120 // Prepare FDMctr for the next child FDM id
121 (*FDMctr)++; // instance. "child" instances are loaded last.
122
123 if (root == nullptr) // Then this is the root FDM
124 Root = new FGPropertyNode();
125 else
126 Root = root->GetNode();
127
128 FGPropertyNode* instanceRoot = Root->GetNode("fdm/jsbsim", IdFDM, true);
129 instance = std::make_shared<FGPropertyManager>(instanceRoot);
130
131 try {
132 char* num = getenv("JSBSIM_DISPERSE");
133 if (num) {
134 if (atoi(num) != 0) disperse = 1; // set dispersions on
135 }
136 } catch (...) { // if error set to false
137 disperse = 0;
138 std::cerr << "Could not process JSBSIM_DISPERSIONS environment variable: Assumed NO dispersions." << endl;
139 }
140
141 Debug(0);
142 // this is to catch errors in binding member functions to the property tree.
143 try {
144 Allocate();
145 }
146 catch (const string& msg) {
147 cerr << endl << "Caught error: " << msg << endl;
148 throw;
149 }
150 catch (const BaseException& e) {
151 cout << endl << "Caught error: " << e.what() << endl;
152 throw;
153 }
154
155 trim_status = false;
156 ta_mode = 99;
157 trim_completed = 0;
158
159 Constructing = true;
160 typedef int (FGFDMExec::*iPMF)(void) const;
161 instance->Tie("simulation/do_simple_trim", this, (iPMF)0, &FGFDMExec::DoTrim);
162 instance->Tie("simulation/do_linearization", this, (iPMF)0, &FGFDMExec::DoLinearization);
163 instance->Tie("simulation/reset", this, (iPMF)0, &FGFDMExec::ResetToInitialConditions);
164 instance->Tie("simulation/disperse", this, &FGFDMExec::GetDisperse);
165 instance->Tie("simulation/randomseed", this, (iPMF)&FGFDMExec::SRand, &FGFDMExec::SRand);
166 instance->Tie("simulation/terminate", (bool *)&Terminate);
167 instance->Tie("simulation/pause", (bool *)&holding);
168 instance->Tie("simulation/sim-time-sec", this, &FGFDMExec::GetSimTime);
169 instance->Tie("simulation/dt", this, &FGFDMExec::GetDeltaT);
170 instance->Tie("simulation/jsbsim-debug", this, &FGFDMExec::GetDebugLevel, &FGFDMExec::SetDebugLevel);
171 instance->Tie("simulation/frame", (int *)&Frame);
172 instance->Tie("simulation/trim-completed", (int *)&trim_completed);
173 instance->Tie("forces/hold-down", this, &FGFDMExec::GetHoldDown, &FGFDMExec::SetHoldDown);
174
175 Constructing = false;
176}
bool GetHoldDown(void) const
Gets the value of the property forces/hold-down.
Definition FGFDMExec.h:616
void DoLinearization(int)
Executes linearization with state-space output You must trim first to get an accurate state-space mod...
void SetDebugLevel(int level)
Sets the debug level.
Definition FGFDMExec.h:509
int GetDebugLevel(void) const
Retrieves the current debug level setting.
Definition FGFDMExec.h:601
double GetDeltaT(void) const
Returns the simulation delta T.
Definition FGFDMExec.h:552
void DoTrim(int mode)
Executes trimming in the selected mode.
void ResetToInitialConditions(int mode)
Resets the initial conditions object and prepares the simulation to run again.
double GetSimTime(void) const
Returns the cumulative simulation time in seconds.
Definition FGFDMExec.h:549
void SetHoldDown(bool hd)
Sets the property forces/hold-down.
+ Here is the call graph for this function:

◆ ~FGFDMExec()

~FGFDMExec ( )

Default destructor.

Definition at line 180 of file FGFDMExec.cpp.

181{
182 try {
183 Unbind();
184 DeAllocate();
185 } catch (const string& msg ) {
186 cout << "Caught error: " << msg << endl;
187 }
188
189 if (!FDMctr) (*FDMctr)--;
190
191 Debug(1);
192}
void Unbind(void)
Unbind all tied JSBSim properties.
Definition FGFDMExec.h:243
+ Here is the call graph for this function:

Member Function Documentation

◆ AddTemplateFunc()

void AddTemplateFunc ( const std::string &  name,
Element el 
)
inline

Definition at line 622 of file FGFDMExec.h.

622 {
623 TemplateFunctions[name] = std::make_shared<FGTemplateFunc>(this, el);
624 }

◆ BuildPropertyCatalog()

void BuildPropertyCatalog ( struct PropertyCatalogStructure pcs)

Builds a catalog of properties.

This function descends the property tree and creates a list (an STL vector) containing the name and node for all properties.

Parameters
pcsThe "root" property catalog structure pointer.

Definition at line 1071 of file FGFDMExec.cpp.

1072{
1073 auto pcsNew = std::make_unique<struct PropertyCatalogStructure>();
1074
1075 for (int i=0; i<pcs->node->nChildren(); i++) {
1076 string access="";
1077 pcsNew->base_string = pcs->base_string + "/" + pcs->node->getChild(i)->getNameString();
1078 int node_idx = pcs->node->getChild(i)->getIndex();
1079 if (node_idx != 0) {
1080 pcsNew->base_string = CreateIndexedPropertyName(pcsNew->base_string, node_idx);
1081 }
1082 if (pcs->node->getChild(i)->nChildren() == 0) {
1083 if (pcsNew->base_string.substr(0,12) == string("/fdm/jsbsim/")) {
1084 pcsNew->base_string = pcsNew->base_string.erase(0,12);
1085 }
1086 if (pcs->node->getChild(i)->getAttribute(SGPropertyNode::READ)) access="R";
1087 if (pcs->node->getChild(i)->getAttribute(SGPropertyNode::WRITE)) access+="W";
1088 PropertyCatalog.push_back(pcsNew->base_string+" ("+access+")");
1089 } else {
1090 pcsNew->node = (FGPropertyNode*)pcs->node->getChild(i);
1091 BuildPropertyCatalog(pcsNew.get());
1092 }
1093 }
1094}
void BuildPropertyCatalog(struct PropertyCatalogStructure *pcs)
Builds a catalog of properties.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ CheckIncrementalHold()

void CheckIncrementalHold ( void  )

Checks if required to hold afer increment.

Definition at line 1275 of file FGFDMExec.cpp.

1276{
1277 // Only check if increment then hold is on
1278 if( IncrementThenHolding ) {
1279
1280 if (TimeStepsUntilHold == 0) {
1281
1282 // Should hold simulation if TimeStepsUntilHold has reached zero
1283 holding = true;
1284
1285 // Still need to decrement TimeStepsUntilHold as value of -1
1286 // indicates that incremental then hold is turned off
1287 IncrementThenHolding = false;
1288 TimeStepsUntilHold--;
1289
1290 } else if ( TimeStepsUntilHold > 0 ) {
1291 // Keep decrementing until 0 is reached
1292 TimeStepsUntilHold--;
1293 }
1294 }
1295}

◆ DisableOutput()

void DisableOutput ( void  )
inline

Disables data logging to all outputs.

Definition at line 484 of file FGFDMExec.h.

484{ Output->Disable(); }
void Disable(void)
Disables the output generation for all output instances.
Definition FGOutput.h:182

◆ DoLinearization()

void DoLinearization ( int  )

Executes linearization with state-space output You must trim first to get an accurate state-space model.

Definition at line 1320 of file FGFDMExec.cpp.

1321{
1322 double dt0 = this->GetDeltaT();
1323 FGLinearization lin(this);
1324 lin.WriteScicoslab();
1325 this->Setdt(dt0);
1326}
void Setdt(double delta_t)
Sets the integration time step for the simulation executive.
Definition FGFDMExec.h:571
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ DoTrim()

void DoTrim ( int  mode)

Executes trimming in the selected mode.

Parameters
modeSpecifies how to trim:
  • tLongitudinal=0
  • tFull
  • tGround
  • tPullup
  • tCustom
  • tTurn
  • tNone

Definition at line 1299 of file FGFDMExec.cpp.

1300{
1301 if (Constructing) return;
1302
1303 if (mode < 0 || mode > JSBSim::tNone)
1304 throw("Illegal trimming mode!");
1305
1306 FGTrim trim(this, (JSBSim::TrimMode)mode);
1307 bool success = trim.DoTrim();
1308
1309 if (debug_lvl > 0)
1310 trim.Report();
1311
1312 if (!success)
1313 throw TrimFailureException("Trim Failed");
1314
1315 trim_completed = 1;
1316}
+ Here is the caller graph for this function:

◆ EnableIncrementThenHold()

void EnableIncrementThenHold ( int  Timesteps)
inline

Turn on hold after increment.

Definition at line 490 of file FGFDMExec.h.

490{TimeStepsUntilHold = Timesteps; IncrementThenHolding = true;}
+ Here is the caller graph for this function:

◆ EnableOutput()

void EnableOutput ( void  )
inline

Enables data logging to all outputs.

Definition at line 486 of file FGFDMExec.h.

486{ Output->Enable(); }
void Enable(void)
Enables the output generation for all output instances.
Definition FGOutput.h:180

◆ EnumerateFDMs()

vector< string > EnumerateFDMs ( void  )

Returns a vector of strings representing the names of all loaded models (future)

Definition at line 725 of file FGFDMExec.cpp.

726{
727 vector <string> FDMList;
728 FDMList.push_back(Aircraft->GetAircraftName());
729
730 for (auto &ChildFDM: ChildFDMList)
731 FDMList.push_back(ChildFDM->exec->GetAircraft()->GetAircraftName());
732
733 return FDMList;
734}
const std::string & GetAircraftName(void) const
Gets the aircraft name.
Definition FGAircraft.h:131
std::shared_ptr< FGAircraft > GetAircraft(void) const
Returns the FGAircraft pointer.
+ Here is the call graph for this function:

◆ ForceOutput()

void ForceOutput ( int  idx = 0)
inline

Forces the specified output object to print its items once.

Definition at line 450 of file FGFDMExec.h.

450{ Output->ForceOutput(idx); }
void ForceOutput(int idx)
Force an output instance to generate its output.
Definition FGOutput.cpp:144

◆ GetAccelerations()

std::shared_ptr< FGAccelerations > GetAccelerations ( void  ) const

Returns the FGAccelerations pointer.

Definition at line 378 of file FGFDMExec.cpp.

379{
380 return static_pointer_cast<FGAccelerations>(Models[eAccelerations]);
381}
+ Here is the caller graph for this function:

◆ GetAerodynamics()

std::shared_ptr< FGAerodynamics > GetAerodynamics ( void  ) const

Returns the FGAerodynamics pointer.

Definition at line 343 of file FGFDMExec.cpp.

344{
345 return static_pointer_cast<FGAerodynamics>(Models[eAerodynamics]);
346}
+ Here is the caller graph for this function:

◆ GetAircraft()

std::shared_ptr< FGAircraft > GetAircraft ( void  ) const

Returns the FGAircraft pointer.

Definition at line 371 of file FGFDMExec.cpp.

372{
373 return static_pointer_cast<FGAircraft>(Models[eAircraft]);
374}
+ Here is the caller graph for this function:

◆ GetAircraftPath()

const SGPath & GetAircraftPath ( void  )
inline

Retrieves the aircraft path.

Definition at line 397 of file FGFDMExec.h.

397{ return AircraftPath; }

◆ GetAtmosphere()

std::shared_ptr< FGAtmosphere > GetAtmosphere ( void  ) const

Definition at line 301 of file FGFDMExec.cpp.

302{
303 return static_pointer_cast<FGAtmosphere>(Models[eAtmosphere]);
304}

◆ GetAuxiliary()

std::shared_ptr< FGAuxiliary > GetAuxiliary ( void  ) const

Returns the FGAuxiliary pointer.

Definition at line 329 of file FGFDMExec.cpp.

330{
331 return static_pointer_cast<FGAuxiliary>(Models[eAuxiliary]);
332}
+ Here is the caller graph for this function:

◆ GetBuoyantForces()

std::shared_ptr< FGBuoyantForces > GetBuoyantForces ( void  ) const

Returns the FGBuoyantForces pointer.

Definition at line 364 of file FGFDMExec.cpp.

365{
366 return static_pointer_cast<FGBuoyantForces>(Models[eBuoyantForces]);
367}
+ Here is the caller graph for this function:

◆ GetChildFDM()

auto GetChildFDM ( int  i) const
inline

Gets a particular child FDM.

Definition at line 427 of file FGFDMExec.h.

427{return ChildFDMList[i];}
+ Here is the caller graph for this function:

◆ GetDebugLevel()

int GetDebugLevel ( void  ) const
inline

Retrieves the current debug level setting.

Definition at line 601 of file FGFDMExec.h.

601{return debug_lvl;};
+ Here is the caller graph for this function:

◆ GetDeltaT()

double GetDeltaT ( void  ) const
inline

Returns the simulation delta T.

Definition at line 552 of file FGFDMExec.h.

552{return dT;}
+ Here is the caller graph for this function:

◆ GetEnginePath()

const SGPath & GetEnginePath ( void  )
inline

Retrieves the engine path.

Definition at line 395 of file FGFDMExec.h.

395{ return EnginePath; }

◆ GetExternalReactions()

std::shared_ptr< FGExternalReactions > GetExternalReactions ( void  ) const

Returns the FGExternalReactions pointer.

Definition at line 357 of file FGFDMExec.cpp.

358{
359 return static_pointer_cast<FGExternalReactions>(Models[eExternalReactions]);
360}
+ Here is the caller graph for this function:

◆ GetFCS()

std::shared_ptr< FGFCS > GetFCS ( void  ) const

Returns the FGFCS pointer.

Definition at line 315 of file FGFDMExec.cpp.

316{
317 return static_pointer_cast<FGFCS>(Models[eSystems]);
318}
+ Here is the caller graph for this function:

◆ GetFDMCount()

size_t GetFDMCount ( void  ) const
inline

Gets the number of child FDMs.

Definition at line 425 of file FGFDMExec.h.

425{return ChildFDMList.size();}
+ Here is the caller graph for this function:

◆ GetFrame()

unsigned int GetFrame ( void  ) const
inline

Retrieves the current frame count.

Definition at line 598 of file FGFDMExec.h.

598{return Frame;}

◆ GetFullAircraftPath()

const SGPath & GetFullAircraftPath ( void  )
inline

Retrieves the full aircraft path name.

Definition at line 401 of file FGFDMExec.h.

401{ return FullAircraftPath; }
+ Here is the caller graph for this function:

◆ GetGroundReactions()

std::shared_ptr< FGGroundReactions > GetGroundReactions ( void  ) const

Returns the FGGroundReactions pointer.

Definition at line 350 of file FGFDMExec.cpp.

351{
352 return static_pointer_cast<FGGroundReactions>(Models[eGroundReactions]);
353}
+ Here is the caller graph for this function:

◆ GetHoldDown()

bool GetHoldDown ( void  ) const
inline

Gets the value of the property forces/hold-down.

Returns
zero if the 'hold-down' function is disabled, non-zero otherwise.

Definition at line 616 of file FGFDMExec.h.

616{return HoldDown;}
+ Here is the caller graph for this function:

◆ GetIC()

std::shared_ptr< FGInitialCondition > GetIC ( void  ) const
inline

Returns a pointer to the FGInitialCondition object.

Definition at line 389 of file FGFDMExec.h.

389{return IC;}
+ Here is the caller graph for this function:

◆ GetInertial()

std::shared_ptr< FGInertial > GetInertial ( void  ) const

Returns the FGInertial pointer.

Definition at line 287 of file FGFDMExec.cpp.

288{
289 return static_pointer_cast<FGInertial>(Models[eInertial]);
290}
+ Here is the caller graph for this function:

◆ GetInput()

std::shared_ptr< FGInput > GetInput ( void  ) const

Returns the FGInput pointer.

Definition at line 294 of file FGFDMExec.cpp.

295{
296 return static_pointer_cast<FGInput>(Models[eInput]);
297}
+ Here is the caller graph for this function:

◆ GetMassBalance()

std::shared_ptr< FGMassBalance > GetMassBalance ( void  ) const

Returns the FGAircraft pointer.

Definition at line 322 of file FGFDMExec.cpp.

323{
324 return static_pointer_cast<FGMassBalance>(Models[eMassBalance]);
325}
+ Here is the caller graph for this function:

◆ GetModelName()

const std::string & GetModelName ( void  ) const
inline

Returns the model name.

Definition at line 418 of file FGFDMExec.h.

418{ return modelName; }

◆ GetOutput()

std::shared_ptr< FGOutput > GetOutput ( void  ) const

Returns the FGOutput pointer.

Definition at line 385 of file FGFDMExec.cpp.

386{
387 return static_pointer_cast<FGOutput>(Models[eOutput]);
388}
+ Here is the caller graph for this function:

◆ GetOutputFileName()

std::string GetOutputFileName ( int  n) const
inline

Retrieves the current output filename.

Parameters
nindex of file
Returns
the name of the output file for the output specified by the flight model. If none is specified, the empty string is returned.

Definition at line 465 of file FGFDMExec.h.

465{ return Output->GetOutputName(n); }
std::string GetOutputName(unsigned int idx) const
Get the name identifier to which the output will be directed.
Definition FGOutput.cpp:162

◆ GetOutputPath()

const SGPath & GetOutputPath ( void  )
inline

Retrieves the path to the output files.

Definition at line 403 of file FGFDMExec.h.

403{ return OutputPath; }
+ Here is the caller graph for this function:

◆ GetPropagate()

std::shared_ptr< FGPropagate > GetPropagate ( void  ) const

Returns the FGPropagate pointer.

Definition at line 280 of file FGFDMExec.cpp.

281{
282 return static_pointer_cast<FGPropagate>(Models[ePropagate]);
283}
+ Here is the caller graph for this function:

◆ GetPropertyCatalog()

std::vector< std::string > & GetPropertyCatalog ( void  )
inline

Definition at line 539 of file FGFDMExec.h.

539{return PropertyCatalog;}

◆ GetPropertyManager()

std::shared_ptr< FGPropertyManager > GetPropertyManager ( void  ) const
inline

Returns a pointer to the property manager object.

Definition at line 421 of file FGFDMExec.h.

421{ return instance; }
+ Here is the caller graph for this function:

◆ GetPropertyValue()

double GetPropertyValue ( const std::string &  property)
inline

Retrieves the value of a property.

Parameters
propertythe name of the property
Returns
the value of the specified property

Definition at line 408 of file FGFDMExec.h.

409 { return instance->GetNode()->GetDouble(property); }

◆ GetPropulsion()

std::shared_ptr< FGPropulsion > GetPropulsion ( void  ) const

Returns the FGPropulsion pointer.

Definition at line 336 of file FGFDMExec.cpp.

337{
338 return static_pointer_cast<FGPropulsion>(Models[ePropulsion]);
339}
+ Here is the caller graph for this function:

◆ GetPropulsionTankReport()

string GetPropulsionTankReport ( ) const

Definition at line 1064 of file FGFDMExec.cpp.

1065{
1066 return Propulsion->GetPropulsionTankReport();
1067}

◆ GetRandomGenerator()

auto GetRandomGenerator ( void  ) const
inline

Definition at line 626 of file FGFDMExec.h.

626{ return RandomGenerator; }

◆ GetRootDir()

const SGPath & GetRootDir ( void  ) const
inline

Retrieve the Root Directory.

Returns
the path to the root (base) JSBSim directory.
See also
SetRootDir

Definition at line 590 of file FGFDMExec.h.

590{return RootDir;}

◆ GetScript()

std::shared_ptr< FGScript > GetScript ( void  ) const
inline

Retrieves the script object.

Definition at line 387 of file FGFDMExec.h.

387{return Script;}

◆ GetSimTime()

double GetSimTime ( void  ) const
inline

Returns the cumulative simulation time in seconds.

Definition at line 549 of file FGFDMExec.h.

549{ return sim_time; }
+ Here is the caller graph for this function:

◆ GetSystemsPath()

const SGPath & GetSystemsPath ( void  )
inline

Retrieves the systems path.

Definition at line 399 of file FGFDMExec.h.

399{ return SystemsPath; }

◆ GetTemplateFunc()

FGTemplateFunc_ptr GetTemplateFunc ( const std::string &  name)
inline

Definition at line 618 of file FGFDMExec.h.

618 {
619 return TemplateFunctions.count(name) ? TemplateFunctions[name] : nullptr;
620 }

◆ GetTrim()

std::shared_ptr< FGTrim > GetTrim ( void  )

Returns a pointer to the FGTrim object.

Definition at line 1267 of file FGFDMExec.cpp.

1268{
1269 Trim = std::make_shared<FGTrim>(this,tNone);
1270 return Trim;
1271}

◆ GetTrimMode()

int GetTrimMode ( void  ) const
inline

Definition at line 544 of file FGFDMExec.h.

544{ return ta_mode; }

◆ GetTrimStatus()

bool GetTrimStatus ( void  ) const
inline

Definition at line 542 of file FGFDMExec.h.

542{ return trim_status; }

◆ GetWinds()

std::shared_ptr< FGWinds > GetWinds ( void  ) const

Returns the FGWinds pointer.

Definition at line 308 of file FGFDMExec.cpp.

309{
310 return static_pointer_cast<FGWinds>(Models[eWinds]);
311}
+ Here is the caller graph for this function:

◆ Hold()

void Hold ( void  )
inline

Pauses execution by preventing time from incrementing.

Definition at line 488 of file FGFDMExec.h.

488{holding = true;}
+ Here is the caller graph for this function:

◆ Holding()

bool Holding ( void  )
inline

Returns true if the simulation is Holding (i.e. simulation time is not moving).

Definition at line 496 of file FGFDMExec.h.

496{return holding;}

◆ IncrTime()

double IncrTime ( void  )

Increments the simulation time if not in Holding mode.

The Frame counter is also incremented.

Returns
the new simulation time.

Definition at line 204 of file FGFDMExec.cpp.

204 {
205 if (!holding && !IntegrationSuspended()) {
206 sim_time += dT;
207 Inertial->SetTime(sim_time);
208 Frame++;
209 }
210 return sim_time;
211}
bool IntegrationSuspended(void) const
Returns the simulation suspension state.
Definition FGFDMExec.h:562
void SetTime(double time)
Set the simulation time.
Definition FGInertial.h:140
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ Initialize()

void Initialize ( const FGInitialCondition FGIC)

Initializes the simulation with initial conditions.

Parameters
FGICThe initial conditions that will be passed to the simulation.

Definition at line 682 of file FGFDMExec.cpp.

683{
684 Propagate->SetInitialState(FGIC);
685 Winds->SetWindNED(FGIC->GetWindNEDFpsIC());
686 Run();
687}
virtual void SetWindNED(double wN, double wE, double wD)
Sets the wind components in NED frame.
Definition FGWinds.h:195
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ IntegrationSuspended()

bool IntegrationSuspended ( void  ) const
inline

Returns the simulation suspension state.

Returns
true if suspended, false if executing

Definition at line 562 of file FGFDMExec.h.

562{return dT == 0.0;}
+ Here is the caller graph for this function:

◆ LoadModel() [1/2]

bool LoadModel ( const SGPath &  AircraftPath,
const SGPath &  EnginePath,
const SGPath &  SystemsPath,
const std::string &  model,
bool  addModelToPath = true 
)

Loads an aircraft model.

Parameters
AircraftPathpath to the aircraft/ directory. For instance: "aircraft". Under aircraft, then, would be directories for various modeled aircraft such as C172/, x15/, etc.
EnginePathpath to the directory under which engine config files are kept, for instance "engine"
SystemsPathpath to the directory under which systems config files are kept, for instance "systems"
modelthe name of the aircraft model itself. This file will be looked for in the directory specified in the AircraftPath variable, and in turn under the directory with the same name as the model. For instance: "aircraft/x15/x15.xml"
addModelToPathset to true to add the model name to the AircraftPath, defaults to true
Returns
true if successful

Definition at line 823 of file FGFDMExec.cpp.

826{
827 FGFDMExec::AircraftPath = GetFullPath(AircraftPath);
828 FGFDMExec::EnginePath = GetFullPath(EnginePath);
829 FGFDMExec::SystemsPath = GetFullPath(SystemsPath);
830
831 return LoadModel(model, addModelToPath);
832}
bool LoadModel(const SGPath &AircraftPath, const SGPath &EnginePath, const SGPath &SystemsPath, const std::string &model, bool addModelToPath=true)
Loads an aircraft model.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ LoadModel() [2/2]

bool LoadModel ( const std::string &  model,
bool  addModelToPath = true 
)

Loads an aircraft model.

The paths to the aircraft and engine config file directories must be set prior to calling this. See below.

Parameters
modelthe name of the aircraft model itself. This file will be looked for in the directory specified in the AircraftPath variable, and in turn under the directory with the same name as the model. For instance: "aircraft/x15/x15.xml"
addModelToPathset to true to add the model name to the AircraftPath, defaults to true
Returns
true if successful

Definition at line 836 of file FGFDMExec.cpp.

837{
838 SGPath aircraftCfgFileName;
839 bool result = false; // initialize result to false, indicating input file not yet read
840
841 modelName = model; // Set the class modelName attribute
842
843 if( AircraftPath.isNull() || EnginePath.isNull() || SystemsPath.isNull()) {
844 cerr << "Error: attempted to load aircraft with undefined "
845 << "aircraft, engine, and system paths" << endl;
846 return false;
847 }
848
849 FullAircraftPath = AircraftPath;
850 if (addModelToPath) FullAircraftPath.append(model);
851 aircraftCfgFileName = FullAircraftPath/(model + ".xml");
852
853 if (modelLoaded) {
854 DeAllocate();
855 Allocate();
856 }
857
858 int saved_debug_lvl = debug_lvl;
859 FGXMLFileRead XMLFileRead;
860 Element *document = XMLFileRead.LoadXMLDocument(aircraftCfgFileName); // "document" is a class member
861
862 if (document) {
863 if (IsChild) debug_lvl = 0;
864
865 ReadPrologue(document);
866
867 if (IsChild) debug_lvl = saved_debug_lvl;
868
869 // Process the fileheader element in the aircraft config file. This element is OPTIONAL.
870 Element* element = document->FindElement("fileheader");
871 if (element) {
872 result = ReadFileHeader(element);
873 if (!result) {
874 cerr << endl << "Aircraft fileheader element has problems in file " << aircraftCfgFileName << endl;
875 return result;
876 }
877 }
878
879 if (IsChild) debug_lvl = 0;
880
881 // Process the planet element. This element is OPTIONAL.
882 element = document->FindElement("planet");
883 if (element) {
884 result = LoadPlanet(element);
885 if (!result) {
886 cerr << endl << "Planet element has problems in file " << aircraftCfgFileName << endl;
887 return result;
888 }
889 }
890
891 // Process the metrics element. This element is REQUIRED.
892 element = document->FindElement("metrics");
893 if (element) {
894 result = Models[eAircraft]->Load(element);
895 if (!result) {
896 cerr << endl << "Aircraft metrics element has problems in file " << aircraftCfgFileName << endl;
897 return result;
898 }
899 } else {
900 cerr << endl << "No metrics element was found in the aircraft config file." << endl;
901 return false;
902 }
903
904 // Process the mass_balance element. This element is REQUIRED.
905 element = document->FindElement("mass_balance");
906 if (element) {
907 result = Models[eMassBalance]->Load(element);
908 if (!result) {
909 cerr << endl << "Aircraft mass_balance element has problems in file " << aircraftCfgFileName << endl;
910 return result;
911 }
912 } else {
913 cerr << endl << "No mass_balance element was found in the aircraft config file." << endl;
914 return false;
915 }
916
917 // Process the ground_reactions element. This element is REQUIRED.
918 element = document->FindElement("ground_reactions");
919 if (element) {
920 result = Models[eGroundReactions]->Load(element);
921 if (!result) {
922 cerr << endl << element->ReadFrom()
923 << "Aircraft ground_reactions element has problems in file "
924 << aircraftCfgFileName << endl;
925 return result;
926 }
927 } else {
928 cerr << endl << "No ground_reactions element was found in the aircraft config file." << endl;
929 return false;
930 }
931
932 // Process the external_reactions element. This element is OPTIONAL.
933 element = document->FindElement("external_reactions");
934 if (element) {
935 result = Models[eExternalReactions]->Load(element);
936 if (!result) {
937 cerr << endl << "Aircraft external_reactions element has problems in file " << aircraftCfgFileName << endl;
938 return result;
939 }
940 }
941
942 // Process the buoyant_forces element. This element is OPTIONAL.
943 element = document->FindElement("buoyant_forces");
944 if (element) {
945 result = Models[eBuoyantForces]->Load(element);
946 if (!result) {
947 cerr << endl << "Aircraft buoyant_forces element has problems in file " << aircraftCfgFileName << endl;
948 return result;
949 }
950 }
951
952 // Process the propulsion element. This element is OPTIONAL.
953 element = document->FindElement("propulsion");
954 if (element) {
955 result = Propulsion->Load(element);
956 if (!result) {
957 cerr << endl << "Aircraft propulsion element has problems in file " << aircraftCfgFileName << endl;
958 return result;
959 }
960 for (unsigned int i=0; i < Propulsion->GetNumEngines(); i++)
961 FCS->AddThrottle();
962 }
963
964 // Process the system element[s]. This element is OPTIONAL, and there may be more than one.
965 element = document->FindElement("system");
966 while (element) {
967 result = Models[eSystems]->Load(element);
968 if (!result) {
969 cerr << endl << "Aircraft system element has problems in file " << aircraftCfgFileName << endl;
970 return result;
971 }
972 element = document->FindNextElement("system");
973 }
974
975 // Process the autopilot element. This element is OPTIONAL.
976 element = document->FindElement("autopilot");
977 if (element) {
978 result = Models[eSystems]->Load(element);
979 if (!result) {
980 cerr << endl << "Aircraft autopilot element has problems in file " << aircraftCfgFileName << endl;
981 return result;
982 }
983 }
984
985 // Process the flight_control element. This element is OPTIONAL.
986 element = document->FindElement("flight_control");
987 if (element) {
988 result = Models[eSystems]->Load(element);
989 if (!result) {
990 cerr << endl << "Aircraft flight_control element has problems in file " << aircraftCfgFileName << endl;
991 return result;
992 }
993 }
994
995 // Process the aerodynamics element. This element is OPTIONAL, but almost always expected.
996 element = document->FindElement("aerodynamics");
997 if (element) {
998 result = Models[eAerodynamics]->Load(element);
999 if (!result) {
1000 cerr << endl << "Aircraft aerodynamics element has problems in file " << aircraftCfgFileName << endl;
1001 return result;
1002 }
1003 } else {
1004 cerr << endl << "No expected aerodynamics element was found in the aircraft config file." << endl;
1005 }
1006
1007 // Process the input element. This element is OPTIONAL, and there may be more than one.
1008 element = document->FindElement("input");
1009 while (element) {
1010 if (!Input->Load(element))
1011 return false;
1012
1013 element = document->FindNextElement("input");
1014 }
1015
1016 // Process the output element[s]. This element is OPTIONAL, and there may be
1017 // more than one.
1018 element = document->FindElement("output");
1019 while (element) {
1020 if (!Output->Load(element))
1021 return false;
1022
1023 element = document->FindNextElement("output");
1024 }
1025
1026 // Lastly, process the child element. This element is OPTIONAL - and NOT YET SUPPORTED.
1027 element = document->FindElement("child");
1028 if (element) {
1029 result = ReadChild(element);
1030 if (!result) {
1031 cerr << endl << "Aircraft child element has problems in file " << aircraftCfgFileName << endl;
1032 return result;
1033 }
1034 }
1035
1036 // Since all vehicle characteristics have been loaded, place the values in the Inputs
1037 // structure for the FGModel-derived classes.
1038 LoadModelConstants();
1039
1040 modelLoaded = true;
1041
1042 if (IsChild) debug_lvl = saved_debug_lvl;
1043
1044 } else {
1045 cerr << fgred
1046 << " JSBSim failed to open the configuration file: " << aircraftCfgFileName
1047 << fgdef << endl;
1048 }
1049
1050 for (unsigned int i=0; i< Models.size(); i++) LoadInputs(i);
1051
1052 if (result) {
1053 struct PropertyCatalogStructure masterPCS;
1054 masterPCS.base_string = "";
1055 masterPCS.node = Root;
1056 BuildPropertyCatalog(&masterPCS);
1057 }
1058
1059 return result;
1060}
bool LoadPlanet(const SGPath &PlanetPath, bool useAircraftPath=true)
Loads the planet.
bool Load(Element *el) override
Load the input directives and adds a new input instance to the Input Manager list.
Definition FGInput.cpp:77
static char fgred[6]
red text
Definition FGJSBBase.h:166
static char fgdef[6]
default text
Definition FGJSBBase.h:170
bool Load(Element *el, const SGPath &dir=SGPath())
Load the output directives and adds a new output instance to the Output Manager list.
Definition FGOutput.cpp:239
bool Load(Element *el) override
Loads the propulsion system (engine[s] and tank[s]).
size_t GetNumEngines(void) const
Retrieves the number of engines defined for the aircraft.
+ Here is the call graph for this function:

◆ LoadPlanet()

bool LoadPlanet ( const SGPath &  PlanetPath,
bool  useAircraftPath = true 
)

Loads the planet.

Loads the definition of the planet on which the vehicle will evolve such as its radius, gravity or its atmosphere characteristics.

Parameters
PlanetPathThe name of a planet definition file
useAircraftPathtrue if path is given relative to the aircraft path.
Returns
true if successful

Definition at line 747 of file FGFDMExec.cpp.

748{
749 SGPath PlanetFileName;
750
751 if(useAircraftPath && PlanetPath.isRelative()) {
752 PlanetFileName = AircraftPath/PlanetPath.utf8Str();
753 } else {
754 PlanetFileName = PlanetPath;
755 }
756
757 FGXMLFileRead XMLFileRead;
758 Element* document = XMLFileRead.LoadXMLDocument(PlanetFileName);
759
760 // Make sure that the document is valid
761 if (!document) {
762 stringstream s;
763 s << "File: " << PlanetFileName << " could not be read.";
764 cerr << s.str() << endl;
765 throw BaseException(s.str());
766 }
767
768 if (document->GetName() != "planet") {
769 stringstream s;
770 s << "File: " << PlanetFileName << " is not a planet file.";
771 cerr << s.str() << endl;
772 throw BaseException(s.str());
773 }
774
775 bool result = LoadPlanet(document);
776
777 if (!result)
778 cerr << endl << "Planet element has problems in file " << PlanetFileName << endl;
779
780 return result;
781}
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ LoadScript()

bool LoadScript ( const SGPath &  Script,
double  deltaT = 0.0,
const SGPath &  initfile = SGPath() 
)

Load a script.

Parameters
ScriptThe full path name and file name for the script to be loaded.
deltaTThe simulation integration step size, if given. If no value is supplied then 0.0 is used and the value is expected to be supplied in the script file itself.
initfileThe initialization file that will override the initialization file specified in the script file. If no file name is given on the command line, the file specified in the script will be used. If an initialization file is not given in either place, an error will result.
Returns
true if successfully loads; false otherwise.

Definition at line 738 of file FGFDMExec.cpp.

740{
741 Script = std::make_shared<FGScript>(this);
742 return Script->LoadScript(GetFullPath(script), deltaT, initfile);
743}

◆ PrintPropertyCatalog()

void PrintPropertyCatalog ( void  )

Definition at line 1110 of file FGFDMExec.cpp.

1111{
1112 cout << endl;
1113 cout << " " << fgblue << highint << underon << "Property Catalog for "
1114 << modelName << reset << endl << endl;
1115 for (auto &catalogElm: PropertyCatalog)
1116 cout << " " << catalogElm << endl;
1117}
static char fgblue[6]
blue text
Definition FGJSBBase.h:162
static char underon[5]
underlines text
Definition FGJSBBase.h:158
static char reset[5]
resets text properties
Definition FGJSBBase.h:156
static char highint[5]
highlights text
Definition FGJSBBase.h:150

◆ PrintSimulationConfiguration()

void PrintSimulationConfiguration ( void  ) const

Definition at line 1121 of file FGFDMExec.cpp.

1122{
1123 cout << endl << "Simulation Configuration" << endl << "------------------------" << endl;
1124 cout << MassBalance->GetName() << endl;
1125 cout << GroundReactions->GetName() << endl;
1126 cout << Aerodynamics->GetName() << endl;
1127 cout << Propulsion->GetName() << endl;
1128}

◆ QueryPropertyCatalog()

string QueryPropertyCatalog ( const std::string &  check,
const std::string &  end_of_line = "\n" 
)

Retrieves property or properties matching the supplied string.

A string is returned that contains a carriage return delimited list of all strings in the property catalog that matches the supplied check string.

Parameters
checkThe string to search for in the property catalog.
end_of_lineEnd of line (CR+LF if needed for Windows).
Returns
the carriage-return-delimited string containing all matching strings in the catalog.

Definition at line 1098 of file FGFDMExec.cpp.

1099{
1100 string results;
1101 for (auto &catalogElm: PropertyCatalog) {
1102 if (catalogElm.find(in) != string::npos) results += catalogElm + end_of_line;
1103 }
1104 if (results.empty()) return "No matches found"+end_of_line;
1105 return results;
1106}
+ Here is the caller graph for this function:

◆ ResetToInitialConditions()

void ResetToInitialConditions ( int  mode)

Resets the initial conditions object and prepares the simulation to run again.

If the mode's first bit is set the output instances will take special actions such as closing the current output file and open a new one with a different name. If the second bit is set then RunIC() won't be executed, leaving it to the caller to call RunIC(), e.g. in case the caller wants to set some other state like control surface deflections which would've been reset.

Parameters
modeSets the reset mode.

Definition at line 691 of file FGFDMExec.cpp.

692{
693 if (Constructing) return;
694
695 // mode flags
696
697 if (mode & START_NEW_OUTPUT) Output->SetStartNewOutput();
698
699 InitializeModels();
700
701 if (Script)
702 Script->ResetEvents();
703 else
704 Setsim_time(0.0);
705
706 if (!(mode & DONT_EXECUTE_RUN_IC))
707 RunIC();
708}
static const int START_NEW_OUTPUT
Mode flags for ResetToInitialConditions.
Definition FGFDMExec.h:498
double Setsim_time(double cur_time)
Sets the current sim time.
bool RunIC(void)
Initializes the sim from the initial condition object and executes each scheduled model without integ...
void SetStartNewOutput(void)
Reset the output prior to a restart of the simulation.
Definition FGOutput.cpp:118
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ Resume()

void Resume ( void  )
inline

Resumes execution from a "Hold".

Definition at line 494 of file FGFDMExec.h.

494{holding = false;}
+ Here is the caller graph for this function:

◆ ResumeIntegration()

void ResumeIntegration ( void  )
inline

Resumes the simulation by resetting delta T to the correct value.

Definition at line 558 of file FGFDMExec.h.

558{dT = saved_dT;}
+ Here is the caller graph for this function:

◆ Run()

bool Run ( void  )

This function executes each scheduled model in succession.

Returns
true if successful, false if sim should be ended

Definition at line 415 of file FGFDMExec.cpp.

416{
417 bool success=true;
418
419 Debug(2);
420
421 for (auto &ChildFDM: ChildFDMList) {
422 ChildFDM->AssignState(Propagate); // Transfer state to the child FDM
423 ChildFDM->Run();
424 }
425
426 IncrTime();
427
428 // returns true if success, false if complete
429 if (Script && !IntegrationSuspended()) success = Script->RunScript();
430
431 for (unsigned int i = 0; i < Models.size(); i++) {
432 LoadInputs(i);
433 Models[i]->Run(holding);
434 }
435
436 if (Terminate) success = false;
437
438 return success;
439}
double IncrTime(void)
Increments the simulation time if not in Holding mode.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ RunIC()

bool RunIC ( void  )

Initializes the sim from the initial condition object and executes each scheduled model without integrating i.e.

dt=0.

Returns
true if successful

Definition at line 645 of file FGFDMExec.cpp.

646{
647 SuspendIntegration(); // saves the integration rate, dt, then sets it to 0.0.
648 Initialize(IC.get());
649
650 Models[eInput]->InitModel();
651 Models[eOutput]->InitModel();
652
653 Run();
654 Propagate->InitializeDerivatives();
655 ResumeIntegration(); // Restores the integration rate to what it was.
656
657 if (debug_lvl > 0) {
658 MassBalance->GetMassPropertiesReport(0);
659
660 cout << endl << fgblue << highint
661 << "End of vehicle configuration loading." << endl
662 << "-------------------------------------------------------------------------------"
663 << reset << std::setprecision(6) << endl;
664 }
665
666 for (unsigned int n=0; n < Propulsion->GetNumEngines(); ++n) {
667 if (IC->IsEngineRunning(n)) {
668 try {
669 Propulsion->InitRunning(n);
670 } catch (const string& str) {
671 cerr << str << endl;
672 return false;
673 }
674 }
675 }
676
677 return true;
678}
void SuspendIntegration(void)
Suspends the simulation and sets the delta T to zero.
Definition FGFDMExec.h:555
void Initialize(const FGInitialCondition *FGIC)
Initializes the simulation with initial conditions.
void ResumeIntegration(void)
Resumes the simulation by resetting delta T to the correct value.
Definition FGFDMExec.h:558
void InitRunning(int n)
Sets up the engines as running.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ SetAircraftPath()

bool SetAircraftPath ( const SGPath &  path)
inline

Set the path to the aircraft config file directories.

Under this path, then, would be directories for various modeled aircraft such as C172/, x15/, etc. Relative paths are taken from the root directory.

Parameters
pathpath to the aircraft directory, for instance "aircraft".
See also
SetRootDir
GetAircraftPath

Definition at line 325 of file FGFDMExec.h.

325 {
326 AircraftPath = GetFullPath(path);
327 return true;
328 }

◆ SetChild()

void SetChild ( bool  ch)
inline

Marks this instance of the Exec object as a "child" object.

Definition at line 429 of file FGFDMExec.h.

429{IsChild = ch;}

◆ SetDebugLevel()

void SetDebugLevel ( int  level)
inline

Sets the debug level.

Definition at line 509 of file FGFDMExec.h.

509{debug_lvl = level;}
+ Here is the caller graph for this function:

◆ Setdt()

void Setdt ( double  delta_t)
inline

Sets the integration time step for the simulation executive.

Parameters
delta_tthe time step in seconds.

Definition at line 571 of file FGFDMExec.h.

571{ dT = delta_t; }
+ Here is the caller graph for this function:

◆ SetEnginePath()

bool SetEnginePath ( const SGPath &  path)
inline

Set the path to the engine config file directories.

Relative paths are taken from the root directory.

Parameters
pathpath to the directory under which engine config files are kept, for instance "engine".
See also
SetRootDir
GetEnginePath

Definition at line 313 of file FGFDMExec.h.

313 {
314 EnginePath = GetFullPath(path);
315 return true;
316 }

◆ SetHoldDown()

void SetHoldDown ( bool  hd)

Sets the property forces/hold-down.

This allows to do hard 'hold-down' such as for rockets on a launch pad with engines ignited.

Parameters
hdenables the 'hold-down' function if non-zero

Definition at line 712 of file FGFDMExec.cpp.

713{
714 HoldDown = hd;
715 Accelerations->SetHoldDown(hd);
716 if (hd) {
717 Propagate->in.vPQRidot = Accelerations->GetPQRidot();
718 Propagate->in.vUVWidot = Accelerations->GetUVWidot();
719 }
720 Propagate->SetHoldDown(hd);
721}
const FGColumnVector3 & GetUVWidot(void) const
Retrieves the body axis acceleration in the ECI frame.
const FGColumnVector3 & GetPQRidot(void) const
Retrieves the axis angular acceleration vector in the ECI frame.
void SetHoldDown(bool hd)
Sets the property forces/hold-down.
void SetHoldDown(bool hd)
Sets the property forces/hold-down.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ SetLoggingRate()

void SetLoggingRate ( double  rate)
inline

Sets the logging rate in Hz for all output objects (if any).

Definition at line 453 of file FGFDMExec.h.

453{ Output->SetRateHz(rate); }
void SetRateHz(double rate)
Modifies the output rate for all output instances.
Definition FGOutput.cpp:136

◆ SetOutputDirectives()

bool SetOutputDirectives ( const SGPath &  fname)
inline

Sets the output (logging) mechanism for this run.

Calling this function passes the name of an output directives file to the FGOutput object associated with this run. The call to this function should be made prior to loading an aircraft model. This call results in an FGOutput object being built as the first Output object in the FDMExec-managed list of Output objects that may be created for an aircraft model. If this call is made after an aircraft model is loaded, there is no effect. Any Output objects added by the aircraft model itself (in an <output> element) will be added after this one. Care should be taken not to refer to the same file name. An output directives file contains an <output> </output> element, within which should be specified the parameters or parameter groups that should be logged.

Parameters
fnamethe filename of an output directives file.

Definition at line 446 of file FGFDMExec.h.

447 { return Output->SetDirectivesFile(GetFullPath(fname)); }
bool SetDirectivesFile(const SGPath &fname)
Adds a new output instance to the Output Manager.
Definition FGOutput.cpp:173

◆ SetOutputFileName()

bool SetOutputFileName ( const int  n,
const std::string &  fname 
)
inline

Sets (or overrides) the output filename.

Parameters
nindex of file
fnamethe name of the file to output data to
Returns
true if successful, false if there is no output specified for the flight model

Definition at line 459 of file FGFDMExec.h.

459{ return Output->SetOutputName(n, fname); }
bool SetOutputName(unsigned int idx, const std::string &name)
Overwrites the name identifier under which the output will be logged.
Definition FGOutput.cpp:152

◆ SetOutputPath()

bool SetOutputPath ( const SGPath &  path)
inline

Set the directory where the output files will be written.

Relative paths are taken from the root directory.

Parameters
pathpath to the directory under which the output files will be written.
See also
SetRootDir
GetOutputPath

Definition at line 347 of file FGFDMExec.h.

347 {
348 OutputPath = GetFullPath(path);
349 return true;
350 }

◆ SetPropertyValue()

void SetPropertyValue ( const std::string &  property,
double  value 
)
inline

Sets a property value.

Parameters
propertythe property to be set
valuethe value to set the property to

Definition at line 414 of file FGFDMExec.h.

415 { instance->GetNode()->SetDouble(property, value); }

◆ SetRootDir()

void SetRootDir ( const SGPath &  rootDir)
inline

Set the root directory that is used to obtain absolute paths from relative paths.

Aircraft, engine, systems and output paths are not updated by this method. You must call each methods (SetAircraftPath(), SetEnginePath(), etc.) individually if you need to update these paths as well.

Parameters
rootDirthe path to the root directory.
See also
GetRootDir
SetAircraftPath
SetEnginePath
SetSystemsPath
SetOutputPath

Definition at line 585 of file FGFDMExec.h.

585{RootDir = rootDir;}

◆ Setsim_time()

double Setsim_time ( double  cur_time)

Sets the current sim time.

Parameters
cur_timethe current time
Returns
the current simulation time.

Definition at line 196 of file FGFDMExec.cpp.

196 {
197 sim_time = cur_time;
198 Inertial->SetTime(sim_time);
199 return sim_time;
200}
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ SetSystemsPath()

bool SetSystemsPath ( const SGPath &  path)
inline

Set the path to the systems config file directories.

Relative paths are taken from the root directory.

Parameters
pathpath to the directory under which systems config files are kept, for instance "systems"
See also
SetRootDir
GetSystemsPath

Definition at line 336 of file FGFDMExec.h.

336 {
337 SystemsPath = GetFullPath(path);
338 return true;
339 }

◆ SetTrimMode()

void SetTrimMode ( int  mode)
inline

Definition at line 543 of file FGFDMExec.h.

543{ ta_mode = mode; }

◆ SetTrimStatus()

void SetTrimStatus ( bool  status)
inline

Definition at line 541 of file FGFDMExec.h.

541{ trim_status = status; }

◆ SuspendIntegration()

void SuspendIntegration ( void  )
inline

Suspends the simulation and sets the delta T to zero.

Definition at line 555 of file FGFDMExec.h.

555{saved_dT = dT; dT = 0.0;}
+ Here is the caller graph for this function:

◆ Unbind()

void Unbind ( void  )
inline

Unbind all tied JSBSim properties.

Definition at line 243 of file FGFDMExec.h.

243{instance->Unbind();}
+ Here is the caller graph for this function:

Member Data Documentation

◆ DONT_EXECUTE_RUN_IC

const int DONT_EXECUTE_RUN_IC = 0x2
static

Definition at line 499 of file FGFDMExec.h.

◆ START_NEW_OUTPUT

const int START_NEW_OUTPUT = 0x1
static

Mode flags for ResetToInitialConditions.

Definition at line 498 of file FGFDMExec.h.


The documentation for this class was generated from the following files: