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
FGOutputType.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGOutputType.h
4 Author: Bertrand Coconnier
5 Date started: 09/10/11
6
7 ------------- Copyright (C) 2011 Bertrand Coconnier -------------
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 Software
11 Foundation; either version 2 of the License, or (at your option) any later
12 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 with
20 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21 Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be found on
24 the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
2809/10/11 BC Created
29
30%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31SENTRY
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34#ifndef FGOUTPUTTYPE_H
35#define FGOUTPUTTYPE_H
36
37/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38INCLUDES
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41#include <memory>
42
43#include "models/FGModel.h"
44
45/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
46FORWARD DECLARATIONS
47%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
48
49namespace JSBSim {
50
51class FGFDMExec;
52class Element;
53class FGAerodynamics;
54class FGAuxiliary;
55class FGAircraft;
56class FGWinds;
57class FGPropulsion;
58class FGMassBalance;
59class FGPropagate;
60class FGAccelerations;
61class FGFCS;
62class FGGroundReactions;
63class FGExternalReactions;
64class FGBuoyantForces;
65class FGPropertyValue;
66
67/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
68CLASS DOCUMENTATION
69%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
70
87/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
88CLASS DECLARATION
89%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
90
91class FGOutputType : public FGModel
92{
93public:
97 FGOutputType(FGFDMExec* fdmex);
98
100 ~FGOutputType() override;
101
105 void SetIdx(unsigned int idx);
106
109 void SetRateHz(double rtHz);
110
112 double GetRateHz(void) const;
113
118 void SetSubSystems(int subSystems) { SubSystems = subSystems; }
119
123 void SetOutputProperties(std::vector<FGPropertyNode_ptr> & outputProperties);
124
130 virtual void SetOutputName(const std::string& name) { Name = name; }
131
134 virtual const std::string& GetOutputName(void) const { return Name; }
135
139 bool Load(Element* el) override;
140
142 bool InitModel(void) override;
143
152 bool Run(bool Holding) override;
153
158 virtual void Print(void) = 0;
159
166 virtual void SetStartNewOutput(void) {}
167
169 void Enable(void) { enabled = true; }
171 void Disable(void) { enabled = false; }
175 bool Toggle(void) {enabled = !enabled; return enabled;}
176
ssSimulation = 1, ssAerosurfaces = 2, ssRates = 4, ssVelocities = 8, ssForces = 16, ssMoments = 32, ssAtmosphere = 64, ssMassProps = 128, ssAeroFunctions = 256, ssPropagate = 512, ssGroundReactions = 1024, ssFCS = 2048, ssPropulsion = 4096
192 } subsystems;
193
194protected:
195 unsigned int OutputIdx;
196 int SubSystems;
197 std::vector <FGPropertyValue*> OutputParameters;
198 std::vector <std::string> OutputCaptions;
199 bool enabled;
200
201 std::shared_ptr<FGAerodynamics> Aerodynamics;
202 std::shared_ptr<FGAuxiliary> Auxiliary;
203 std::shared_ptr<FGAircraft> Aircraft;
204 std::shared_ptr<FGWinds> Winds;
205 std::shared_ptr<FGPropulsion> Propulsion;
206 std::shared_ptr<FGMassBalance> MassBalance;
207 std::shared_ptr<FGPropagate> Propagate;
208 std::shared_ptr<FGAccelerations> Accelerations;
209 std::shared_ptr<FGFCS> FCS;
210 std::shared_ptr<FGGroundReactions> GroundReactions;
211 std::shared_ptr<FGExternalReactions> ExternalReactions;
212 std::shared_ptr<FGBuoyantForces> BuoyantForces;
213
214 void Debug(int from) override;
215};
216}
217//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
218#endif
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
Base class for all scheduled JSBSim models.
Definition FGModel.h:70
Abstract class to provide functions generic to all the output directives.
bool Load(Element *el) override
Init the output directives from an XML file (implement the FGModel interface).
~FGOutputType() override
Destructor.
void SetRateHz(double rtHz)
Set the output rate for this output instances.
void SetIdx(unsigned int idx)
Set the idx for this output instance.
bool Run(bool Holding) override
Executes the output directives (implement the FGModel interface).
virtual const std::string & GetOutputName(void) const
Get the name identifier to which the output will be directed.
bool InitModel(void) override
Init the output model according to its configitation.
bool Toggle(void)
Toggles the output generation.
virtual void SetStartNewOutput(void)
Reset the output prior to a restart of the simulation.
void Disable(void)
Disables the output generation.
virtual void SetOutputName(const std::string &name)
Overwrites the name identifier under which the output will be logged.
double GetRateHz(void) const
Get the output rate in Hz for this output.
void SetSubSystems(int subSystems)
Set the activated subsystems for this output instance.
virtual void Print(void)=0
Generate the output.
void Enable(void)
Enables the output generation.
void SetOutputProperties(std::vector< FGPropertyNode_ptr > &outputProperties)
Set the list of properties that should be output for this output instance.
eSubSystems
Subsystem types for specifying which will be output in the FDM data logging.
@ ssPropulsion
Subsystem: Propulsion (= 4096)
@ ssForces
Subsystem: Forces (= 16)
@ ssAtmosphere
Subsystem: Atmosphere (= 64)
@ ssPropagate
Subsystem: Propagate (= 512)
@ ssGroundReactions
Subsystem: Ground Reactions (= 1024)
@ ssFCS
Subsystem: FCS (= 2048)
@ ssMoments
Subsystem: Moments (= 32)
@ ssRates
Subsystem: Body rates (= 4)
@ ssVelocities
Subsystem: Velocities (= 8)
@ ssAerosurfaces
Subsystem: Aerosurfaces (= 2)
@ ssMassProps
Subsystem: Mass Properties (= 128)
@ ssSimulation
Subsystem: Simulation (= 1)
@ ssAeroFunctions
Subsystem: Coefficients (= 256)