1
0
Fork 0
flightgear/src/FDM/JSBSim/FGFCS.cpp

164 lines
4.8 KiB
C++
Raw Normal View History

1999-02-05 21:26:01 +00:00
/*******************************************************************************
Module: FGFCS.cpp
Author: Jon Berndt
Date started: 12/12/98
Purpose: Model the flight controls
Called by: FDMExec
------------- Copyright (C) 1999 Jon S. Berndt (jsb@hal-pc.org) -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place - Suite 330, Boston, MA 02111-1307, USA.
Further information about the GNU General Public License can also be found on
the world wide web at http://www.gnu.org.
FUNCTIONAL DESCRIPTION
--------------------------------------------------------------------------------
This class models the flight controls for a specific airplane
HISTORY
--------------------------------------------------------------------------------
12/12/98 JSB Created
********************************************************************************
INCLUDES
*******************************************************************************/
#include "FGFCS.h"
#include "FGState.h"
#include "FGFDMExec.h"
#include "FGAtmosphere.h"
#include "FGAircraft.h"
#include "FGTranslation.h"
#include "FGRotation.h"
#include "FGPosition.h"
#include "FGAuxiliary.h"
#include "FGOutput.h"
1999-02-05 21:26:01 +00:00
2000-04-24 23:49:06 +00:00
#include "filtersjb/FGFilter.h"
#include "filtersjb/FGDeadBand.h"
#include "filtersjb/FGGain.h"
#include "filtersjb/FGGradient.h"
#include "filtersjb/FGSwitch.h"
#include "filtersjb/FGSummer.h"
1999-02-05 21:26:01 +00:00
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/
FGFCS::FGFCS(FGFDMExec* fdmex) : FGModel(fdmex)
1999-02-05 21:26:01 +00:00
{
Name = "FGFCS";
1999-02-05 21:26:01 +00:00
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-02-05 21:26:01 +00:00
FGFCS::~FGFCS(void)
{
}
2000-04-24 23:49:06 +00:00
/******************************************************************************/
1999-02-05 21:26:01 +00:00
bool FGFCS::Run(void)
{
if (!FGModel::Run()) {
2000-04-24 23:49:06 +00:00
for (unsigned int i=0; i<Components.size(); i++) Components[i]->Run();
1999-02-05 21:26:01 +00:00
} else {
}
return false;
}
1999-09-07 23:15:45 +00:00
2000-04-24 23:49:06 +00:00
/******************************************************************************/
void FGFCS::SetThrottleCmd(int engineNum, float setting)
{
if (engineNum < 0) {
for (int ctr=0;ctr<Aircraft->GetNumEngines();ctr++) ThrottleCmd[ctr] = setting;
} else {
ThrottlePos[engineNum] = setting;
}
}
/******************************************************************************/
1999-09-07 23:15:45 +00:00
2000-04-24 23:49:06 +00:00
void FGFCS::SetThrottlePos(int engineNum, float setting)
1999-09-07 23:15:45 +00:00
{
if (engineNum < 0) {
2000-04-24 23:49:06 +00:00
for (int ctr=0;ctr<Aircraft->GetNumEngines();ctr++)
ThrottlePos[ctr] = ThrottleCmd[ctr];
1999-09-07 23:15:45 +00:00
} else {
2000-04-24 23:49:06 +00:00
ThrottlePos[engineNum] = setting;
}
}
/******************************************************************************/
bool FGFCS::LoadFCS(FGConfigFile* AC_cfg)
{
string token;
FCSName = AC_cfg->GetValue("NAME");
AC_cfg->GetNextConfigLine();
while ((token = AC_cfg->GetValue()) != "/FLIGHT_CONTROL") {
if (token == "COMPONENT") {
if (((token = AC_cfg->GetValue("TYPE")) == "LAG_FILTER") ||
(token == "RECT_LAG_FILTER") ||
(token == "LEAD_LAG_FILTER") ||
(token == "SECOND_ORDER_FILTER") ||
(token == "WASHOUT_FILTER") ||
(token == "INTEGRATOR") )
{
Components.push_back(new FGFilter(this, AC_cfg));
} else if ((token == "PURE_GAIN") ||
(token == "SCHEDULED_GAIN") ||
(token == "AEROSURFACE_SCALE") )
{
Components.push_back(new FGGain(this, AC_cfg));
} else if (token == "SUMMER") {
Components.push_back(new FGSummer(this, AC_cfg));
} else if (token == "DEADBAND") {
Components.push_back(new FGDeadBand(this, AC_cfg));
} else if (token == "GRADIENT") {
Components.push_back(new FGGradient(this, AC_cfg));
} else if (token == "SWITCH") {
Components.push_back(new FGSwitch(this, AC_cfg));
}
AC_cfg->GetNextConfigLine();
}
1999-09-07 23:15:45 +00:00
}
2000-04-24 23:49:06 +00:00
return true;
}
/******************************************************************************/
float FGFCS::GetComponentOutput(int idx)
{
return Components[idx]->GetOutput();
}
/******************************************************************************/
string FGFCS::GetComponentName(int idx)
{
return Components[idx]->GetName();
1999-09-07 23:15:45 +00:00
}
2000-04-24 23:49:06 +00:00