2002-08-26 22:04:10 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
Module: FGPropulsion.cpp
|
|
|
|
Author: Jon S. Berndt
|
|
|
|
Date started: 08/20/00
|
2004-06-14 11:40:45 +00:00
|
|
|
Purpose: Encapsulates the set of engines and tanks associated
|
2002-08-26 22:04:10 +00:00
|
|
|
with this aircraft
|
|
|
|
|
|
|
|
------------- Copyright (C) 2000 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
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
The Propulsion class is the container for the entire propulsion system, which is
|
2004-06-14 11:40:45 +00:00
|
|
|
comprised of engines and tanks. Once the Propulsion class gets the config file,
|
|
|
|
it reads in information which is specific to a type of engine. Then:
|
2002-08-26 22:04:10 +00:00
|
|
|
|
|
|
|
1) The appropriate engine type instance is created
|
2004-06-14 11:40:45 +00:00
|
|
|
2) At least one tank object is created, and is linked to an engine.
|
2002-08-26 22:04:10 +00:00
|
|
|
|
2004-06-14 11:40:45 +00:00
|
|
|
At Run time each engines Calculate() method is called.
|
2002-08-26 22:04:10 +00:00
|
|
|
|
|
|
|
HISTORY
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
08/20/00 JSB Created
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
INCLUDES
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
#include "FGPropulsion.h"
|
2004-03-14 14:57:07 +00:00
|
|
|
#include "FGRocket.h"
|
|
|
|
#include "FGTurbine.h"
|
|
|
|
#include "FGPiston.h"
|
2004-06-14 11:40:45 +00:00
|
|
|
#include "FGElectric.h"
|
2002-08-26 22:04:10 +00:00
|
|
|
#include "FGPropertyManager.h"
|
2004-12-16 12:47:20 +00:00
|
|
|
#include <sstream>
|
2002-08-26 22:04:10 +00:00
|
|
|
|
2003-01-24 12:55:28 +00:00
|
|
|
namespace JSBSim {
|
|
|
|
|
|
|
|
static const char *IdSrc = "$Id$";
|
|
|
|
static const char *IdHdr = ID_PROPULSION;
|
|
|
|
|
|
|
|
extern short debug_lvl;
|
|
|
|
|
2002-08-26 22:04:10 +00:00
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
CLASS IMPLEMENTATION
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
FGPropulsion::FGPropulsion(FGFDMExec* exec) : FGModel(exec)
|
|
|
|
{
|
|
|
|
Name = "FGPropulsion";
|
2004-01-14 22:09:39 +00:00
|
|
|
|
2002-08-26 22:04:10 +00:00
|
|
|
numSelectedFuelTanks = numSelectedOxiTanks = 0;
|
2004-06-14 11:40:45 +00:00
|
|
|
numTanks = numEngines = 0;
|
2002-08-26 22:04:10 +00:00
|
|
|
numOxiTanks = numFuelTanks = 0;
|
|
|
|
ActiveEngine = -1; // -1: ALL, 0: Engine 1, 1: Engine 2 ...
|
2004-03-14 14:57:07 +00:00
|
|
|
tankJ.InitMatrix();
|
2004-06-14 11:40:45 +00:00
|
|
|
refuel = false;
|
2004-12-16 12:47:20 +00:00
|
|
|
fuel_freeze = false;
|
2004-01-14 22:09:39 +00:00
|
|
|
|
2002-08-26 22:04:10 +00:00
|
|
|
bind();
|
2004-01-14 22:09:39 +00:00
|
|
|
|
2002-08-26 22:04:10 +00:00
|
|
|
Debug(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
FGPropulsion::~FGPropulsion()
|
|
|
|
{
|
|
|
|
for (unsigned int i=0; i<Engines.size(); i++) delete Engines[i];
|
|
|
|
Engines.clear();
|
|
|
|
unbind();
|
|
|
|
Debug(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
bool FGPropulsion::Run(void)
|
|
|
|
{
|
2004-12-16 12:47:20 +00:00
|
|
|
unsigned int i;
|
|
|
|
|
2004-06-14 11:40:45 +00:00
|
|
|
if (FGModel::Run()) return true;
|
|
|
|
|
|
|
|
double dt = State->Getdt();
|
2002-08-26 22:04:10 +00:00
|
|
|
|
|
|
|
vForces.InitMatrix();
|
|
|
|
vMoments.InitMatrix();
|
|
|
|
|
2004-12-16 12:47:20 +00:00
|
|
|
for (i=0; i<numEngines; i++) {
|
2004-06-14 11:40:45 +00:00
|
|
|
Engines[i]->Calculate();
|
|
|
|
vForces += Engines[i]->GetBodyForces(); // sum body frame forces
|
|
|
|
vMoments += Engines[i]->GetMoments(); // sum body frame moments
|
2002-08-26 22:04:10 +00:00
|
|
|
}
|
2004-06-14 11:40:45 +00:00
|
|
|
|
2004-12-16 12:47:20 +00:00
|
|
|
for (i=0; i<numTanks; i++) {
|
2004-06-14 11:40:45 +00:00
|
|
|
Tanks[i]->Calculate( dt * rate );
|
2004-06-27 19:35:54 +00:00
|
|
|
}
|
2004-06-14 11:40:45 +00:00
|
|
|
|
|
|
|
if (refuel) DoRefuel( dt * rate );
|
2004-12-16 12:47:20 +00:00
|
|
|
|
2004-06-14 11:40:45 +00:00
|
|
|
return false;
|
2002-08-26 22:04:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
bool FGPropulsion::GetSteadyState(void)
|
|
|
|
{
|
|
|
|
double currentThrust = 0, lastThrust=-1;
|
|
|
|
int steady_count,j=0;
|
|
|
|
bool steady=false;
|
|
|
|
|
|
|
|
vForces.InitMatrix();
|
|
|
|
vMoments.InitMatrix();
|
|
|
|
|
|
|
|
if (!FGModel::Run()) {
|
|
|
|
for (unsigned int i=0; i<numEngines; i++) {
|
|
|
|
Engines[i]->SetTrimMode(true);
|
|
|
|
steady=false;
|
|
|
|
steady_count=0;
|
|
|
|
while (!steady && j < 6000) {
|
2004-06-14 11:40:45 +00:00
|
|
|
Engines[i]->Calculate();
|
2002-08-26 22:04:10 +00:00
|
|
|
lastThrust = currentThrust;
|
2004-06-14 11:40:45 +00:00
|
|
|
currentThrust = Engines[i]->GetThrust();
|
2002-08-26 22:04:10 +00:00
|
|
|
if (fabs(lastThrust-currentThrust) < 0.0001) {
|
|
|
|
steady_count++;
|
|
|
|
if (steady_count > 120) { steady=true; }
|
|
|
|
} else {
|
|
|
|
steady_count=0;
|
|
|
|
}
|
2002-09-22 15:31:09 +00:00
|
|
|
j++;
|
2002-08-26 22:04:10 +00:00
|
|
|
}
|
2004-06-14 11:40:45 +00:00
|
|
|
vForces += Engines[i]->GetBodyForces(); // sum body frame forces
|
|
|
|
vMoments += Engines[i]->GetMoments(); // sum body frame moments
|
2002-08-26 22:04:10 +00:00
|
|
|
Engines[i]->SetTrimMode(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
bool FGPropulsion::ICEngineStart(void)
|
|
|
|
{
|
|
|
|
int j;
|
|
|
|
|
|
|
|
vForces.InitMatrix();
|
|
|
|
vMoments.InitMatrix();
|
2002-09-22 15:31:09 +00:00
|
|
|
|
2002-08-26 22:04:10 +00:00
|
|
|
for (unsigned int i=0; i<numEngines; i++) {
|
|
|
|
Engines[i]->SetTrimMode(true);
|
|
|
|
j=0;
|
|
|
|
while (!Engines[i]->GetRunning() && j < 2000) {
|
2004-06-14 11:40:45 +00:00
|
|
|
Engines[i]->Calculate();
|
2002-09-22 15:31:09 +00:00
|
|
|
j++;
|
2002-08-26 22:04:10 +00:00
|
|
|
}
|
2004-06-14 11:40:45 +00:00
|
|
|
vForces += Engines[i]->GetBodyForces(); // sum body frame forces
|
|
|
|
vMoments += Engines[i]->GetMoments(); // sum body frame moments
|
2002-08-26 22:04:10 +00:00
|
|
|
Engines[i]->SetTrimMode(false);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
bool FGPropulsion::Load(FGConfigFile* AC_cfg)
|
|
|
|
{
|
2004-06-14 11:40:45 +00:00
|
|
|
string token, fullpath, localpath;
|
2002-08-26 22:04:10 +00:00
|
|
|
string engineFileName, engType;
|
|
|
|
string parameter;
|
|
|
|
string enginePath = FDMExec->GetEnginePath();
|
2004-06-14 11:40:45 +00:00
|
|
|
string aircraftPath = FDMExec->GetAircraftPath();
|
2002-08-26 22:04:10 +00:00
|
|
|
double xLoc, yLoc, zLoc, Pitch, Yaw;
|
|
|
|
int Feed;
|
|
|
|
bool ThrottleAdded = false;
|
2004-06-14 11:40:45 +00:00
|
|
|
FGConfigFile* Cfg_ptr = 0;
|
2002-08-26 22:04:10 +00:00
|
|
|
|
|
|
|
# ifndef macintosh
|
|
|
|
fullpath = enginePath + "/";
|
2004-06-14 11:40:45 +00:00
|
|
|
localpath = aircraftPath + "/Engines/";
|
2002-08-26 22:04:10 +00:00
|
|
|
# else
|
|
|
|
fullpath = enginePath + ";";
|
2004-06-14 11:40:45 +00:00
|
|
|
localpath = aircraftPath + ";Engines;";
|
2002-08-26 22:04:10 +00:00
|
|
|
# endif
|
|
|
|
|
|
|
|
AC_cfg->GetNextConfigLine();
|
|
|
|
|
|
|
|
while ((token = AC_cfg->GetValue()) != string("/PROPULSION")) {
|
|
|
|
|
|
|
|
if (token == "AC_ENGINE") { // ============ READING ENGINES
|
|
|
|
|
|
|
|
engineFileName = AC_cfg->GetValue("FILE");
|
|
|
|
|
2004-06-14 11:40:45 +00:00
|
|
|
// Look in the Aircraft/Engines directory first
|
|
|
|
Cfg_ptr = 0;
|
|
|
|
FGConfigFile Local_cfg(localpath + engineFileName + ".xml");
|
2002-08-26 22:04:10 +00:00
|
|
|
FGConfigFile Eng_cfg(fullpath + engineFileName + ".xml");
|
2004-06-14 11:40:45 +00:00
|
|
|
if (Local_cfg.IsOpen()) {
|
|
|
|
Cfg_ptr = &Local_cfg;
|
|
|
|
if (debug_lvl > 0) cout << "\n Reading engine from file: " << localpath
|
|
|
|
+ engineFileName + ".xml"<< endl;
|
|
|
|
} else {
|
|
|
|
if (Eng_cfg.IsOpen()) {
|
|
|
|
Cfg_ptr = &Eng_cfg;
|
|
|
|
if (debug_lvl > 0) cout << "\n Reading engine from file: " << fullpath
|
|
|
|
+ engineFileName + ".xml"<< endl;
|
|
|
|
}
|
|
|
|
}
|
2002-08-26 22:04:10 +00:00
|
|
|
|
2004-06-14 11:40:45 +00:00
|
|
|
if (Cfg_ptr) {
|
|
|
|
Cfg_ptr->GetNextConfigLine();
|
|
|
|
engType = Cfg_ptr->GetValue();
|
2002-08-26 22:04:10 +00:00
|
|
|
|
|
|
|
FCS->AddThrottle();
|
|
|
|
ThrottleAdded = true;
|
|
|
|
|
|
|
|
if (engType == "FG_ROCKET") {
|
2004-06-27 19:35:54 +00:00
|
|
|
Engines.push_back(new FGRocket(FDMExec, Cfg_ptr, numEngines));
|
2002-08-26 22:04:10 +00:00
|
|
|
} else if (engType == "FG_PISTON") {
|
2004-06-27 19:35:54 +00:00
|
|
|
Engines.push_back(new FGPiston(FDMExec, Cfg_ptr, numEngines));
|
2002-08-29 13:39:29 +00:00
|
|
|
} else if (engType == "FG_TURBINE") {
|
2004-06-27 19:35:54 +00:00
|
|
|
Engines.push_back(new FGTurbine(FDMExec, Cfg_ptr, numEngines));
|
2003-03-23 15:12:35 +00:00
|
|
|
} else if (engType == "FG_SIMTURBINE") {
|
2004-06-14 11:40:45 +00:00
|
|
|
cerr << endl;
|
|
|
|
cerr << "The FG_SIMTURBINE engine type has been renamed to FG_TURBINE." << endl;
|
|
|
|
cerr << "To fix this problem, simply replace the FG_SIMTURBINE name " << endl;
|
|
|
|
cerr << "in your engine file to FG_TURBINE." << endl;
|
|
|
|
cerr << endl;
|
2004-06-27 19:35:54 +00:00
|
|
|
Engines.push_back(new FGTurbine(FDMExec, Cfg_ptr, numEngines));
|
2004-06-14 11:40:45 +00:00
|
|
|
} else if (engType == "FG_ELECTRIC") {
|
2004-06-27 19:35:54 +00:00
|
|
|
Engines.push_back(new FGElectric(FDMExec, Cfg_ptr, numEngines));
|
2002-08-26 22:04:10 +00:00
|
|
|
} else {
|
|
|
|
cerr << fgred << " Unrecognized engine type: " << underon << engType
|
|
|
|
<< underoff << " found in config file." << fgdef << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-05-22 08:06:47 +00:00
|
|
|
Engines.back()->SetEngineFileName(engineFileName);
|
|
|
|
|
2002-08-26 22:04:10 +00:00
|
|
|
AC_cfg->GetNextConfigLine();
|
|
|
|
while ((token = AC_cfg->GetValue()) != string("/AC_ENGINE")) {
|
|
|
|
*AC_cfg >> token;
|
|
|
|
if (token == "XLOC") { *AC_cfg >> xLoc; }
|
|
|
|
else if (token == "YLOC") { *AC_cfg >> yLoc; }
|
|
|
|
else if (token == "ZLOC") { *AC_cfg >> zLoc; }
|
|
|
|
else if (token == "PITCH") { *AC_cfg >> Pitch;}
|
2004-06-14 11:40:45 +00:00
|
|
|
else if (token == "YAW") { *AC_cfg >> Yaw; }
|
|
|
|
else if (token.find("AC_THRUSTER") != string::npos) {
|
|
|
|
if (debug_lvl > 0) cout << "\n Reading thruster definition" << endl;
|
|
|
|
Engines.back()->LoadThruster(AC_cfg);
|
|
|
|
AC_cfg->GetNextConfigLine();
|
|
|
|
}
|
2002-08-26 22:04:10 +00:00
|
|
|
else if (token == "FEED") {
|
|
|
|
*AC_cfg >> Feed;
|
|
|
|
Engines[numEngines]->AddFeedTank(Feed);
|
|
|
|
if (debug_lvl > 0) cout << " Feed tank: " << Feed << endl;
|
|
|
|
} else cerr << "Unknown identifier: " << token << " in engine file: "
|
|
|
|
<< engineFileName << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (debug_lvl > 0) {
|
|
|
|
cout << " X = " << xLoc << endl;
|
|
|
|
cout << " Y = " << yLoc << endl;
|
|
|
|
cout << " Z = " << zLoc << endl;
|
|
|
|
cout << " Pitch = " << Pitch << endl;
|
|
|
|
cout << " Yaw = " << Yaw << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
Engines[numEngines]->SetPlacement(xLoc, yLoc, zLoc, Pitch, Yaw);
|
|
|
|
numEngines++;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
cerr << fgred << "\n Could not read engine config file: " << underon <<
|
2004-06-14 11:40:45 +00:00
|
|
|
engineFileName + ".xml" << underoff << fgdef << endl;
|
2002-08-26 22:04:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (token == "AC_TANK") { // ============== READING TANKS
|
|
|
|
|
|
|
|
if (debug_lvl > 0) cout << "\n Reading tank definition" << endl;
|
2004-06-14 11:40:45 +00:00
|
|
|
Tanks.push_back(new FGTank(AC_cfg, FDMExec));
|
2002-08-26 22:04:10 +00:00
|
|
|
switch(Tanks[numTanks]->GetType()) {
|
|
|
|
case FGTank::ttFUEL:
|
|
|
|
numSelectedFuelTanks++;
|
|
|
|
numFuelTanks++;
|
|
|
|
break;
|
|
|
|
case FGTank::ttOXIDIZER:
|
|
|
|
numSelectedOxiTanks++;
|
|
|
|
numOxiTanks++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
numTanks++;
|
|
|
|
}
|
|
|
|
AC_cfg->GetNextConfigLine();
|
|
|
|
}
|
|
|
|
|
2004-03-14 14:57:07 +00:00
|
|
|
CalculateTankInertias();
|
2002-08-26 22:04:10 +00:00
|
|
|
if (!ThrottleAdded) FCS->AddThrottle(); // need to have at least one throttle
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2004-12-16 12:47:20 +00:00
|
|
|
string FGPropulsion::GetPropulsionStrings(string delimeter)
|
2002-08-26 22:04:10 +00:00
|
|
|
{
|
2004-12-16 12:47:20 +00:00
|
|
|
unsigned int i;
|
|
|
|
|
2002-08-26 22:04:10 +00:00
|
|
|
string PropulsionStrings = "";
|
|
|
|
bool firstime = true;
|
2004-12-16 12:47:20 +00:00
|
|
|
stringstream buf;
|
2002-08-26 22:04:10 +00:00
|
|
|
|
2004-12-16 12:47:20 +00:00
|
|
|
for (i=0; i<Engines.size(); i++) {
|
2002-08-26 22:04:10 +00:00
|
|
|
if (firstime) firstime = false;
|
2004-12-16 12:47:20 +00:00
|
|
|
else PropulsionStrings += delimeter;
|
2002-08-26 22:04:10 +00:00
|
|
|
|
2004-12-16 12:47:20 +00:00
|
|
|
PropulsionStrings += Engines[i]->GetEngineLabels(delimeter);
|
|
|
|
}
|
|
|
|
for (i=0; i<Tanks.size(); i++) {
|
|
|
|
if (Tanks[i]->GetType() == FGTank::ttFUEL) buf << delimeter << "Fuel Tank " << i;
|
|
|
|
else if (Tanks[i]->GetType() == FGTank::ttOXIDIZER) buf << delimeter << "Oxidizer Tank " << i;
|
2002-08-26 22:04:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return PropulsionStrings;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2004-12-16 12:47:20 +00:00
|
|
|
string FGPropulsion::GetPropulsionValues(string delimeter)
|
2002-08-26 22:04:10 +00:00
|
|
|
{
|
2004-12-16 12:47:20 +00:00
|
|
|
unsigned int i;
|
|
|
|
|
2002-08-26 22:04:10 +00:00
|
|
|
string PropulsionValues = "";
|
|
|
|
bool firstime = true;
|
2004-12-16 12:47:20 +00:00
|
|
|
stringstream buf;
|
2002-08-26 22:04:10 +00:00
|
|
|
|
2004-12-16 12:47:20 +00:00
|
|
|
for (i=0; i<Engines.size(); i++) {
|
2002-08-26 22:04:10 +00:00
|
|
|
if (firstime) firstime = false;
|
2004-12-16 12:47:20 +00:00
|
|
|
else PropulsionValues += delimeter;
|
2002-08-26 22:04:10 +00:00
|
|
|
|
2004-12-16 12:47:20 +00:00
|
|
|
PropulsionValues += Engines[i]->GetEngineValues(delimeter);
|
|
|
|
}
|
|
|
|
for (i=0; i<Tanks.size(); i++) {
|
|
|
|
buf << delimeter;
|
|
|
|
buf << Tanks[i]->GetContents();
|
2002-08-26 22:04:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return PropulsionValues;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
FGColumnVector3& FGPropulsion::GetTanksMoment(void)
|
|
|
|
{
|
|
|
|
iTank = Tanks.begin();
|
2004-03-14 14:57:07 +00:00
|
|
|
vXYZtank_arm.InitMatrix();
|
2002-08-26 22:04:10 +00:00
|
|
|
while (iTank < Tanks.end()) {
|
2004-03-14 14:57:07 +00:00
|
|
|
vXYZtank_arm(eX) += (*iTank)->GetXYZ(eX)*(*iTank)->GetContents();
|
|
|
|
vXYZtank_arm(eY) += (*iTank)->GetXYZ(eY)*(*iTank)->GetContents();
|
|
|
|
vXYZtank_arm(eZ) += (*iTank)->GetXYZ(eZ)*(*iTank)->GetContents();
|
2002-08-26 22:04:10 +00:00
|
|
|
iTank++;
|
|
|
|
}
|
2004-03-14 14:57:07 +00:00
|
|
|
return vXYZtank_arm;
|
2002-08-26 22:04:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
double FGPropulsion::GetTanksWeight(void)
|
|
|
|
{
|
|
|
|
double Tw = 0.0;
|
|
|
|
|
|
|
|
iTank = Tanks.begin();
|
|
|
|
while (iTank < Tanks.end()) {
|
|
|
|
Tw += (*iTank)->GetContents();
|
|
|
|
iTank++;
|
|
|
|
}
|
|
|
|
return Tw;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2004-03-14 14:57:07 +00:00
|
|
|
FGMatrix33& FGPropulsion::CalculateTankInertias(void)
|
2002-08-26 22:04:10 +00:00
|
|
|
{
|
2004-03-14 14:57:07 +00:00
|
|
|
unsigned int size;
|
2002-08-26 22:04:10 +00:00
|
|
|
|
2004-03-14 14:57:07 +00:00
|
|
|
size = Tanks.size();
|
|
|
|
if (size == 0) return tankJ;
|
2002-08-26 22:04:10 +00:00
|
|
|
|
2004-03-14 14:57:07 +00:00
|
|
|
tankJ = FGMatrix33();
|
2002-08-26 22:04:10 +00:00
|
|
|
|
2004-03-14 14:57:07 +00:00
|
|
|
for (unsigned int i=0; i<size; i++)
|
|
|
|
tankJ += MassBalance->GetPointmassInertia( lbtoslug * Tanks[i]->GetContents(),
|
|
|
|
Tanks[i]->GetXYZ() );
|
2002-08-26 22:04:10 +00:00
|
|
|
|
2004-03-14 14:57:07 +00:00
|
|
|
return tankJ;
|
2002-08-26 22:04:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGPropulsion::SetMagnetos(int setting)
|
|
|
|
{
|
2004-01-14 22:09:39 +00:00
|
|
|
if (ActiveEngine < 0) {
|
2002-08-26 22:04:10 +00:00
|
|
|
for (unsigned i=0; i<Engines.size(); i++) {
|
2004-01-14 22:09:39 +00:00
|
|
|
((FGPiston*)Engines[i])->SetMagnetos(setting);
|
2002-08-26 22:04:10 +00:00
|
|
|
}
|
|
|
|
} else {
|
2004-01-14 22:09:39 +00:00
|
|
|
((FGPiston*)Engines[ActiveEngine])->SetMagnetos(setting);
|
2002-08-26 22:04:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGPropulsion::SetStarter(int setting)
|
|
|
|
{
|
2004-01-14 22:09:39 +00:00
|
|
|
if (ActiveEngine < 0) {
|
2002-08-26 22:04:10 +00:00
|
|
|
for (unsigned i=0; i<Engines.size(); i++) {
|
2004-01-14 22:09:39 +00:00
|
|
|
if (setting == 0)
|
|
|
|
Engines[i]->SetStarter(false);
|
|
|
|
else
|
|
|
|
Engines[i]->SetStarter(true);
|
2002-08-26 22:04:10 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (setting == 0)
|
|
|
|
Engines[ActiveEngine]->SetStarter(false);
|
|
|
|
else
|
|
|
|
Engines[ActiveEngine]->SetStarter(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2004-01-14 22:09:39 +00:00
|
|
|
void FGPropulsion::SetCutoff(int setting)
|
|
|
|
{
|
|
|
|
if (ActiveEngine < 0) {
|
|
|
|
for (unsigned i=0; i<Engines.size(); i++) {
|
|
|
|
if (setting == 0)
|
2004-06-14 11:40:45 +00:00
|
|
|
((FGTurbine*)Engines[i])->SetCutoff(false);
|
2004-01-14 22:09:39 +00:00
|
|
|
else
|
2004-06-14 11:40:45 +00:00
|
|
|
((FGTurbine*)Engines[i])->SetCutoff(true);
|
2004-01-14 22:09:39 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (setting == 0)
|
2004-06-14 11:40:45 +00:00
|
|
|
((FGTurbine*)Engines[ActiveEngine])->SetCutoff(false);
|
2004-01-14 22:09:39 +00:00
|
|
|
else
|
2004-06-14 11:40:45 +00:00
|
|
|
((FGTurbine*)Engines[ActiveEngine])->SetCutoff(true);
|
2004-01-14 22:09:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2002-08-26 22:04:10 +00:00
|
|
|
void FGPropulsion::SetActiveEngine(int engine)
|
|
|
|
{
|
2004-01-14 22:09:39 +00:00
|
|
|
if (engine >= Engines.size() || engine < 0)
|
2002-08-26 22:04:10 +00:00
|
|
|
ActiveEngine = -1;
|
|
|
|
else
|
|
|
|
ActiveEngine = engine;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2004-06-14 11:40:45 +00:00
|
|
|
double FGPropulsion::Transfer(int source, int target, double amount)
|
|
|
|
{
|
|
|
|
double shortage, overage;
|
|
|
|
|
|
|
|
if (source == -1) {
|
|
|
|
shortage = 0.0;
|
|
|
|
} else {
|
|
|
|
shortage = Tanks[source]->Drain(amount);
|
|
|
|
}
|
|
|
|
if (target == -1) {
|
|
|
|
overage = 0.0;
|
|
|
|
} else {
|
|
|
|
overage = Tanks[target]->Fill(amount - shortage);
|
|
|
|
}
|
|
|
|
return overage;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGPropulsion::DoRefuel(double time_slice)
|
|
|
|
{
|
|
|
|
double fillrate = 100 * time_slice; // 100 lbs/sec = 6000 lbs/min
|
|
|
|
int TanksNotFull = 0;
|
|
|
|
|
|
|
|
for (unsigned int i=0; i<numTanks; i++) {
|
|
|
|
if (Tanks[i]->GetPctFull() < 99.99) ++TanksNotFull;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TanksNotFull) {
|
|
|
|
for (unsigned int i=0; i<numTanks; i++) {
|
|
|
|
if (Tanks[i]->GetPctFull() < 99.99)
|
|
|
|
Transfer(-1, i, fillrate/TanksNotFull);
|
|
|
|
}
|
2004-06-27 19:35:54 +00:00
|
|
|
}
|
2004-06-14 11:40:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2004-12-16 12:47:20 +00:00
|
|
|
void FGPropulsion::SetFuelFreeze(bool f)
|
|
|
|
{
|
|
|
|
fuel_freeze = f;
|
|
|
|
for (unsigned int i=0; i<numEngines; i++) {
|
|
|
|
Engines[i]->SetFuelFreeze(f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2002-08-26 22:04:10 +00:00
|
|
|
void FGPropulsion::bind(void)
|
|
|
|
{
|
|
|
|
typedef double (FGPropulsion::*PMF)(int) const;
|
|
|
|
typedef int (FGPropulsion::*iPMF)(void) const;
|
|
|
|
|
|
|
|
PropertyManager->Tie("propulsion/magneto_cmd", this,
|
2004-01-14 22:09:39 +00:00
|
|
|
(iPMF)0, &FGPropulsion::SetMagnetos, true);
|
2002-08-26 22:04:10 +00:00
|
|
|
PropertyManager->Tie("propulsion/starter_cmd", this,
|
2004-01-14 22:09:39 +00:00
|
|
|
(iPMF)0, &FGPropulsion::SetStarter, true);
|
|
|
|
PropertyManager->Tie("propulsion/cutoff_cmd", this,
|
|
|
|
(iPMF)0, &FGPropulsion::SetCutoff, true);
|
|
|
|
|
2002-08-26 22:04:10 +00:00
|
|
|
PropertyManager->Tie("forces/fbx-prop-lbs", this,1,
|
|
|
|
(PMF)&FGPropulsion::GetForces);
|
|
|
|
PropertyManager->Tie("forces/fby-prop-lbs", this,2,
|
|
|
|
(PMF)&FGPropulsion::GetForces);
|
|
|
|
PropertyManager->Tie("forces/fbz-prop-lbs", this,3,
|
|
|
|
(PMF)&FGPropulsion::GetForces);
|
|
|
|
PropertyManager->Tie("moments/l-prop-lbsft", this,1,
|
|
|
|
(PMF)&FGPropulsion::GetMoments);
|
|
|
|
PropertyManager->Tie("moments/m-prop-lbsft", this,2,
|
|
|
|
(PMF)&FGPropulsion::GetMoments);
|
|
|
|
PropertyManager->Tie("moments/n-prop-lbsft", this,3,
|
|
|
|
(PMF)&FGPropulsion::GetMoments);
|
2004-01-14 22:09:39 +00:00
|
|
|
|
|
|
|
PropertyManager->Tie("propulsion/active_engine", this,
|
2004-01-15 10:18:51 +00:00
|
|
|
(iPMF)&FGPropulsion::GetActiveEngine, &FGPropulsion::SetActiveEngine, true);
|
2002-08-26 22:04:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
void FGPropulsion::unbind(void)
|
|
|
|
{
|
|
|
|
PropertyManager->Untie("propulsion/magneto_cmd");
|
|
|
|
PropertyManager->Untie("propulsion/starter_cmd");
|
2004-01-14 22:09:39 +00:00
|
|
|
PropertyManager->Untie("propulsion/cutoff_cmd");
|
2002-08-26 22:04:10 +00:00
|
|
|
PropertyManager->Untie("propulsion/active_engine");
|
|
|
|
PropertyManager->Untie("forces/fbx-prop-lbs");
|
|
|
|
PropertyManager->Untie("forces/fby-prop-lbs");
|
|
|
|
PropertyManager->Untie("forces/fbz-prop-lbs");
|
|
|
|
PropertyManager->Untie("moments/l-prop-lbsft");
|
|
|
|
PropertyManager->Untie("moments/m-prop-lbsft");
|
|
|
|
PropertyManager->Untie("moments/n-prop-lbsft");
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
// The bitmasked value choices are as follows:
|
|
|
|
// unset: In this case (the default) JSBSim would only print
|
|
|
|
// out the normally expected messages, essentially echoing
|
|
|
|
// the config files as they are read. If the environment
|
|
|
|
// variable is not set, debug_lvl is set to 1 internally
|
|
|
|
// 0: This requests JSBSim not to output any messages
|
|
|
|
// whatsoever.
|
|
|
|
// 1: This value explicity requests the normal JSBSim
|
|
|
|
// startup messages
|
|
|
|
// 2: This value asks for a message to be printed out when
|
|
|
|
// a class is instantiated
|
|
|
|
// 4: When this value is set, a message is displayed when a
|
|
|
|
// FGModel object executes its Run() method
|
|
|
|
// 8: When this value is set, various runtime state variables
|
|
|
|
// are printed out periodically
|
|
|
|
// 16: When set various parameters are sanity checked and
|
|
|
|
// a message is printed out when they go out of bounds
|
|
|
|
|
|
|
|
void FGPropulsion::Debug(int from)
|
|
|
|
{
|
|
|
|
if (debug_lvl <= 0) return;
|
|
|
|
|
|
|
|
if (debug_lvl & 1) { // Standard console startup message output
|
|
|
|
if (from == 0) { // Constructor
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (debug_lvl & 2 ) { // Instantiation/Destruction notification
|
|
|
|
if (from == 0) cout << "Instantiated: FGPropulsion" << endl;
|
|
|
|
if (from == 1) cout << "Destroyed: FGPropulsion" << endl;
|
|
|
|
}
|
|
|
|
if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
|
|
|
|
}
|
|
|
|
if (debug_lvl & 8 ) { // Runtime state variables
|
|
|
|
}
|
|
|
|
if (debug_lvl & 16) { // Sanity checking
|
|
|
|
}
|
|
|
|
if (debug_lvl & 64) {
|
|
|
|
if (from == 0) { // Constructor
|
|
|
|
cout << IdSrc << endl;
|
|
|
|
cout << IdHdr << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-01-24 12:55:28 +00:00
|
|
|
}
|