2000-11-03 23:02:47 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2000-10-02 23:07:30 +00:00
|
|
|
|
|
|
|
Module: FGPropulsion.cpp
|
|
|
|
Author: Jon S. Berndt
|
|
|
|
Date started: 08/20/00
|
|
|
|
Purpose: Encapsulates the set of engines, tanks, and thrusters associated
|
|
|
|
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
|
|
|
|
comprised of engines, tanks, and "thrusters" (the device that transforms the
|
|
|
|
engine power into a force that acts on the aircraft, such as a nozzle or
|
|
|
|
propeller). Once the Propulsion class gets the config file, it reads in
|
|
|
|
information which is specific to a type of engine. Then:
|
|
|
|
|
|
|
|
1) The appropriate engine type instance is created
|
2001-03-30 01:04:50 +00:00
|
|
|
2) A thruster object is instantiated, and is linked to the engine
|
2000-10-02 23:07:30 +00:00
|
|
|
3) At least one tank object is created, and is linked to an engine.
|
|
|
|
|
|
|
|
At Run time each engines Calculate() method is called to return the excess power
|
|
|
|
generated during that iteration. The drag from the previous iteration is sub-
|
|
|
|
tracted to give the excess power available for thrust this pass. That quantity
|
|
|
|
is passed to the thrusters associated with a particular engine - perhaps with a
|
|
|
|
scaling mechanism (gearing?) to allow the engine to give its associated thrust-
|
|
|
|
ers specific distributed portions of the excess power.
|
|
|
|
|
|
|
|
HISTORY
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
08/20/00 JSB Created
|
|
|
|
|
2000-11-03 23:02:47 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2000-10-02 23:07:30 +00:00
|
|
|
INCLUDES
|
2000-11-03 23:02:47 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
2000-10-02 23:07:30 +00:00
|
|
|
|
|
|
|
#include "FGPropulsion.h"
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
static const char *IdSrc = "$Id$";
|
2000-10-14 02:10:10 +00:00
|
|
|
static const char *IdHdr = ID_PROPULSION;
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
extern short debug_lvl;
|
|
|
|
|
2000-11-03 23:02:47 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
CLASS IMPLEMENTATION
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
2000-10-02 23:07:30 +00:00
|
|
|
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
FGPropulsion::FGPropulsion(FGFDMExec* exec) : FGModel(exec)
|
2000-10-02 23:07:30 +00:00
|
|
|
{
|
2001-03-30 01:04:50 +00:00
|
|
|
Name = "FGPropulsion";
|
|
|
|
numSelectedFuelTanks = numSelectedOxiTanks = 0;
|
|
|
|
numTanks = numEngines = numThrusters = 0;
|
|
|
|
numOxiTanks = numFuelTanks = 0;
|
|
|
|
Forces = new FGColumnVector(3);
|
|
|
|
Moments = new FGColumnVector(3);
|
|
|
|
|
|
|
|
if (debug_lvl & 2) cout << "Instantiated: " << Name << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2000-10-02 23:07:30 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
FGPropulsion::~FGPropulsion()
|
|
|
|
{
|
|
|
|
for (unsigned int i=0; i<Engines.size(); i++) delete Engines[i];
|
|
|
|
Engines.clear();
|
|
|
|
if (Forces) delete Forces;
|
|
|
|
if (Moments) delete Moments;
|
|
|
|
if (debug_lvl & 2) cout << "Destroyed: FGPropulsion" << endl;
|
2000-10-02 23:07:30 +00:00
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2000-10-02 23:07:30 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
bool FGPropulsion::Run(void) {
|
|
|
|
float PowerAvailable;
|
|
|
|
dt = State->Getdt();
|
|
|
|
|
|
|
|
Forces->InitMatrix();
|
|
|
|
Moments->InitMatrix();
|
2000-10-02 23:07:30 +00:00
|
|
|
|
|
|
|
if (!FGModel::Run()) {
|
2001-03-30 01:04:50 +00:00
|
|
|
for (unsigned int i=0; i<numEngines; i++) {
|
|
|
|
Thrusters[i]->SetdeltaT(dt*rate);
|
|
|
|
PowerAvailable = Engines[i]->Calculate(Thrusters[i]->GetPowerRequired());
|
|
|
|
Thrusters[i]->Calculate(PowerAvailable);
|
|
|
|
*Forces += Thrusters[i]->GetBodyForces(); // sum body frame forces
|
|
|
|
*Moments += Thrusters[i]->GetMoments(); // sum body frame moments
|
|
|
|
}
|
2000-10-02 23:07:30 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
bool FGPropulsion::GetSteadyState(void) {
|
|
|
|
float PowerAvailable;
|
|
|
|
float currentThrust = 0, lastThrust=-1;
|
|
|
|
dt = State->Getdt();
|
|
|
|
|
|
|
|
Forces->InitMatrix();
|
|
|
|
Moments->InitMatrix();
|
|
|
|
|
|
|
|
if (!FGModel::Run()) {
|
|
|
|
for (unsigned int i=0; i<numEngines; i++) {
|
|
|
|
Engines[i]->SetTrimMode(true);
|
|
|
|
Thrusters[i]->SetdeltaT(dt*rate);
|
|
|
|
while (pow(currentThrust - lastThrust, 2.0) > currentThrust*0.00010) {
|
|
|
|
PowerAvailable = Engines[i]->Calculate(Thrusters[i]->GetPowerRequired());
|
|
|
|
lastThrust = currentThrust;
|
|
|
|
currentThrust = Thrusters[i]->Calculate(PowerAvailable);
|
|
|
|
}
|
|
|
|
*Forces += Thrusters[i]->GetBodyForces(); // sum body frame forces
|
|
|
|
*Moments += Thrusters[i]->GetMoments(); // sum body frame moments
|
|
|
|
Engines[i]->SetTrimMode(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2000-10-02 23:07:30 +00:00
|
|
|
|
|
|
|
bool FGPropulsion::LoadPropulsion(FGConfigFile* AC_cfg)
|
|
|
|
{
|
2001-03-30 01:04:50 +00:00
|
|
|
string token, fullpath;
|
|
|
|
string engineFileName, engType;
|
|
|
|
string thrusterFileName, thrType;
|
2000-10-02 23:07:30 +00:00
|
|
|
string parameter;
|
2001-03-30 01:04:50 +00:00
|
|
|
string enginePath = FDMExec->GetEnginePath();
|
|
|
|
float xLoc, yLoc, zLoc, Pitch, Yaw;
|
|
|
|
int Feed;
|
|
|
|
|
|
|
|
# ifndef macintosh
|
|
|
|
fullpath = enginePath + "/";
|
|
|
|
# else
|
|
|
|
fullpath = enginePath + ";";
|
|
|
|
# endif
|
2000-10-02 23:07:30 +00:00
|
|
|
|
|
|
|
AC_cfg->GetNextConfigLine();
|
|
|
|
|
|
|
|
while ((token = AC_cfg->GetValue()) != "/PROPULSION") {
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
if (token == "AC_ENGINE") { // ============ READING ENGINES
|
|
|
|
|
|
|
|
engineFileName = AC_cfg->GetValue("FILE");
|
2000-10-02 23:07:30 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
cout << "\n Reading engine from file: " << fullpath
|
|
|
|
+ engineFileName + ".xml"<< endl;
|
|
|
|
FGConfigFile Eng_cfg(fullpath + engineFileName + ".xml");
|
2000-10-02 23:07:30 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
if (Eng_cfg.IsOpen()) {
|
|
|
|
Eng_cfg.GetNextConfigLine();
|
|
|
|
engType = Eng_cfg.GetValue();
|
2000-10-02 23:07:30 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
FCS->AddThrottle();
|
|
|
|
|
|
|
|
if (engType == "FG_ROCKET") {
|
|
|
|
Engines.push_back(new FGRocket(FDMExec, &Eng_cfg));
|
|
|
|
} else if (engType == "FG_PISTON") {
|
|
|
|
Engines.push_back(new FGPiston(FDMExec, &Eng_cfg));
|
|
|
|
} else if (engType == "FG_TURBOJET") {
|
|
|
|
Engines.push_back(new FGTurboJet(FDMExec, &Eng_cfg));
|
|
|
|
} else if (engType == "FG_TURBOSHAFT") {
|
|
|
|
Engines.push_back(new FGTurboShaft(FDMExec, &Eng_cfg));
|
|
|
|
} else if (engType == "FG_TURBOPROP") {
|
|
|
|
Engines.push_back(new FGTurboProp(FDMExec, &Eng_cfg));
|
|
|
|
} else {
|
|
|
|
cerr << " Unrecognized engine type: " << engType << " found in config file.\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
AC_cfg->GetNextConfigLine();
|
|
|
|
while ((token = AC_cfg->GetValue()) != "/AC_ENGINE") {
|
|
|
|
*AC_cfg >> token;
|
|
|
|
if (token == "XLOC") { *AC_cfg >> xLoc; cout << " X = " << xLoc << endl;}
|
|
|
|
else if (token == "YLOC") { *AC_cfg >> yLoc; cout << " Y = " << yLoc << endl;}
|
|
|
|
else if (token == "ZLOC") { *AC_cfg >> zLoc; cout << " Z = " << zLoc << endl;}
|
|
|
|
else if (token == "PITCH") { *AC_cfg >> Pitch; cout << " Pitch = " << Pitch << endl;}
|
|
|
|
else if (token == "YAW") { *AC_cfg >> Yaw; cout << " Yaw = " << Yaw << endl;}
|
|
|
|
else if (token == "FEED") {
|
|
|
|
*AC_cfg >> Feed;
|
|
|
|
Engines[numEngines]->AddFeedTank(Feed);
|
|
|
|
cout << " Feed tank: " << Feed << endl;
|
|
|
|
} else cerr << "Unknown identifier: " << token << " in engine file: "
|
|
|
|
<< engineFileName << endl;
|
|
|
|
}
|
2001-04-02 03:12:38 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
Engines[numEngines]->SetPlacement(xLoc, yLoc, zLoc, Pitch, Yaw);
|
|
|
|
numEngines++;
|
|
|
|
|
|
|
|
} else {
|
2001-04-02 03:12:38 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
cerr << "Could not read engine config file: " << fullpath
|
|
|
|
+ engineFileName + ".xml" << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (token == "AC_TANK") { // ============== READING TANKS
|
|
|
|
|
|
|
|
cout << "\n Reading tank definition" << endl;
|
|
|
|
Tanks.push_back(new FGTank(AC_cfg));
|
|
|
|
switch(Tanks[numTanks]->GetType()) {
|
2000-10-02 23:07:30 +00:00
|
|
|
case FGTank::ttFUEL:
|
2001-03-30 01:04:50 +00:00
|
|
|
numSelectedFuelTanks++;
|
|
|
|
numFuelTanks++;
|
2000-10-02 23:07:30 +00:00
|
|
|
break;
|
|
|
|
case FGTank::ttOXIDIZER:
|
2001-03-30 01:04:50 +00:00
|
|
|
numSelectedOxiTanks++;
|
|
|
|
numOxiTanks++;
|
2000-10-02 23:07:30 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-04-02 03:12:38 +00:00
|
|
|
|
2000-10-02 23:07:30 +00:00
|
|
|
numTanks++;
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
} else if (token == "AC_THRUSTER") { // ========== READING THRUSTERS
|
|
|
|
|
|
|
|
thrusterFileName = AC_cfg->GetValue("FILE");
|
|
|
|
|
|
|
|
cout << "\n Reading thruster from file: " <<
|
|
|
|
fullpath + thrusterFileName + ".xml" << endl;
|
|
|
|
FGConfigFile Thruster_cfg(fullpath + thrusterFileName + ".xml");
|
|
|
|
|
|
|
|
if (Thruster_cfg.IsOpen()) {
|
|
|
|
Thruster_cfg.GetNextConfigLine();
|
|
|
|
thrType = Thruster_cfg.GetValue();
|
|
|
|
|
|
|
|
if (thrType == "FG_PROPELLER") {
|
|
|
|
Thrusters.push_back(new FGPropeller(FDMExec, &Thruster_cfg));
|
|
|
|
} else if (thrType == "FG_NOZZLE") {
|
|
|
|
Thrusters.push_back(new FGNozzle(FDMExec, &Thruster_cfg));
|
|
|
|
}
|
|
|
|
|
|
|
|
AC_cfg->GetNextConfigLine();
|
|
|
|
while ((token = AC_cfg->GetValue()) != "/AC_THRUSTER") {
|
|
|
|
*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;
|
|
|
|
else if (token == "YAW") *AC_cfg >> Yaw;
|
|
|
|
else cerr << "Unknown identifier: " << token << " in engine file: "
|
|
|
|
<< engineFileName << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
Thrusters[numThrusters]->SetLocation(xLoc, yLoc, zLoc);
|
|
|
|
Thrusters[numThrusters]->SetAnglesToBody(0, Pitch, Yaw);
|
|
|
|
Thrusters[numThrusters]->SetdeltaT(dt*rate);
|
|
|
|
|
|
|
|
numThrusters++;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
cerr << "Could not read thruster config file: " << fullpath
|
|
|
|
+ thrusterFileName + ".xml" << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-10-02 23:07:30 +00:00
|
|
|
}
|
2001-03-30 01:04:50 +00:00
|
|
|
AC_cfg->GetNextConfigLine();
|
2000-10-02 23:07:30 +00:00
|
|
|
}
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2001-04-02 03:12:38 +00:00
|
|
|
string FGPropulsion::GetPropulsionStrings(void)
|
|
|
|
{
|
|
|
|
string PropulsionStrings = "";
|
|
|
|
bool firstime = true;
|
|
|
|
|
|
|
|
for (unsigned int i=0;i<Engines.size();i++) {
|
|
|
|
if (!firstime) {
|
|
|
|
PropulsionStrings += ", ";
|
|
|
|
firstime = false;
|
|
|
|
}
|
2001-04-06 22:59:31 +00:00
|
|
|
|
|
|
|
switch(Engines[i]->GetType()) {
|
|
|
|
case FGEngine::etPiston:
|
|
|
|
PropulsionStrings += (Engines[i]->GetName() + "_PwrAvail");
|
|
|
|
break;
|
|
|
|
case FGEngine::etRocket:
|
|
|
|
PropulsionStrings += (Engines[i]->GetName() + "_ChamberPress");
|
2001-04-02 03:12:38 +00:00
|
|
|
break;
|
2001-04-06 22:59:31 +00:00
|
|
|
case FGEngine::etTurboJet:
|
|
|
|
case FGEngine::etTurboProp:
|
|
|
|
case FGEngine::etTurboShaft:
|
2001-04-02 03:12:38 +00:00
|
|
|
break;
|
2001-04-06 22:59:31 +00:00
|
|
|
default:
|
|
|
|
PropulsionStrings += "INVALID ENGINE TYPE";
|
2001-04-02 03:12:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2001-04-06 22:59:31 +00:00
|
|
|
PropulsionStrings += ", ";
|
|
|
|
|
|
|
|
switch(Thrusters[i]->GetType()) {
|
|
|
|
case FGThruster::ttNozzle:
|
|
|
|
PropulsionStrings += (Thrusters[i]->GetName() + "_Thrust");
|
2001-04-02 03:12:38 +00:00
|
|
|
break;
|
2001-04-06 22:59:31 +00:00
|
|
|
case FGThruster::ttRotor:
|
2001-04-02 03:12:38 +00:00
|
|
|
break;
|
2001-04-06 22:59:31 +00:00
|
|
|
case FGThruster::ttPropeller:
|
|
|
|
PropulsionStrings += (Thrusters[i]->GetName() + "_Torque, ");
|
|
|
|
PropulsionStrings += (Thrusters[i]->GetName() + "_Thrust, ");
|
|
|
|
PropulsionStrings += (Thrusters[i]->GetName() + "_RPM");
|
2001-04-02 03:12:38 +00:00
|
|
|
break;
|
2001-04-06 22:59:31 +00:00
|
|
|
default:
|
|
|
|
PropulsionStrings += "INVALID THRUSTER TYPE";
|
|
|
|
break;
|
|
|
|
}
|
2001-04-02 03:12:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return PropulsionStrings;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
string FGPropulsion::GetPropulsionValues(void)
|
|
|
|
{
|
|
|
|
char buff[20];
|
|
|
|
string PropulsionValues = "";
|
|
|
|
bool firstime = true;
|
|
|
|
|
|
|
|
for (unsigned int i=0;i<Engines.size();i++) {
|
|
|
|
if (!firstime) {
|
|
|
|
PropulsionValues += ", ";
|
|
|
|
firstime = false;
|
|
|
|
}
|
2001-04-06 22:59:31 +00:00
|
|
|
|
|
|
|
switch(Engines[i]->GetType()) {
|
|
|
|
case FGEngine::etPiston:
|
|
|
|
PropulsionValues += (string(gcvt(((FGRocket*)Engines[i])->GetPowerAvailable(), 10, buff)));
|
2001-04-02 03:12:38 +00:00
|
|
|
break;
|
2001-04-06 22:59:31 +00:00
|
|
|
case FGEngine::etRocket:
|
|
|
|
PropulsionValues += (string(gcvt(((FGRocket*)Engines[i])->GetChamberPressure(), 10, buff)));
|
2001-04-02 03:12:38 +00:00
|
|
|
break;
|
2001-04-06 22:59:31 +00:00
|
|
|
case FGEngine::etTurboJet:
|
|
|
|
case FGEngine::etTurboProp:
|
|
|
|
case FGEngine::etTurboShaft:
|
2001-04-02 03:12:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2001-04-06 22:59:31 +00:00
|
|
|
PropulsionValues += ", ";
|
|
|
|
|
|
|
|
switch(Thrusters[i]->GetType()) {
|
|
|
|
case FGThruster::ttNozzle:
|
|
|
|
PropulsionValues += (string(gcvt(((FGNozzle*)Thrusters[i])->GetThrust(), 10, buff)));
|
2001-04-02 03:12:38 +00:00
|
|
|
break;
|
2001-04-06 22:59:31 +00:00
|
|
|
case FGThruster::ttRotor:
|
2001-04-02 03:12:38 +00:00
|
|
|
break;
|
2001-04-06 22:59:31 +00:00
|
|
|
case FGThruster::ttPropeller:
|
|
|
|
PropulsionValues += (string(gcvt(((FGPropeller*)Thrusters[i])->GetTorque(), 10, buff)) + ", ");
|
|
|
|
PropulsionValues += (string(gcvt(((FGPropeller*)Thrusters[i])->GetThrust(), 10, buff)) + ", ");
|
|
|
|
PropulsionValues += (string(gcvt(((FGPropeller*)Thrusters[i])->GetRPM(), 10, buff)));
|
2001-04-02 03:12:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return PropulsionValues;
|
|
|
|
}
|
|
|
|
|
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
void FGPropulsion::Debug(void)
|
|
|
|
{
|
|
|
|
//TODO: Add your source code here
|
2000-10-02 23:07:30 +00:00
|
|
|
}
|
|
|
|
|