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.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2 Header: FGFDMExec.h
3 Author: Jon Berndt
4 Date started: 11/17/98
5 file The header file for the JSBSim executive.
6
7 ------------- Copyright (C) 1999 Jon S. Berndt (jon@jsbsim.org) -------------
8
9 This program is free software; you can redistribute it and/or modify it under
10 the terms of the GNU Lesser General Public License as published by the Free
11 Software Foundation; either version 2 of the License, or (at your option) any
12 later version.
13
14 This program is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
17 details.
18
19 You should have received a copy of the GNU Lesser General Public License along
20 with this program; if not, write to the Free Software Foundation, Inc., 59
21 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be
24 found on the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
2811/17/98 JSB Created
297/31/99 TP Added RunIC function that runs the sim so that every frame
30 begins with the IC values from the given FGInitialCondition
31 object and dt=0.
32
33%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34SENTRY
35%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
36
37#ifndef FGFDMEXEC_HEADER_H
38#define FGFDMEXEC_HEADER_H
39
40/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
41INCLUDES
42%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
43
44#include <memory>
45
46#include "models/FGPropagate.h"
47#include "models/FGOutput.h"
48#include "math/FGTemplateFunc.h"
49
50/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51FORWARD DECLARATIONS
52%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
54namespace JSBSim {
55
56class FGScript;
57class FGTrim;
58class FGAerodynamics;
59class FGAircraft;
60class FGAtmosphere;
61class FGAccelerations;
62class FGWinds;
63class FGAuxiliary;
64class FGBuoyantForces;
65class FGExternalReactions;
66class FGGroundReactions;
67class FGFCS;
68class FGInertial;
69class FGInput;
70class FGPropulsion;
71class FGMassBalance;
72
74 public:
75 TrimFailureException(const std::string& msg) : BaseException(msg) {}
76};
77
78/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
79CLASS DOCUMENTATION
80%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
81
179/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
180CLASS DECLARATION
181%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
182
183class JSBSIM_API FGFDMExec : public FGJSBBase
184{
185 struct childData {
186 std::unique_ptr<FGFDMExec> exec;
187 std::string info;
188 FGColumnVector3 Loc;
189 FGColumnVector3 Orient;
190 bool mated;
191 bool internal;
192
193 childData(void) {
194 info = "";
195 Loc = FGColumnVector3(0,0,0);
196 Orient = FGColumnVector3(0,0,0);
197 mated = true;
198 internal = false;
199 }
200
201 void Run(void) {exec->Run();}
202 void AssignState(FGPropagate* source_prop) {
203 exec->GetPropagate()->SetVState(source_prop->GetVState());
204 }
205 };
206
207public:
208
210 FGFDMExec(FGPropertyManager* root = nullptr, std::shared_ptr<unsigned int> fdmctr = nullptr);
211
213 ~FGFDMExec();
214
215 // This list of enums is very important! The order in which models are listed
216 // here determines the order of execution of the models.
217 //
218 // There are some conditions that need to be met :
219 // 1. FCS can request mass geometry changes via the inertia/pointmass-*
220 // properties so it must be executed before MassBalance
221 // 2. MassBalance must be executed before Propulsion, Aerodynamics,
222 // GroundReactions, ExternalReactions and BuoyantForces to ensure that
223 // their moments are computed with the updated CG position.
224 enum eModels { 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 };
241
243 void Unbind(void) {instance->Unbind();}
244
247 bool Run(void);
248
252 bool RunIC(void);
253
260 bool LoadPlanet(const SGPath& PlanetPath, bool useAircraftPath = true);
261
277 bool LoadModel(const SGPath& AircraftPath, const SGPath& EnginePath,
278 const SGPath& SystemsPath, const std::string& model,
279 bool addModelToPath = true);
280
291 bool LoadModel(const std::string& model, bool addModelToPath = true);
292
304 bool LoadScript(const SGPath& Script, double deltaT=0.0,
305 const SGPath& initfile=SGPath());
306
313 bool SetEnginePath(const SGPath& path) {
314 EnginePath = GetFullPath(path);
315 return true;
316 }
317
325 bool SetAircraftPath(const SGPath& path) {
326 AircraftPath = GetFullPath(path);
327 return true;
328 }
329
336 bool SetSystemsPath(const SGPath& path) {
337 SystemsPath = GetFullPath(path);
338 return true;
339 }
340
347 bool SetOutputPath(const SGPath& path) {
348 OutputPath = GetFullPath(path);
349 return true;
350 }
351
355 std::shared_ptr<FGAtmosphere> GetAtmosphere(void) const;
357 std::shared_ptr<FGAccelerations> GetAccelerations(void) const;
359 std::shared_ptr<FGWinds> GetWinds(void) const;
361 std::shared_ptr<FGFCS> GetFCS(void) const;
363 std::shared_ptr<FGPropulsion> GetPropulsion(void) const;
365 std::shared_ptr<FGMassBalance> GetMassBalance(void) const;
367 std::shared_ptr<FGAerodynamics> GetAerodynamics(void) const;
369 std::shared_ptr<FGInertial> GetInertial(void) const;
371 std::shared_ptr<FGGroundReactions> GetGroundReactions(void) const;
373 std::shared_ptr<FGExternalReactions> GetExternalReactions(void) const;
375 std::shared_ptr<FGBuoyantForces> GetBuoyantForces(void) const;
377 std::shared_ptr<FGAircraft> GetAircraft(void) const;
379 std::shared_ptr<FGPropagate> GetPropagate(void) const;
381 std::shared_ptr<FGAuxiliary> GetAuxiliary(void) const;
383 std::shared_ptr<FGInput> GetInput(void) const;
385 std::shared_ptr<FGOutput> GetOutput(void) const;
387 std::shared_ptr<FGScript> GetScript(void) const {return Script;}
389 std::shared_ptr<FGInitialCondition> GetIC(void) const {return IC;}
391 std::shared_ptr<FGTrim> GetTrim(void);
393
395 const SGPath& GetEnginePath(void) { return EnginePath; }
397 const SGPath& GetAircraftPath(void) { return AircraftPath; }
399 const SGPath& GetSystemsPath(void) { return SystemsPath; }
401 const SGPath& GetFullAircraftPath(void) { return FullAircraftPath; }
403 const SGPath& GetOutputPath(void) { return OutputPath; }
404
408 double GetPropertyValue(const std::string& property)
409 { return instance->GetNode()->GetDouble(property); }
410
414 void SetPropertyValue(const std::string& property, double value)
415 { instance->GetNode()->SetDouble(property, value); }
416
418 const std::string& GetModelName(void) const { return modelName; }
419
421 std::shared_ptr<FGPropertyManager> GetPropertyManager(void) const { return instance; }
423 std::vector <std::string> EnumerateFDMs(void);
425 size_t GetFDMCount(void) const {return ChildFDMList.size();}
427 auto GetChildFDM(int i) const {return ChildFDMList[i];}
429 void SetChild(bool ch) {IsChild = ch;}
430
446 bool SetOutputDirectives(const SGPath& fname)
447 { return Output->SetDirectivesFile(GetFullPath(fname)); }
448
450 void ForceOutput(int idx=0) { Output->ForceOutput(idx); }
451
453 void SetLoggingRate(double rate) { Output->SetRateHz(rate); }
454
459 bool SetOutputFileName(const int n, const std::string& fname) { return Output->SetOutputName(n, fname); }
460
465 std::string GetOutputFileName(int n) const { return Output->GetOutputName(n); }
466
476 void DoTrim(int mode);
477
481 void DoLinearization(int);
482
484 void DisableOutput(void) { Output->Disable(); }
486 void EnableOutput(void) { Output->Enable(); }
488 void Hold(void) {holding = true;}
490 void EnableIncrementThenHold(int Timesteps) {TimeStepsUntilHold = Timesteps; IncrementThenHolding = true;}
492 void CheckIncrementalHold(void);
494 void Resume(void) {holding = false;}
496 bool Holding(void) {return holding;}
498 static const int START_NEW_OUTPUT = 0x1;
499 static const int DONT_EXECUTE_RUN_IC = 0x2;
507 void ResetToInitialConditions(int mode);
509 void SetDebugLevel(int level) {debug_lvl = level;}
510
513 std::string base_string;
515 FGPropertyNode_ptr node;
516 };
517
522 void BuildPropertyCatalog(struct PropertyCatalogStructure* pcs);
523
531 std::string QueryPropertyCatalog(const std::string& check, const std::string& end_of_line="\n");
532
533 // Print the contents of the property catalog for the loaded aircraft.
534 void PrintPropertyCatalog(void);
535
536 // Print the simulation configuration
537 void PrintSimulationConfiguration(void) const;
538
539 std::vector<std::string>& GetPropertyCatalog(void) {return PropertyCatalog;}
540
541 void SetTrimStatus(bool status){ trim_status = status; }
542 bool GetTrimStatus(void) const { return trim_status; }
543 void SetTrimMode(int mode){ ta_mode = mode; }
544 int GetTrimMode(void) const { return ta_mode; }
545
546 std::string GetPropulsionTankReport() const;
547
549 double GetSimTime(void) const { return sim_time; }
550
552 double GetDeltaT(void) const {return dT;}
553
555 void SuspendIntegration(void) {saved_dT = dT; dT = 0.0;}
556
558 void ResumeIntegration(void) {dT = saved_dT;}
559
562 bool IntegrationSuspended(void) const {return dT == 0.0;}
563
567 double Setsim_time(double cur_time);
568
571 void Setdt(double delta_t) { dT = delta_t; }
572
585 void SetRootDir(const SGPath& rootDir) {RootDir = rootDir;}
586
590 const SGPath& GetRootDir(void) const {return RootDir;}
591
595 double IncrTime(void);
596
598 unsigned int GetFrame(void) const {return Frame;}
599
601 int GetDebugLevel(void) const {return debug_lvl;};
602
605 void Initialize(const FGInitialCondition* FGIC);
606
611 void SetHoldDown(bool hd);
612
616 bool GetHoldDown(void) const {return HoldDown;}
617
618 FGTemplateFunc_ptr GetTemplateFunc(const std::string& name) {
619 return TemplateFunctions.count(name) ? TemplateFunctions[name] : nullptr;
620 }
621
622 void AddTemplateFunc(const std::string& name, Element* el) {
623 TemplateFunctions[name] = std::make_shared<FGTemplateFunc>(this, el);
624 }
625
626 auto GetRandomGenerator(void) const { return RandomGenerator; }
627
628private:
629 unsigned int Frame;
630 unsigned int IdFDM;
631 int disperse;
632 bool Terminate;
633 double dT;
634 double saved_dT;
635 double sim_time;
636 bool holding;
637 bool IncrementThenHolding;
638 int TimeStepsUntilHold;
639 bool Constructing;
640 bool modelLoaded;
641 bool IsChild;
642 std::string modelName;
643 SGPath AircraftPath;
644 SGPath FullAircraftPath;
645 SGPath EnginePath;
646 SGPath SystemsPath;
647 SGPath OutputPath;
648 std::string CFGVersion;
649 std::string Release;
650 SGPath RootDir;
651
652 // Standard Model pointers - shortcuts for internal executive use only.
653 // DO NOT TRY TO DELETE THEM !!!
654 FGPropagate* Propagate;
655 FGInertial* Inertial;
656 FGAtmosphere* Atmosphere;
657 FGWinds* Winds;
658 FGAuxiliary* Auxiliary;
659 FGFCS* FCS;
660 FGPropulsion* Propulsion;
661 FGAerodynamics* Aerodynamics;
662 FGGroundReactions* GroundReactions;
663 FGExternalReactions* ExternalReactions;
664 FGBuoyantForces* BuoyantForces;
665 FGMassBalance* MassBalance;
666 FGAircraft* Aircraft;
667 FGAccelerations* Accelerations;
668 FGOutput* Output;
669 FGInput* Input;
670
671 bool trim_status;
672 int ta_mode;
673 int trim_completed;
674
675 std::shared_ptr<FGInitialCondition> IC;
676 std::shared_ptr<FGScript> Script;
677 std::shared_ptr<FGTrim> Trim;
678
679 FGPropertyNode_ptr Root;
680 std::shared_ptr<FGPropertyManager> instance;
681
682 bool HoldDown;
683
684 unsigned int RandomSeed;
685 std::shared_ptr<RandomNumberGenerator> RandomGenerator;
686
687 // The FDM counter is used to give each child FDM an unique ID. The root FDM
688 // has the ID 0
689 std::shared_ptr<unsigned int> FDMctr;
690
691 std::vector <std::string> PropertyCatalog;
692 std::vector <std::shared_ptr<childData>> ChildFDMList;
693 std::vector <std::shared_ptr<FGModel>> Models;
694 std::map<std::string, FGTemplateFunc_ptr> TemplateFunctions;
695
696 bool ReadFileHeader(Element*);
697 bool ReadChild(Element*);
698 bool ReadPrologue(Element*);
699 void SRand(int sr);
700 int SRand(void) const {return RandomSeed;}
701 void LoadInputs(unsigned int idx);
702 void LoadPlanetConstants(void);
703 bool LoadPlanet(Element* el);
704 void LoadModelConstants(void);
705 bool Allocate(void);
706 bool DeAllocate(void);
707 void InitializeModels(void);
708 int GetDisperse(void) const {return disperse;}
709 SGPath GetFullPath(const SGPath& name) {
710 if (name.isRelative())
711 return RootDir/name.utf8Str();
712 else
713 return name;
714 }
715
716 void Debug(int from);
717};
718}
719//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
720#endif
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
const SGPath & GetOutputPath(void)
Retrieves the path to the output files.
Definition FGFDMExec.h:403
bool GetHoldDown(void) const
Gets the value of the property forces/hold-down.
Definition FGFDMExec.h:616
void EnableOutput(void)
Enables data logging to all outputs.
Definition FGFDMExec.h:486
void SetPropertyValue(const std::string &property, double value)
Sets a property value.
Definition FGFDMExec.h:414
const SGPath & GetEnginePath(void)
Retrieves the engine path.
Definition FGFDMExec.h:395
std::shared_ptr< FGInitialCondition > GetIC(void) const
Returns a pointer to the FGInitialCondition object.
Definition FGFDMExec.h:389
const SGPath & GetRootDir(void) const
Retrieve the Root Directory.
Definition FGFDMExec.h:590
void ForceOutput(int idx=0)
Forces the specified output object to print its items once.
Definition FGFDMExec.h:450
bool SetSystemsPath(const SGPath &path)
Set the path to the systems config file directories.
Definition FGFDMExec.h:336
bool SetOutputFileName(const int n, const std::string &fname)
Sets (or overrides) the output filename.
Definition FGFDMExec.h:459
void SetDebugLevel(int level)
Sets the debug level.
Definition FGFDMExec.h:509
const SGPath & GetAircraftPath(void)
Retrieves the aircraft path.
Definition FGFDMExec.h:397
double GetPropertyValue(const std::string &property)
Retrieves the value of a property.
Definition FGFDMExec.h:408
bool SetEnginePath(const SGPath &path)
Set the path to the engine config file directories.
Definition FGFDMExec.h:313
int GetDebugLevel(void) const
Retrieves the current debug level setting.
Definition FGFDMExec.h:601
void SetLoggingRate(double rate)
Sets the logging rate in Hz for all output objects (if any).
Definition FGFDMExec.h:453
std::shared_ptr< FGScript > GetScript(void) const
Retrieves the script object.
Definition FGFDMExec.h:387
bool SetOutputPath(const SGPath &path)
Set the directory where the output files will be written.
Definition FGFDMExec.h:347
const SGPath & GetFullAircraftPath(void)
Retrieves the full aircraft path name.
Definition FGFDMExec.h:401
void EnableIncrementThenHold(int Timesteps)
Turn on hold after increment.
Definition FGFDMExec.h:490
void SetRootDir(const SGPath &rootDir)
Set the root directory that is used to obtain absolute paths from relative paths.
Definition FGFDMExec.h:585
std::string GetOutputFileName(int n) const
Retrieves the current output filename.
Definition FGFDMExec.h:465
double GetDeltaT(void) const
Returns the simulation delta T.
Definition FGFDMExec.h:552
size_t GetFDMCount(void) const
Gets the number of child FDMs.
Definition FGFDMExec.h:425
const SGPath & GetSystemsPath(void)
Retrieves the systems path.
Definition FGFDMExec.h:399
unsigned int GetFrame(void) const
Retrieves the current frame count.
Definition FGFDMExec.h:598
void Resume(void)
Resumes execution from a "Hold".
Definition FGFDMExec.h:494
void DisableOutput(void)
Disables data logging to all outputs.
Definition FGFDMExec.h:484
bool IntegrationSuspended(void) const
Returns the simulation suspension state.
Definition FGFDMExec.h:562
bool SetOutputDirectives(const SGPath &fname)
Sets the output (logging) mechanism for this run.
Definition FGFDMExec.h:446
void Unbind(void)
Unbind all tied JSBSim properties.
Definition FGFDMExec.h:243
void SetChild(bool ch)
Marks this instance of the Exec object as a "child" object.
Definition FGFDMExec.h:429
double GetSimTime(void) const
Returns the cumulative simulation time in seconds.
Definition FGFDMExec.h:549
void Setdt(double delta_t)
Sets the integration time step for the simulation executive.
Definition FGFDMExec.h:571
void SuspendIntegration(void)
Suspends the simulation and sets the delta T to zero.
Definition FGFDMExec.h:555
std::shared_ptr< FGPropertyManager > GetPropertyManager(void) const
Returns a pointer to the property manager object.
Definition FGFDMExec.h:421
void Hold(void)
Pauses execution by preventing time from incrementing.
Definition FGFDMExec.h:488
bool SetAircraftPath(const SGPath &path)
Set the path to the aircraft config file directories.
Definition FGFDMExec.h:325
auto GetChildFDM(int i) const
Gets a particular child FDM.
Definition FGFDMExec.h:427
void ResumeIntegration(void)
Resumes the simulation by resetting delta T to the correct value.
Definition FGFDMExec.h:558
const std::string & GetModelName(void) const
Returns the model name.
Definition FGFDMExec.h:418
bool Holding(void)
Returns true if the simulation is Holding (i.e. simulation time is not moving).
Definition FGFDMExec.h:496
Initializes the simulation run.
JSBSim Base class.
Definition FGJSBBase.h:117
Models the EOM and integration/propagation of state.
Definition FGPropagate.h:95
FGPropertyNode_ptr node
The node for the property.
Definition FGFDMExec.h:515
std::string base_string
Name of the property.
Definition FGFDMExec.h:513