40#include "FGFCSFunction.h"
41#include "models/FGFCS.h"
42#include "input_output/FGXMLElement.h"
54FGFCSFunction::FGFCSFunction(FGFCS* fcs, Element* element)
55 : FGFCSComponent(fcs, element)
57 Element *function_element = element->FindElement(
"function");
60 function =
new FGFunction(fcs->GetExec(), function_element);
62 cerr << element->ReadFrom()
63 <<
"FCS Function should contain a \"function\" element" << endl;
64 throw(
"Malformed FCS function specification.");
67 bind(element, fcs->GetPropertyManager().get());
73FGFCSFunction::~FGFCSFunction()
81bool FGFCSFunction::Run(
void )
83 Output = function->GetValue();
85 if (!InputNodes.empty()) {
86 Input = InputNodes[0]->getDoubleValue();
115void FGFCSFunction::Debug(
int from)
117 if (debug_lvl <= 0)
return;
121 if (!InputNodes.empty())
122 cout <<
" INPUT: " << InputNodes[0]->GetName() << endl;
123 for (
auto node: OutputNodes)
124 cout <<
" OUTPUT: " << node->getNameString() << endl;
127 if (debug_lvl & 2 ) {
128 if (from == 0) cout <<
"Instantiated: FGFCSFunction" << endl;
129 if (from == 1) cout <<
"Destroyed: FGFCSFunction" << endl;
131 if (debug_lvl & 4 ) {
133 if (debug_lvl & 8 ) {
135 if (debug_lvl & 16) {
137 if (debug_lvl & 64) {