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
FGFCS.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGGFCS.h
4 Author: Jon S. Berndt
5 Date started: 12/12/98
6
7 ------------- Copyright (C) 1999 Jon S. Berndt (jon@jsbsim.org) -------------
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 Software
11 Foundation; either version 2 of the License, or (at your option) any later
12 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 with
20 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21 Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be found on
24 the world wide web at http://www.gnu.org.
25
26HISTORY
27--------------------------------------------------------------------------------
2812/12/98 JSB Created
29
30%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31SENTRY
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34#ifndef FGFCS_H
35#define FGFCS_H
36
37/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38INCLUDES
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41#include <iosfwd>
42#include <vector>
43#include <string>
44
45#include "FGFDMExec.h"
46#include "models/FGModel.h"
47#include "models/FGLGear.h"
48#include "models/FGGroundReactions.h"
49
50/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51FORWARD DECLARATIONS
52%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
54namespace JSBSim {
55
56class FGFCSChannel;
57typedef enum { ofRad=0, ofDeg, ofNorm, ofMag , NForms} OutputForm;
58
59/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
60CLASS DOCUMENTATION
61%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
62
184/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
185CLASS DECLARATION
186%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
187
188class JSBSIM_API FGFCS : public FGModel
189{
190
191public:
196 ~FGFCS() override;
197
198 bool InitModel(void) override;
199
207 bool Run(bool Holding) override;
208
210
211
213 double GetDaCmd(void) const { return DaCmd; }
214
217 double GetDeCmd(void) const { return DeCmd; }
218
221 double GetDrCmd(void) const { return DrCmd; }
222
225 double GetDsCmd(void) const { return FDMExec->GetGroundReactions()->GetDsCmd(); }
226
229 double GetDfCmd(void) const { return DfCmd; }
230
233 double GetDsbCmd(void) const { return DsbCmd; }
234
237 double GetDspCmd(void) const { return DspCmd; }
238
242 double GetThrottleCmd(int engine) const;
243
244 const std::vector<double>& GetThrottleCmd() const {return ThrottleCmd;}
245
253 double GetMixtureCmd(int engine) const { return MixtureCmd[engine]; }
254
255 const std::vector<double>& GetMixtureCmd() const {return MixtureCmd;}
256
260 double GetPropAdvanceCmd(int engine) const { return PropAdvanceCmd[engine]; }
261
265 bool GetFeatherCmd(int engine) const { return PropFeatherCmd[engine]; }
266
269 double GetPitchTrimCmd(void) const { return PTrimCmd; }
270
273 double GetYawTrimCmd(void) const { return YTrimCmd; }
274
277 double GetRollTrimCmd(void) const { return RTrimCmd; }
278
282 double GetGearCmd(void) const { return GearCmd; }
284
286
287
289 double GetDaLPos( int form = ofRad )
290 const { return DaLPos[form]; }
291
294 double GetDaRPos( int form = ofRad )
295 const { return DaRPos[form]; }
296
299 double GetDePos( int form = ofRad )
300 const { return DePos[form]; }
301
304 double GetDrPos( int form = ofRad )
305 const { return DrPos[form]; }
306
309 double GetDsbPos( int form = ofRad )
310 const { return DsbPos[form]; }
311
314 double GetDspPos( int form = ofRad )
315 const { return DspPos[form]; }
316
319 double GetDfPos( int form = ofRad )
320 const { return DfPos[form]; }
321
325 double GetThrottlePos(int engine) const;
326
327 const std::vector<double>& GetThrottlePos() const {return ThrottlePos;}
328
336 double GetMixturePos(int engine) const { return MixturePos[engine]; }
337
338 const std::vector<double>& GetMixturePos() const {return MixturePos;}
339
342 double GetGearPos(void) const { return GearPos; }
343
346 double GetTailhookPos(void) const { return TailhookPos; }
347
350 double GetWingFoldPos(void) const { return WingFoldPos; }
351
355 double GetPropAdvance(int engine) const { return PropAdvance[engine]; }
356
357 const std::vector<double>& GetPropAdvance() const { return PropAdvance; }
358
362 bool GetPropFeather(int engine) const { return PropFeather[engine]; }
363
364 const std::vector<bool>& GetPropFeather() const { return PropFeather; }
366
370 std::string GetComponentStrings(const std::string& delimiter) const;
371
376 std::string GetComponentValues(const std::string& delimiter) const;
377
379
380
382 void SetDaCmd( double cmd ) { DaCmd = cmd; }
383
386 void SetDeCmd(double cmd ) { DeCmd = cmd; }
387
390 void SetDrCmd(double cmd) { DrCmd = cmd; }
391
394 void SetDsCmd(double cmd) { FDMExec->GetGroundReactions()->SetDsCmd( cmd ); }
395
398 void SetDfCmd(double cmd) { DfCmd = cmd; }
399
402 void SetDsbCmd(double cmd) { DsbCmd = cmd; }
403
406 void SetDspCmd(double cmd) { DspCmd = cmd; }
407
410 void SetPitchTrimCmd(double cmd) { PTrimCmd = cmd; }
411
414 void SetYawTrimCmd(double cmd) { YTrimCmd = cmd; }
415
418 void SetRollTrimCmd(double cmd) { RTrimCmd = cmd; }
419
423 void SetThrottleCmd(int engine, double cmd);
424
432 void SetMixtureCmd(int engine, double cmd);
433
436 void SetGearCmd(double gearcmd) { GearCmd = gearcmd; }
437
441 void SetPropAdvanceCmd(int engine, double cmd);
442
446 void SetFeatherCmd(int engine, bool cmd);
448
450
451
453 void SetDaLPos( int form , double pos );
454
457 void SetDaRPos( int form , double pos );
458
461 void SetDePos( int form , double pos );
462
465 void SetDrPos( int form , double pos );
466
469 void SetDfPos( int form , double pos );
470
473 void SetDsbPos( int form , double pos );
474
477 void SetDspPos( int form , double pos );
478
482 void SetThrottlePos(int engine, double cmd);
483
494 void SetMixturePos(int engine, double cmd);
495
498 void SetGearPos(double gearpos) { GearPos = gearpos; }
499
502 void SetTailhookPos(double hookpos) { TailhookPos = hookpos; }
503
506 void SetWingFoldPos(double foldpos) { WingFoldPos = foldpos; }
507
511 void SetPropAdvance(int engine, double cmd);
512
516 void SetPropFeather(int engine, bool cmd);
518
520
521
523 void SetLBrake(double cmd) {BrakePos[FGLGear::bgLeft] = cmd;}
524
527 void SetRBrake(double cmd) {BrakePos[FGLGear::bgRight] = cmd;}
528
531 void SetCBrake(double cmd) {BrakePos[FGLGear::bgCenter] = cmd;}
532
536 double GetBrake(FGLGear::BrakeGroup bg);
537
538 const std::vector<double>& GetBrakePos() const {return BrakePos;}
539
542 double GetLBrake(void) const {return BrakePos[FGLGear::bgLeft];}
543
546 double GetRBrake(void) const {return BrakePos[FGLGear::bgRight];}
547
550 double GetCBrake(void) const {return BrakePos[FGLGear::bgCenter];}
552
553 enum SystemType { stFCS, stSystem, stAutoPilot };
554
559 bool Load(Element* el) override;
560
561 SGPath FindFullPathName(const SGPath& path) const override;
562
563 void AddThrottle(void);
564 double GetDt(void) const;
565
566 std::shared_ptr<FGPropertyManager> GetPropertyManager(void) { return PropertyManager; }
567
568 bool GetTrimStatus(void) const { return FDMExec->GetTrimStatus(); }
569 double GetChannelDeltaT(void) const { return GetDt() * ChannelRate; }
570
571private:
572 double DaCmd, DeCmd, DrCmd, DfCmd, DsbCmd, DspCmd;
573 double DePos[NForms], DaLPos[NForms], DaRPos[NForms], DrPos[NForms];
574 double DfPos[NForms], DsbPos[NForms], DspPos[NForms];
575 double PTrimCmd, YTrimCmd, RTrimCmd;
576 std::vector <double> ThrottleCmd;
577 std::vector <double> ThrottlePos;
578 std::vector <double> MixtureCmd;
579 std::vector <double> MixturePos;
580 std::vector <double> PropAdvanceCmd;
581 std::vector <double> PropAdvance;
582 std::vector <bool> PropFeatherCmd;
583 std::vector <bool> PropFeather;
584 //double LeftBrake, RightBrake, CenterBrake; // Brake settings
585 std::vector <double> BrakePos; // left, center, right - defined by FGLGear:: enum
586 double GearCmd,GearPos;
587 double TailhookPos, WingFoldPos;
588 SystemType systype;
589 int ChannelRate;
590
591 typedef std::vector <FGFCSChannel*> Channels;
592 Channels SystemChannels;
593 void bind(void);
594 void bindThrottle(unsigned int);
595 void Debug(int from) override;
596};
597}
598
599#endif
Encapsulates the Flight Control System (FCS) functionality.
Definition FGFCS.h:189
void SetPitchTrimCmd(double cmd)
Sets the pitch trim command.
Definition FGFCS.h:410
void SetGearPos(double gearpos)
Set the gear extend/retract position, defaults to down.
Definition FGFCS.h:498
double GetCBrake(void) const
Gets the center brake.
Definition FGFCS.h:550
double GetLBrake(void) const
Gets the left brake.
Definition FGFCS.h:542
double GetDfPos(int form=ofRad) const
Gets the flaps position.
Definition FGFCS.h:319
void SetDsbCmd(double cmd)
Sets the speedbrake command.
Definition FGFCS.h:402
bool GetFeatherCmd(int engine) const
Gets the prop feather command.
Definition FGFCS.h:265
double GetDfCmd(void) const
Gets the flaps command.
Definition FGFCS.h:229
double GetDeCmd(void) const
Gets the elevator command.
Definition FGFCS.h:217
double GetDsCmd(void) const
Gets the steering command.
Definition FGFCS.h:225
double GetTailhookPos(void) const
Gets the tailhook position (0 up, 1 down)
Definition FGFCS.h:346
double GetPropAdvanceCmd(int engine) const
Gets the prop pitch command.
Definition FGFCS.h:260
void SetDeCmd(double cmd)
Sets the elevator command.
Definition FGFCS.h:386
double GetDePos(int form=ofRad) const
Gets the elevator position.
Definition FGFCS.h:299
void SetDaCmd(double cmd)
Sets the aileron command.
Definition FGFCS.h:382
double GetDsbPos(int form=ofRad) const
Gets the speedbrake position.
Definition FGFCS.h:309
double GetRBrake(void) const
Gets the right brake.
Definition FGFCS.h:546
void SetRBrake(double cmd)
Sets the right brake group.
Definition FGFCS.h:527
void SetDrCmd(double cmd)
Sets the rudder command.
Definition FGFCS.h:390
double GetDrCmd(void) const
Gets the rudder command.
Definition FGFCS.h:221
double GetDaCmd(void) const
Gets the aileron command.
Definition FGFCS.h:213
double GetDaLPos(int form=ofRad) const
Gets the left aileron position.
Definition FGFCS.h:289
double GetMixtureCmd(int engine) const
Gets the mixture command.
Definition FGFCS.h:253
double GetRollTrimCmd(void) const
Gets the aileron trim command.
Definition FGFCS.h:277
double GetDaRPos(int form=ofRad) const
Gets the right aileron position.
Definition FGFCS.h:294
void SetTailhookPos(double hookpos)
Set the tailhook position.
Definition FGFCS.h:502
void SetDfCmd(double cmd)
Sets the flaps command.
Definition FGFCS.h:398
void SetDsCmd(double cmd)
Sets the steering command.
Definition FGFCS.h:394
double GetWingFoldPos(void) const
Gets the wing fold position (0 unfolded, 1 folded)
Definition FGFCS.h:350
double GetDspCmd(void) const
Gets the spoiler command.
Definition FGFCS.h:237
double GetPitchTrimCmd(void) const
Gets the pitch trim command.
Definition FGFCS.h:269
double GetGearPos(void) const
Gets the gear position (0 up, 1 down), defaults to down.
Definition FGFCS.h:342
bool GetPropFeather(int engine) const
Gets the prop feather position.
Definition FGFCS.h:362
double GetDsbCmd(void) const
Gets the speedbrake command.
Definition FGFCS.h:233
void SetDspCmd(double cmd)
Sets the spoilers command.
Definition FGFCS.h:406
void SetLBrake(double cmd)
Sets the left brake group.
Definition FGFCS.h:523
double GetPropAdvance(int engine) const
Gets the prop pitch position.
Definition FGFCS.h:355
double GetDspPos(int form=ofRad) const
Gets the spoiler position.
Definition FGFCS.h:314
void SetCBrake(double cmd)
Sets the center brake group.
Definition FGFCS.h:531
double GetYawTrimCmd(void) const
Gets the rudder trim command.
Definition FGFCS.h:273
void SetRollTrimCmd(double cmd)
Sets the aileron trim command.
Definition FGFCS.h:418
void SetYawTrimCmd(double cmd)
Sets the rudder trim command.
Definition FGFCS.h:414
double GetGearCmd(void) const
Get the gear extend/retract command.
Definition FGFCS.h:282
double GetMixturePos(int engine) const
Gets the mixture position.
Definition FGFCS.h:336
void SetWingFoldPos(double foldpos)
Set the wing fold position.
Definition FGFCS.h:506
double GetDrPos(int form=ofRad) const
Gets the rudder position.
Definition FGFCS.h:304
void SetGearCmd(double gearcmd)
Set the gear extend/retract command, defaults to down.
Definition FGFCS.h:436
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
std::shared_ptr< FGGroundReactions > GetGroundReactions(void) const
Returns the FGGroundReactions pointer.
BrakeGroup
Brake grouping enumerators.
Definition FGLGear.h:216
Base class for all scheduled JSBSim models.
Definition FGModel.h:70