43#include "models/FGModel.h"
62class FGGroundReactions;
63class FGExternalReactions;
105 void SetIdx(
unsigned int idx);
152 bool Run(
bool Holding)
override;
175 bool Toggle(
void) {enabled = !enabled;
return enabled;}
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
195 unsigned int OutputIdx;
197 std::vector <FGPropertyValue*> OutputParameters;
198 std::vector <std::string> OutputCaptions;
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;
214 void Debug(
int from)
override;
Encapsulates the JSBSim simulation executive.
Base class for all scheduled JSBSim models.
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)