43#include "FGOutputType.h"
44#include "input_output/FGXMLElement.h"
45#include "input_output/FGPropertyManager.h"
46#include "math/FGTemplateFunc.h"
47#include "math/FGFunctionValue.h"
82 for (
auto param: OutputParameters)
92 string outputProp = CreateIndexedPropertyName(
"simulation/output", idx);
95 PropertyManager->Tie(outputProp +
"/enabled", &enabled);
132 while (property_element) {
133 string property_str = property_element->
GetDataLine();
136 cerr << property_element->
ReadFrom()
137 <<
fgred <<
highint << endl <<
" No property by the name "
138 << property_str <<
" has been defined. This property will " << endl
139 <<
" not be logged. You should check your configuration file."
144 auto f = FDMExec->GetTemplateFunc(function_str);
148 cerr << property_element->
ReadFrom()
150 << function_str <<
" has been defined. This property will "
151 <<
"not be logged. You should check your configuration file."
161 OutputCaptions.push_back(
"");
166 double outRate = 1.0;
179 bool ret = FGModel::InitModel();
190 if (!enabled)
return true;
205 rtHz = rtHz>1000?1000:(rtHz<0?0:rtHz);
219 return 1.0 / (rate * FDMExec->
GetDeltaT());
226 for (
auto prop: outputProperties)
250void FGOutputType::Debug(
int from)
252 if (debug_lvl <= 0)
return;
258 if (SubSystems &
ssSimulation) cout <<
" Simulation parameters logged" << endl;
259 if (SubSystems &
ssAerosurfaces) cout <<
" Aerosurface parameters logged" << endl;
260 if (SubSystems &
ssRates) cout <<
" Rate parameters logged" << endl;
261 if (SubSystems &
ssVelocities) cout <<
" Velocity parameters logged" << endl;
262 if (SubSystems &
ssForces) cout <<
" Force parameters logged" << endl;
263 if (SubSystems &
ssMoments) cout <<
" Moments parameters logged" << endl;
264 if (SubSystems &
ssAtmosphere) cout <<
" Atmosphere parameters logged" << endl;
265 if (SubSystems &
ssMassProps) cout <<
" Mass parameters logged" << endl;
266 if (SubSystems &
ssAeroFunctions) cout <<
" Coefficient parameters logged" << endl;
267 if (SubSystems &
ssPropagate) cout <<
" Propagate parameters logged" << endl;
269 if (SubSystems &
ssFCS) cout <<
" FCS parameters logged" << endl;
270 if (SubSystems &
ssPropulsion) cout <<
" Propulsion parameters logged" << endl;
271 if (!OutputParameters.empty()) cout <<
" Properties logged:" << endl;
272 for (
auto param: OutputParameters)
273 cout <<
" - " << param->GetName() << endl;
276 if (debug_lvl & 2 ) {
277 if (from == 0) cout <<
"Instantiated: FGOutputType" << endl;
278 if (from == 1) cout <<
"Destroyed: FGOutputType" << endl;
280 if (debug_lvl & 4 ) {
282 if (debug_lvl & 8 ) {
284 if (debug_lvl & 16) {
286 if (debug_lvl & 64) {
Element * FindElement(const std::string &el="")
Searches for a specified element.
double GetAttributeValueAsNumber(const std::string &key)
Retrieves an attribute value as a double precision real number.
std::string GetAttributeValue(const std::string &key)
Retrieves an attribute.
std::string GetDataLine(unsigned int i=0)
Gets a line of data belonging to an element.
std::string ReadFrom(void) const
Return a string that contains a description of the location where the current XML element was read fr...
std::string FindElementValue(const std::string &el="")
Searches for the named element and returns the string data belonging to it.
Element * FindNextElement(const std::string &el="")
Searches for the next element as specified.
bool HasAttribute(const std::string &key)
Determines if an element has the supplied attribute.
Encapsulates the JSBSim simulation executive.
std::shared_ptr< FGWinds > GetWinds(void) const
Returns the FGWinds pointer.
std::shared_ptr< FGBuoyantForces > GetBuoyantForces(void) const
Returns the FGBuoyantForces pointer.
std::shared_ptr< FGAircraft > GetAircraft(void) const
Returns the FGAircraft pointer.
std::shared_ptr< FGFCS > GetFCS(void) const
Returns the FGFCS pointer.
double GetDeltaT(void) const
Returns the simulation delta T.
std::shared_ptr< FGPropagate > GetPropagate(void) const
Returns the FGPropagate pointer.
std::shared_ptr< FGAerodynamics > GetAerodynamics(void) const
Returns the FGAerodynamics pointer.
std::shared_ptr< FGExternalReactions > GetExternalReactions(void) const
Returns the FGExternalReactions pointer.
std::shared_ptr< FGGroundReactions > GetGroundReactions(void) const
Returns the FGGroundReactions pointer.
std::shared_ptr< FGMassBalance > GetMassBalance(void) const
Returns the FGAircraft pointer.
std::shared_ptr< FGPropulsion > GetPropulsion(void) const
Returns the FGPropulsion pointer.
std::shared_ptr< FGAuxiliary > GetAuxiliary(void) const
Returns the FGAuxiliary pointer.
std::shared_ptr< FGAccelerations > GetAccelerations(void) const
Returns the FGAccelerations pointer.
Represents a property value on which a function is applied.
static char fgred[6]
red text
static char reset[5]
resets text properties
static char highint[5]
highlights text
Base class for all scheduled JSBSim models.
virtual bool Run(bool Holding)
Runs the model; called by the Executive.
void SetRate(unsigned int tt)
Set the ouput rate for the model in frames.
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).
FGOutputType(FGFDMExec *fdmex)
Constructor (implement the FGModel interface).
bool InitModel(void) override
Init the output model according to its configitation.
void Disable(void)
Disables the output generation.
double GetRateHz(void) const
Get the output rate in Hz for this output.
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.
@ 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)
Class wrapper for property handling.
Represents a property value which can use late binding.