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
FGLinearActuator.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3Header: FGLinearActuator.h
4Author: Adriano Bassignana
5Date started: 2019-01-02
6
7------------- Copyright (C) 2019 A. Bassignana -------------
8
9This program is free software; you can redistribute it and/or modify it under
10the terms of the GNU Lesser General Public License as published by the Free
11Software Foundation; either version 2 of the License, or (at your option) any
12later version.
13
14This program is distributed in the hope that it will be useful, but WITHOUT
15ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
17details.
18
19You should have received a copy of the GNU Lesser General Public License along
20with this program; if not, write to the Free Software Foundation, Inc., 59
21Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23Further information about the GNU Lesser General Public License can also be
24found on the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
28
29%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30SENTRY
31%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
32
33#ifndef FGLINEARACTUATOR_H
34#define FGLINEARACTUATOR_H
35
36/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37INCLUDES
38%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39
40#include "FGFCSComponent.h"
41
42/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
43FORWARD DECLARATIONS
44%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
45
46namespace JSBSim {
47
48class Element;
49
50/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51 CLASS DOCUMENTATION
52 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
216/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
217 CLASS DECLARATION
218 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
219
221{
222public:
226 FGLinearActuator(FGFCS* fcs, Element* element);
229
231 bool Run(void) override;
232
233private:
234 FGParameter_ptr ptrSet;
235 bool set = true;
236 FGParameter_ptr ptrReset;
237 bool reset = false;
238 int direction = 0;
239 int countSpin = 0;
240 int versus = 0;
241 FGParameter_ptr ptrVersus;
242 double bias = 0.0;
243 FGParameter_ptr ptrBias;
244 double inputLast = 0.0;
245 double inputMem = 0.0;
246 double module = 1.0;
247 double hysteresis = 0.1;
248 double input = 1.0;
249 double rate = 0.3;
250 double gain = 1.0;
251 double lag = 0.0;
252 double previousLagInput;
253 double previousLagOutput;
254 double ca; // lag filter coefficient "a"
255 double cb; // lag filter coefficient "b"
256
257 void Debug(int from) override;
258};
259}
260#endif
Base class for JSBSim Flight Control System Components.
Encapsulates the Flight Control System (FCS) functionality.
Definition FGFCS.h:189
Models a flight control system summing component.
bool Run(void) override
The execution method for this FCS component.