41#include "FGThruster.h"
42#include "math/FGTable.h"
197 bool IsVPitch(
void)
const {
return MaxPitch != MinPitch;}
235 double GetRPM(
void)
const {
return RPM; }
241 double GetIxx(
void)
const {
return Ixx; }
323 double Sense, Sense_multiplier;
328 double HelicalTipMach;
338 void Debug(
int from);
This class implements a 3 element column vector.
Encapsulates the JSBSim simulation executive.
FGPropeller models a propeller given the tabular data for Ct (thrust) and Cp (power),...
void SetInducedVelocity(double Vi)
Set the propeller induced velocity.
void SetEngineRPM(double rpm)
Sets the Revolutions Per Minute for the propeller using the engine gear ratio.
double GetPitch(void) const
Retrieves the pitch of the propeller in degrees.
~FGPropeller()
Destructor for FGPropeller - deletes the FGTable objects.
double Calculate(double EnginePower)
Calculates and returns the thrust produced by this propeller.
void SetReverseCoef(double c)
Set the propeller reverse pitch.
double GetPowerRequired(void)
Retrieves the power required (or "absorbed") by the propeller - i.e.
FGTable * GetCPowerTable(void) const
Retrieves propeller power table.
int GetConstantSpeed(void) const
Returns a non-zero value if the propeller is constant speed.
void SetReverse(bool r)
If true, sets the propeller in reversed position.
double GetRPM(void) const
Retrieves the RPMs of the propeller.
FGTable * GetCtMachTable(void) const
Retrieves propeller thrust Mach effects factor.
void SetAdvance(double advance)
Set the propeller pitch.
std::string GetThrusterValues(int id, const std::string &delimeter)
Generate the values for the thruster standard CSV output.
void ResetToIC(void)
Reset the initial conditions.
void SetCtFactor(double ctf)
Sets coefficient of thrust multiplier.
void SetPitch(double pitch)
This commands the pitch of the blade to change to the value supplied.
double GetIxx(void) const
Retrieves the propeller moment of inertia.
void SetConstantSpeed(int mode)
Sets propeller into constant speed mode, or manual pitch mode.
FGColumnVector3 GetPFactor(void) const
Retrieves the P-Factor constant.
void SetCpFactor(double cpf)
Sets coefficient of power multiplier.
double GetInducedVelocity(void) const
Get the propeller induced velocity.
double GetCpFactor(void) const
Retrieves the coefficient of power multiplier.
FGTable * GetCpMachTable(void) const
Retrieves propeller power Mach effects factor.
bool GetReverse(void) const
Returns true if the propeller is in reverse position.
void SetSense(double s)
Sets the rotation sense of the propeller.
double GetHelicalTipMach(void) const
Retrieves the Mach number at the propeller tips.
double GetDiameter(void) const
Retrieves the propeller diameter.
std::string GetThrusterLabels(int id, const std::string &delimeter)
Generate the labels for the thruster standard CSV output.
double GetCtFactor(void) const
Retrieves the coefficient of thrust multiplier.
void SetFeather(bool f)
If true, sets the propeller in feathered position.
double GetTorque(void) const
Retrieves the Torque in foot-pounds (Don't you love the English system?)
bool GetFeather(void) const
Returns true if the propeller is in feathered position.
FGTable * GetCThrustTable(void) const
Retrieves propeller thrust table.
void SetPFactor(double pf)
Sets the P-Factor constant.
double GetEngineRPM(void) const
Calculates the RPMs of the engine based on gear ratio.
double GetReverseCoef(void) const
Retrieves the reverse pitch command.
void SetRPM(double rpm)
Sets the Revolutions Per Minute for the propeller.
bool IsVPitch(void) const
Returns true of this propeller is variable pitch.
double GetThrustCoefficient(void) const
Retrieves the thrust coefficient.
Base class for specific thrusting devices such as propellers, nozzles, etc.