41#include "models/FGFCS.h"
42#include "input_output/FGXMLElement.h"
59 bind(element, fcs->GetPropertyManager().get());
76 for (
auto node: InputNodes)
77 Output += node->getDoubleValue();
106void FGSummer::Debug(
int from)
108 if (debug_lvl <= 0)
return;
112 cout <<
" INPUTS: " << endl;
113 for (
auto node: InputNodes)
114 cout <<
" " << node->GetNameWithSign() << endl;
115 if (Bias != 0.0) cout <<
" Bias: " << Bias << endl;
116 for (
auto node: OutputNodes)
117 cout <<
" OUTPUT: " << node->GetName() << endl;
120 if (debug_lvl & 2 ) {
121 if (from == 0) cout <<
"Instantiated: FGSummer" << endl;
122 if (from == 1) cout <<
"Destroyed: FGSummer" << endl;
124 if (debug_lvl & 4 ) {
126 if (debug_lvl & 8 ) {
128 if (debug_lvl & 16) {
130 if (debug_lvl & 64) {
Element * FindElement(const std::string &el="")
Searches for a specified element.
double FindElementValueAsNumber(const std::string &el="")
Searches for the named element and returns the data belonging to it as a number.
Base class for JSBSim Flight Control System Components.
Encapsulates the Flight Control System (FCS) functionality.
FGSummer(FGFCS *fcs, Element *element)
Constructor.
bool Run(void) override
The execution method for this FCS component.