JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGDeadBand.cpp
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Module: FGDeadBand.cpp
4 Author: Jon S. Berndt
5 Date started: 11/1999
6
7 ------------- Copyright (C) 2000 -------------
8
9 This program is free software; you can redistribute it and/or modify it under
10 the terms of the GNU Lesser General Public License as published by the Free
11 Software Foundation; either version 2 of the License, or (at your option) any
12 later version.
13
14 This program is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
17 details.
18
19 You should have received a copy of the GNU Lesser General Public License along
20 with this program; if not, write to the Free Software Foundation, Inc., 59
21 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be
24 found on the world wide web at http://www.gnu.org.
25
26FUNCTIONAL DESCRIPTION
27--------------------------------------------------------------------------------
28
29HISTORY
30--------------------------------------------------------------------------------
31
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
33COMMENTS, REFERENCES, and NOTES
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35
36%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37INCLUDES
38%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39
40#include "FGDeadBand.h"
41#include "models/FGFCS.h"
42#include "math/FGParameterValue.h"
43
44using namespace std;
45
46namespace JSBSim {
47
48/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
49CLASS IMPLEMENTATION
50%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
51
52//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
53
54FGDeadBand::FGDeadBand(FGFCS* fcs, Element* element)
55 : FGFCSComponent(fcs, element)
56{
57 Width = nullptr;
58 gain = 1.0;
59
60 CheckInputNodes(1, 1, element);
61
62 auto PropertyManager = fcs->GetPropertyManager();
63 Element* width_element = element->FindElement("width");
64 if (width_element)
65 Width = new FGParameterValue(width_element, PropertyManager);
66 else
67 Width = new FGRealValue(0.0);
68
69 if (element->FindElement("gain"))
70 gain = element->FindElementValueAsNumber("gain");
71
72 bind(element, PropertyManager.get());
73 Debug(0);
74}
75
76//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
77
78FGDeadBand::~FGDeadBand()
79{
80 Debug(1);
81}
82
83//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
84
85bool FGDeadBand::Run(void)
86{
87 Input = InputNodes[0]->getDoubleValue();
88
89 double HalfWidth = 0.5*Width;
90
91 if (Input < -HalfWidth) {
92 Output = (Input + HalfWidth)*gain;
93 } else if (Input > HalfWidth) {
94 Output = (Input - HalfWidth)*gain;
95 } else {
96 Output = 0.0;
97 }
98
99 Clip();
100 SetOutput();
101
102 return true;
103}
104
105//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
106// The bitmasked value choices are as follows:
107// unset: In this case (the default) JSBSim would only print
108// out the normally expected messages, essentially echoing
109// the config files as they are read. If the environment
110// variable is not set, debug_lvl is set to 1 internally
111// 0: This requests JSBSim not to output any messages
112// whatsoever.
113// 1: This value explicity requests the normal JSBSim
114// startup messages
115// 2: This value asks for a message to be printed out when
116// a class is instantiated
117// 4: When this value is set, a message is displayed when a
118// FGModel object executes its Run() method
119// 8: When this value is set, various runtime state variables
120// are printed out periodically
121// 16: When set various parameters are sanity checked and
122// a message is printed out when they go out of bounds
123
124void FGDeadBand::Debug(int from)
125{
126 if (debug_lvl <= 0) return;
127
128 if (debug_lvl & 1) { // Standard console startup message output
129 if (from == 0) { // Constructor
130 cout << " INPUT: " << InputNodes[0]->GetName() << endl;
131 cout << " DEADBAND WIDTH: " << Width->GetName() << endl;
132 cout << " GAIN: " << gain << endl;
133
134 for (auto node: OutputNodes)
135 cout << " OUTPUT: " << node->getNameString() << endl;
136 }
137 }
138 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
139 if (from == 0) cout << "Instantiated: FGDeadBand" << endl;
140 if (from == 1) cout << "Destroyed: FGDeadBand" << endl;
141 }
142 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
143 }
144 if (debug_lvl & 8 ) { // Runtime state variables
145 }
146 if (debug_lvl & 16) { // Sanity checking
147 }
148 if (debug_lvl & 64) {
149 if (from == 0) { // Constructor
150 }
151 }
152}
153}