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
FGFCSComponent Class Reference

Detailed Description

Base class for JSBSim Flight Control System Components.

The Flight Control System (FCS) for JSBSim consists of the FCS container class (see FGFCS), the FGFCSComponent base class, and the component classes from which can be constructed a string, or channel. See:

Author
Jon S. Berndt
See also
Documentation for the FGFCS class, and for the configuration file class

Definition at line 84 of file FGFCSComponent.h.

#include <FGFCSComponent.h>

+ Inheritance diagram for FGFCSComponent:
+ Collaboration diagram for FGFCSComponent:

Public Member Functions

 FGFCSComponent (FGFCS *fcs, Element *el)
 Constructor.
 
virtual ~FGFCSComponent ()
 Destructor.
 
std::string GetName (void) const
 
double GetOutput (void) const
 
virtual double GetOutputPct (void) const
 
std::string GetType (void) const
 
virtual void ResetPastStates (void)
 
virtual bool Run (void)
 
virtual void SetOutput (void)
 
- Public Member Functions inherited from FGJSBBase
 FGJSBBase ()
 Constructor for FGJSBBase.
 
virtual ~FGJSBBase ()
 Destructor for FGJSBBase.
 
void disableHighLighting (void)
 Disables highlighting in the console output.
 

Protected Member Functions

virtual void bind (Element *el, FGPropertyManager *pm)
 
void CheckInputNodes (size_t MinNodes, size_t MaxNodes, Element *el)
 
void Clip (void)
 
virtual void Debug (int from)
 
void Delay (void)
 

Protected Attributes

bool clip
 
FGParameter_ptr ClipMax
 
FGParameter_ptr ClipMin
 
bool cyclic_clip
 
unsigned int delay
 
double delay_time
 
double dt
 
FGFCSfcs
 
int index
 
std::vector< FGPropertyValue_ptr > InitNodes
 
double Input
 
std::vector< FGPropertyValue_ptr > InputNodes
 
std::string Name
 
double Output
 
std::vector< double > output_array
 
std::vector< FGPropertyNode_ptr > OutputNodes
 
std::string Type
 

Additional Inherited Members

- Public Types inherited from FGJSBBase
enum  { eL = 1 , eM , eN }
 Moments L, M, N. More...
 
enum  { eP = 1 , eQ , eR }
 Rates P, Q, R. More...
 
enum  { eU = 1 , eV , eW }
 Velocities U, V, W. More...
 
enum  { eX = 1 , eY , eZ }
 Positions X, Y, Z. More...
 
enum  { ePhi = 1 , eTht , ePsi }
 Euler angles Phi, Theta, Psi. More...
 
enum  { eDrag = 1 , eSide , eLift }
 Stability axis forces, Drag, Side force, Lift. More...
 
enum  { eRoll = 1 , ePitch , eYaw }
 Local frame orientation Roll, Pitch, Yaw. More...
 
enum  { eNorth = 1 , eEast , eDown }
 Local frame position North, East, Down. More...
 
enum  { eLat = 1 , eLong , eRad }
 Locations Radius, Latitude, Longitude. More...
 
enum  {
  inNone = 0 , inDegrees , inRadians , inMeters ,
  inFeet
}
 Conversion specifiers. More...
 
- Static Public Member Functions inherited from FGJSBBase
static const std::string & GetVersion (void)
 Returns the version number of JSBSim.
 
static constexpr double KelvinToFahrenheit (double kelvin)
 Converts from degrees Kelvin to degrees Fahrenheit.
 
static constexpr double CelsiusToRankine (double celsius)
 Converts from degrees Celsius to degrees Rankine.
 
static constexpr double RankineToCelsius (double rankine)
 Converts from degrees Rankine to degrees Celsius.
 
static constexpr double KelvinToRankine (double kelvin)
 Converts from degrees Kelvin to degrees Rankine.
 
static constexpr double RankineToKelvin (double rankine)
 Converts from degrees Rankine to degrees Kelvin.
 
static constexpr double FahrenheitToCelsius (double fahrenheit)
 Converts from degrees Fahrenheit to degrees Celsius.
 
static constexpr double CelsiusToFahrenheit (double celsius)
 Converts from degrees Celsius to degrees Fahrenheit.
 
static constexpr double CelsiusToKelvin (double celsius)
 Converts from degrees Celsius to degrees Kelvin.
 
static constexpr double KelvinToCelsius (double kelvin)
 Converts from degrees Kelvin to degrees Celsius.
 
static constexpr double FeetToMeters (double measure)
 Converts from feet to meters.
 
static bool EqualToRoundoff (double a, double b)
 Finite precision comparison.
 
static bool EqualToRoundoff (float a, float b)
 Finite precision comparison.
 
static bool EqualToRoundoff (float a, double b)
 Finite precision comparison.
 
static bool EqualToRoundoff (double a, float b)
 Finite precision comparison.
 
static constexpr double Constrain (double min, double value, double max)
 Constrain a value between a minimum and a maximum value.
 
static constexpr double sign (double num)
 
- Static Public Attributes inherited from FGJSBBase
static char highint [5] = {27, '[', '1', 'm', '\0' }
 highlights text
 
static char halfint [5] = {27, '[', '2', 'm', '\0' }
 low intensity text
 
static char normint [6] = {27, '[', '2', '2', 'm', '\0' }
 normal intensity text
 
static char reset [5] = {27, '[', '0', 'm', '\0' }
 resets text properties
 
static char underon [5] = {27, '[', '4', 'm', '\0' }
 underlines text
 
static char underoff [6] = {27, '[', '2', '4', 'm', '\0' }
 underline off
 
static char fgblue [6] = {27, '[', '3', '4', 'm', '\0' }
 blue text
 
static char fgcyan [6] = {27, '[', '3', '6', 'm', '\0' }
 cyan text
 
static char fgred [6] = {27, '[', '3', '1', 'm', '\0' }
 red text
 
static char fggreen [6] = {27, '[', '3', '2', 'm', '\0' }
 green text
 
static char fgdef [6] = {27, '[', '3', '9', 'm', '\0' }
 default text
 
static short debug_lvl = 1
 
- Static Protected Member Functions inherited from FGJSBBase
static std::string CreateIndexedPropertyName (const std::string &Property, int index)
 
- Static Protected Attributes inherited from FGJSBBase
static constexpr double radtodeg = 180. / M_PI
 
static constexpr double degtorad = M_PI / 180.
 
static constexpr double hptoftlbssec = 550.0
 
static constexpr double psftoinhg = 0.014138
 
static constexpr double psftopa = 47.88
 
static constexpr double fttom = 0.3048
 
static constexpr double ktstofps = 1852./(3600*fttom)
 
static constexpr double fpstokts = 1.0 / ktstofps
 
static constexpr double inchtoft = 1.0/12.0
 
static constexpr double m3toft3 = 1.0/(fttom*fttom*fttom)
 
static constexpr double in3tom3 = inchtoft*inchtoft*inchtoft/m3toft3
 
static constexpr double inhgtopa = 3386.38
 
static constexpr double slugtolb = 32.174049
 Note that definition of lbtoslug by the inverse of slugtolb and not to a different constant you can also get from some tables will make lbtoslug*slugtolb == 1 up to the magnitude of roundoff.
 
static constexpr double lbtoslug = 1.0/slugtolb
 
static constexpr double kgtolb = 2.20462
 
static constexpr double kgtoslug = 0.06852168
 
static const std::string needed_cfg_version = "2.0"
 
static const std::string JSBSim_version = JSBSIM_VERSION " " __DATE__ " " __TIME__
 

Constructor & Destructor Documentation

◆ FGFCSComponent()

FGFCSComponent ( FGFCS fcs,
Element el 
)

Constructor.

Definition at line 52 of file FGFCSComponent.cpp.

52 : fcs(_fcs)
53{
54 Input = Output = delay_time = 0.0;
55 delay = index = 0;
56 ClipMin = ClipMax = new FGRealValue(0.0);
57 clip = cyclic_clip = false;
58 dt = fcs->GetChannelDeltaT();
59
60 auto PropertyManager = fcs->GetPropertyManager();
61 if (element->GetName() == string("lag_filter")) {
62 Type = "LAG_FILTER";
63 } else if (element->GetName() == string("lead_lag_filter")) {
64 Type = "LEAD_LAG_FILTER";
65 } else if (element->GetName() == string("washout_filter")) {
66 Type = "WASHOUT_FILTER";
67 } else if (element->GetName() == string("second_order_filter")) {
68 Type = "SECOND_ORDER_FILTER";
69 } else if (element->GetName() == string("integrator")) {
70 Type = "INTEGRATOR";
71 } else if (element->GetName() == string("summer")) {
72 Type = "SUMMER";
73 } else if (element->GetName() == string("pure_gain")) {
74 Type = "PURE_GAIN";
75 } else if (element->GetName() == string("scheduled_gain")) {
76 Type = "SCHEDULED_GAIN";
77 } else if (element->GetName() == string("aerosurface_scale")) {
78 Type = "AEROSURFACE_SCALE";
79 } else if (element->GetName() == string("switch")) {
80 Type = "SWITCH";
81 } else if (element->GetName() == string("kinematic")) {
82 Type = "KINEMATIC";
83 } else if (element->GetName() == string("deadband")) {
84 Type = "DEADBAND";
85 } else if (element->GetName() == string("fcs_function")) {
86 Type = "FCS_FUNCTION";
87 } else if (element->GetName() == string("pid")) {
88 Type = "PID";
89 } else if (element->GetName() == string("sensor")) {
90 Type = "SENSOR";
91 } else if (element->GetName() == string("accelerometer")) {
92 Type = "ACCELEROMETER";
93 } else if (element->GetName() == string("magnetometer")) {
94 Type = "MAGNETOMETER";
95 } else if (element->GetName() == string("gyro")) {
96 Type = "GYRO";
97 } else if (element->GetName() == string("actuator")) {
98 Type = "ACTUATOR";
99 } else if (element->GetName() == string("waypoint_heading")) {
100 Type = "WAYPOINT_HEADING";
101 } else if (element->GetName() == string("waypoint_distance")) {
102 Type = "WAYPOINT_DISTANCE";
103 } else if (element->GetName() == string("angle")) {
104 Type = "ANGLE";
105 } else if (element->GetName() == string("distributor")) {
106 Type = "DISTRIBUTOR";
107 } else { // illegal component in this channel
108 Type = "UNKNOWN";
109 }
110
111 Name = element->GetAttributeValue("name");
112
113 Element *init_element = element->FindElement("init");
114 while (init_element) {
115 InitNodes.push_back(new FGPropertyValue(init_element->GetDataLine(),
116 PropertyManager, init_element));
117 init_element = element->FindNextElement("init");
118 }
119
120 Element *input_element = element->FindElement("input");
121 while (input_element) {
122 InputNodes.push_back(new FGPropertyValue(input_element->GetDataLine(),
123 PropertyManager, input_element));
124
125 input_element = element->FindNextElement("input");
126 }
127
128 Element *out_elem = element->FindElement("output");
129 while (out_elem) {
130 string output_node_name = out_elem->GetDataLine();
131 bool node_exists = PropertyManager->HasNode(output_node_name);
132 FGPropertyNode* OutputNode = PropertyManager->GetNode( output_node_name, true );
133 if (!OutputNode) {
134 cerr << out_elem->ReadFrom() << " Unable to process property: "
135 << output_node_name << endl;
136 throw(string("Invalid output property name in flight control definition"));
137 }
138 OutputNodes.push_back(OutputNode);
139 // If the node has just been created then it must be initialized to a
140 // sensible value since FGPropertyNode::GetNode() does not take care of
141 // that. If the node was already existing, its current value is kept
142 // unchanged.
143 if (!node_exists)
144 OutputNode->setDoubleValue(Output);
145 out_elem = element->FindNextElement("output");
146 }
147
148 Element* delay_elem = element->FindElement("delay");
149 if ( delay_elem ) {
150 string delay_str = delay_elem->GetDataLine();
151 FGParameterValue delayParam(delay_str, PropertyManager, delay_elem);
152 delay_time = delayParam.GetValue();
153 string delayType = delay_elem->GetAttributeValue("type");
154 if (delayType.length() > 0) {
155 if (delayType == "time") {
156 delay = (unsigned int)(delay_time / dt);
157 } else if (delayType == "frames") {
158 delay = (unsigned int)delay_time;
159 } else {
160 cerr << "Unallowed delay type" << endl;
161 }
162 } else {
163 delay = (unsigned int)(delay_time / dt);
164 }
165 output_array.resize(delay);
166 for (unsigned int i=0; i<delay; i++) output_array[i] = 0.0;
167 }
168
169 Element *clip_el = element->FindElement("clipto");
170 if (clip_el) {
171 Element* el = clip_el->FindElement("min");
172 if (!el) {
173 cerr << clip_el->ReadFrom()
174 << "Element <min> is missing, <clipto> is ignored." << endl;
175 return;
176 }
177
178 ClipMin = new FGParameterValue(el, PropertyManager);
179
180 el = clip_el->FindElement("max");
181 if (!el) {
182 cerr << clip_el->ReadFrom()
183 << "Element <max> is missing, <clipto> is ignored." << endl;
184 ClipMin = nullptr;
185 return;
186 }
187
188 ClipMax = new FGParameterValue(el, PropertyManager);
189
190 if (clip_el->GetAttributeValue("type") == "cyclic")
191 cyclic_clip = true;
192
193 clip = true;
194 }
195
196 Debug(0);
197}
+ Here is the call graph for this function:

◆ ~FGFCSComponent()

~FGFCSComponent ( )
virtual

Destructor.

Definition at line 201 of file FGFCSComponent.cpp.

202{
203 Debug(1);
204}

Member Function Documentation

◆ bind()

void bind ( Element el,
FGPropertyManager pm 
)
protectedvirtual

Definition at line 301 of file FGFCSComponent.cpp.

302{
303 string tmp;
304 if (Name.find("/") == string::npos)
305 tmp = "fcs/" + PropertyManager->mkPropertyName(Name, true);
306 else
307 tmp = Name;
308
309 bool node_exists = PropertyManager->HasNode(tmp);
310 FGPropertyNode* node = PropertyManager->GetNode(tmp, true);
311
312 if (node) {
313 OutputNodes.push_back(node);
314 // If the node has just been created then it must be initialized to a
315 // sensible value since FGPropertyNode::GetNode() does not take care of
316 // that. If the node was already existing, its current value is kept
317 // unchanged.
318 if (!node_exists)
319 node->setDoubleValue(Output);
320 }
321 else {
322 cerr << el->ReadFrom()
323 << "Could not get or create property " << tmp << endl;
324 }
325}

◆ CheckInputNodes()

void CheckInputNodes ( size_t  MinNodes,
size_t  MaxNodes,
Element el 
)
protected

Definition at line 217 of file FGFCSComponent.cpp.

218{
219 size_t num = InputNodes.size();
220
221 if (num < MinNodes) {
222 cerr << el->ReadFrom()
223 << " Not enough <input> nodes are provided" << endl
224 << " Expecting " << MinNodes << " while " << num
225 << " are provided." << endl;
226 throw("Some inputs are missing.");
227 }
228
229 if (num > MaxNodes) {
230 cerr << el->ReadFrom()
231 << " Too many <input> nodes are provided" << endl
232 << " Expecting " << MaxNodes << " while " << num
233 << " are provided." << endl
234 << " The last " << num-MaxNodes << " input nodes will be ignored."
235 << endl;
236 }
237}

◆ Clip()

void Clip ( void  )
protected

Definition at line 266 of file FGFCSComponent.cpp.

267{
268 if (clip) {
269 double vmin = ClipMin->GetValue();
270 double vmax = ClipMax->GetValue();
271 double range = vmax - vmin;
272
273 if (range < 0.0) {
274 cerr << "Trying to clip with a max value (" << vmax << ") from "
275 << ClipMax->GetName() << " lower than the min value (" << vmin
276 << ") from " << ClipMin->GetName() << "." << endl
277 << "Clipping is ignored." << endl;
278 return;
279 }
280
281 if (cyclic_clip && range != 0.0) {
282 double value = Output - vmin;
283 Output = fmod(value, range) + vmin;
284 if (Output < vmin)
285 Output += range;
286 }
287 else
288 Output = Constrain(vmin, Output, vmax);
289 }
290}
static constexpr double Constrain(double min, double value, double max)
Constrain a value between a minimum and a maximum value.
Definition FGJSBBase.h:288

◆ Debug()

void Debug ( int  from)
protectedvirtual

Definition at line 346 of file FGFCSComponent.cpp.

347{
348 if (debug_lvl <= 0) return;
349
350 if (debug_lvl & 1) { // Standard console startup message output
351 if (from == 0) {
352 cout << endl << " Loading Component \"" << Name
353 << "\" of type: " << Type << endl;
354
355 if (clip) {
356 cout << " Minimum limit: " << ClipMin->GetName() << endl;
357 cout << " Maximum limit: " << ClipMax->GetName() << endl;
358 }
359 if (delay > 0) cout <<" Frame delay: " << delay
360 << " frames (" << delay*dt << " sec)" << endl;
361 }
362 }
363 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
364 if (from == 0) cout << "Instantiated: FGFCSComponent" << endl;
365 if (from == 1) cout << "Destroyed: FGFCSComponent" << endl;
366 }
367 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
368 }
369 if (debug_lvl & 8 ) { // Runtime state variables
370 }
371 if (debug_lvl & 16) { // Sanity checking
372 }
373 if (debug_lvl & 64) {
374 if (from == 0) { // Constructor
375 }
376 }
377}

◆ Delay()

void Delay ( void  )
protected

Definition at line 249 of file FGFCSComponent.cpp.

250{
251 if (fcs->GetTrimStatus()) {
252 // Update the whole history while trim routines are executing.
253 // Don't want to model delays while calculating a trim solution.
254 std::fill(output_array.begin(), output_array.end(), Output);
255 }
256 else {
257 output_array[index] = Output;
258 if ((unsigned int)index == delay-1) index = 0;
259 else index++;
260 Output = output_array[index];
261 }
262}

◆ GetName()

std::string GetName ( void  ) const
inline

Definition at line 95 of file FGFCSComponent.h.

95{return Name;}

◆ GetOutput()

double GetOutput ( void  ) const
inline

Definition at line 94 of file FGFCSComponent.h.

94{return Output;}

◆ GetOutputPct()

virtual double GetOutputPct ( void  ) const
inlinevirtual

Reimplemented in FGKinemat.

Definition at line 97 of file FGFCSComponent.h.

97{ return 0; }

◆ GetType()

std::string GetType ( void  ) const
inline

Definition at line 96 of file FGFCSComponent.h.

96{ return Type; }

◆ ResetPastStates()

void ResetPastStates ( void  )
virtual

Definition at line 208 of file FGFCSComponent.cpp.

209{
210 index = 0;
211 for (auto &elm: output_array)
212 elm = 0.0;
213}

◆ Run()

virtual bool Run ( void  )
inlinevirtual

Reimplemented in FGActuator, FGDistributor, FGKinemat, FGLinearActuator, FGSummer, and FGSwitch.

Definition at line 92 of file FGFCSComponent.h.

92{ return true; }

◆ SetOutput()

void SetOutput ( void  )
virtual

Definition at line 241 of file FGFCSComponent.cpp.

242{
243 for (auto node: OutputNodes)
244 node->setDoubleValue(Output);
245}

Member Data Documentation

◆ clip

bool clip
protected

Definition at line 115 of file FGFCSComponent.h.

◆ ClipMax

FGParameter_ptr ClipMax
protected

Definition at line 103 of file FGFCSComponent.h.

◆ ClipMin

FGParameter_ptr ClipMin
protected

Definition at line 103 of file FGFCSComponent.h.

◆ cyclic_clip

bool cyclic_clip
protected

Definition at line 115 of file FGFCSComponent.h.

◆ delay

unsigned int delay
protected

Definition at line 112 of file FGFCSComponent.h.

◆ delay_time

double delay_time
protected

Definition at line 111 of file FGFCSComponent.h.

◆ dt

double dt
protected

Definition at line 114 of file FGFCSComponent.h.

◆ fcs

FGFCS* fcs
protected

Definition at line 101 of file FGFCSComponent.h.

◆ index

int index
protected

Definition at line 113 of file FGFCSComponent.h.

◆ InitNodes

std::vector<FGPropertyValue_ptr> InitNodes
protected

Definition at line 104 of file FGFCSComponent.h.

◆ Input

double Input
protected

Definition at line 109 of file FGFCSComponent.h.

◆ InputNodes

std::vector<FGPropertyValue_ptr> InputNodes
protected

Definition at line 105 of file FGFCSComponent.h.

◆ Name

std::string Name
protected

Definition at line 108 of file FGFCSComponent.h.

◆ Output

double Output
protected

Definition at line 110 of file FGFCSComponent.h.

◆ output_array

std::vector<double> output_array
protected

Definition at line 106 of file FGFCSComponent.h.

◆ OutputNodes

std::vector<FGPropertyNode_ptr> OutputNodes
protected

Definition at line 102 of file FGFCSComponent.h.

◆ Type

std::string Type
protected

Definition at line 107 of file FGFCSComponent.h.


The documentation for this class was generated from the following files: