40#include "FGDeadBand.h"
41#include "models/FGFCS.h"
42#include "math/FGParameterValue.h"
54FGDeadBand::FGDeadBand(FGFCS* fcs, Element* element)
55 : FGFCSComponent(fcs, element)
60 CheckInputNodes(1, 1, element);
62 auto PropertyManager = fcs->GetPropertyManager();
63 Element* width_element = element->FindElement(
"width");
65 Width =
new FGParameterValue(width_element, PropertyManager);
67 Width =
new FGRealValue(0.0);
69 if (element->FindElement(
"gain"))
70 gain = element->FindElementValueAsNumber(
"gain");
72 bind(element, PropertyManager.get());
78FGDeadBand::~FGDeadBand()
85bool FGDeadBand::Run(
void)
87 Input = InputNodes[0]->getDoubleValue();
89 double HalfWidth = 0.5*Width;
91 if (Input < -HalfWidth) {
92 Output = (Input + HalfWidth)*gain;
93 }
else if (Input > HalfWidth) {
94 Output = (Input - HalfWidth)*gain;
124void FGDeadBand::Debug(
int from)
126 if (debug_lvl <= 0)
return;
130 cout <<
" INPUT: " << InputNodes[0]->GetName() << endl;
131 cout <<
" DEADBAND WIDTH: " << Width->GetName() << endl;
132 cout <<
" GAIN: " << gain << endl;
134 for (
auto node: OutputNodes)
135 cout <<
" OUTPUT: " << node->getNameString() << endl;
138 if (debug_lvl & 2 ) {
139 if (from == 0) cout <<
"Instantiated: FGDeadBand" << endl;
140 if (from == 1) cout <<
"Destroyed: FGDeadBand" << endl;
142 if (debug_lvl & 4 ) {
144 if (debug_lvl & 8 ) {
146 if (debug_lvl & 16) {
148 if (debug_lvl & 64) {