41#include "models/FGFCS.h"
42#include "math/FGParameterValue.h"
43#include "math/FGTable.h"
53FGGain::FGGain(FGFCS* fcs, Element* element) : FGFCSComponent(fcs, element)
59 OutMin = OutMax = 0.0;
61 CheckInputNodes(1, 1, element);
63 if (Type ==
"PURE_GAIN") {
64 if ( !element->FindElement(
"gain") ) {
65 cerr << element->ReadFrom()
66 << highint <<
" No GAIN specified (default: 1.0)" << normint
71 auto PropertyManager = fcs->GetPropertyManager();
72 Element* gain_element = element->FindElement(
"gain");
74 Gain =
new FGParameterValue(gain_element, PropertyManager);
76 Gain =
new FGRealValue(1.0);
78 if (Type ==
"AEROSURFACE_SCALE") {
79 Element* scale_element = element->FindElement(
"domain");
81 if (scale_element->FindElement(
"max") && scale_element->FindElement(
"min") )
83 InMax = scale_element->FindElementValueAsNumber(
"max");
84 InMin = scale_element->FindElementValueAsNumber(
"min");
87 scale_element = element->FindElement(
"range");
89 throw(
string(
"No range supplied for aerosurface scale component"));
90 if (scale_element->FindElement(
"max") && scale_element->FindElement(
"min") )
92 OutMax = scale_element->FindElementValueAsNumber(
"max");
93 OutMin = scale_element->FindElementValueAsNumber(
"min");
95 cerr << scale_element->ReadFrom()
96 <<
"Maximum and minimum output values must be supplied for the "
97 "aerosurface scale component" << endl;
98 throw(
"Some inputs are missing.");
101 Element* zero_centered = element->FindElement(
"zero_centered");
104 string sZeroCentered = element->FindElementValue(
"zero_centered");
105 if (sZeroCentered ==
string(
"0") || sZeroCentered ==
string(
"false")) {
106 ZeroCentered =
false;
111 if (Type ==
"SCHEDULED_GAIN") {
112 if (element->FindElement(
"table")) {
113 Table =
new FGTable(PropertyManager, element->FindElement(
"table"));
115 cerr << element->ReadFrom()
116 <<
"A table must be provided for the scheduled gain component"
118 throw(
"Some inputs are missing.");
122 bind(element, PropertyManager.get());
138bool FGGain::Run(
void )
140 Input = InputNodes[0]->getDoubleValue();
142 if (Type ==
"PURE_GAIN") {
144 Output = Gain * Input;
146 }
else if (Type ==
"SCHEDULED_GAIN") {
148 double SchedGain = Table->GetValue();
149 Output = Gain * SchedGain * Input;
151 }
else if (Type ==
"AEROSURFACE_SCALE") {
156 }
else if (Input > 0) {
157 Output = (Input / InMax) * OutMax;
159 Output = (Input / InMin) * OutMin;
162 Output = OutMin + ((Input - InMin) / (InMax - InMin)) * (OutMax - OutMin);
165 Output *= Gain->GetValue();
193void FGGain::Debug(
int from)
195 if (debug_lvl <= 0)
return;
199 cout <<
" INPUT: " << InputNodes[0]->GetNameWithSign() << endl;
200 cout <<
" GAIN: " << Gain->GetName() << endl;
202 for (
auto node: OutputNodes)
203 cout <<
" OUTPUT: " << node->getNameString() << endl;
205 if (Type ==
"AEROSURFACE_SCALE") {
206 cout <<
" In/Out Mapping:" << endl;
207 cout <<
" Input MIN: " << InMin << endl;
208 cout <<
" Input MAX: " << InMax << endl;
209 cout <<
" Output MIN: " << OutMin << endl;
210 cout <<
" Output MAX: " << OutMax << endl;
213 cout <<
" Scheduled by table: " << endl;
218 if (debug_lvl & 2 ) {
219 if (from == 0) cout <<
"Instantiated: FGGain" << endl;
220 if (from == 1) cout <<
"Destroyed: FGGain" << endl;
222 if (debug_lvl & 4 ) {
224 if (debug_lvl & 8 ) {
226 if (debug_lvl & 16) {
228 if (debug_lvl & 64) {