2000-11-03 23:02:47 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2000-10-02 23:07:30 +00:00
|
|
|
|
|
|
|
Header: FGPropeller.h
|
|
|
|
Author: Jon S. Berndt
|
|
|
|
Date started: 08/24/00
|
|
|
|
|
|
|
|
------------- 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.
|
|
|
|
|
|
|
|
HISTORY
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
08/24/00 JSB Created
|
|
|
|
|
2000-11-03 23:02:47 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2000-10-02 23:07:30 +00:00
|
|
|
SENTRY
|
2000-11-03 23:02:47 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
2000-10-02 23:07:30 +00:00
|
|
|
|
|
|
|
#ifndef FGPROPELLER_H
|
|
|
|
#define FGPROPELLER_H
|
|
|
|
|
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 "FGThruster.h"
|
2001-03-30 01:04:50 +00:00
|
|
|
#include "FGTable.h"
|
|
|
|
#include "FGTranslation.h"
|
2001-11-09 04:38:53 +00:00
|
|
|
#include "FGRotation.h"
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
DEFINITIONS
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
#define ID_PROPELLER "$Id$"
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
FORWARD DECLARATIONS
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
2000-10-02 23:07:30 +00:00
|
|
|
|
2001-03-30 01:04:50 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
COMMENTS, REFERENCES, and NOTES [use "class documentation" below for API docs]
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
CLASS DOCUMENTATION
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
|
|
|
|
|
|
|
/** Propeller modeling class.
|
2001-12-05 03:10:20 +00:00
|
|
|
FGPropeller models a propeller given the tabular data for Ct and Cp
|
|
|
|
indexed by advance ratio "J". The data for the propeller is
|
2001-03-30 01:04:50 +00:00
|
|
|
stored in a config file named "prop_name.xml". The propeller config file
|
|
|
|
is referenced from the main aircraft config file in the "Propulsion" section.
|
|
|
|
See the constructor for FGPropeller to see what is read in and what should
|
|
|
|
be stored in the config file.<br>
|
|
|
|
Several references were helpful, here:<ul>
|
|
|
|
<li>Barnes W. McCormick, "Aerodynamics, Aeronautics, and Flight Mechanics",
|
|
|
|
Wiley & Sons, 1979 ISBN 0-471-03032-5</li>
|
|
|
|
<li>Edwin Hartman, David Biermann, "The Aerodynamic Characteristics of
|
|
|
|
Full Scale Propellers Having 2, 3, and 4 Blades of Clark Y and R.A.F. 6
|
|
|
|
Airfoil Sections", NACA Report TN-640, 1938 (?)</li>
|
|
|
|
<li>Various NACA Technical Notes and Reports</li>
|
|
|
|
<ul>
|
|
|
|
@author Jon S. Berndt
|
|
|
|
@version $Id$
|
|
|
|
@see FGEngine
|
|
|
|
@see FGThruster
|
|
|
|
@see FGTable
|
|
|
|
*/
|
2000-10-14 02:10:10 +00:00
|
|
|
|
2000-11-03 23:02:47 +00:00
|
|
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2000-10-02 23:07:30 +00:00
|
|
|
CLASS DECLARATION
|
2000-11-03 23:02:47 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
2000-10-02 23:07:30 +00:00
|
|
|
|
|
|
|
class FGPropeller : public FGThruster {
|
|
|
|
|
|
|
|
public:
|
2001-03-30 01:04:50 +00:00
|
|
|
/** Constructor for FGPropeller.
|
|
|
|
@param exec a pointer to the main executive object
|
|
|
|
@param AC_cfg a pointer to the main aircraft config file object */
|
|
|
|
FGPropeller(FGFDMExec* exec, FGConfigFile* AC_cfg);
|
|
|
|
|
|
|
|
/// Destructor for FGPropeller - deletes the FGTable objects
|
|
|
|
~FGPropeller();
|
|
|
|
|
|
|
|
/** Sets the Revolutions Per Minute for the propeller. Normally the propeller
|
|
|
|
instance will calculate its own rotational velocity, given the Torque
|
|
|
|
produced by the engine and integrating over time using the standard
|
|
|
|
equation for rotational acceleration "a": a = Q/I , where Q is Torque and
|
|
|
|
I is moment of inertia for the propeller.
|
|
|
|
@param rpm the rotational velocity of the propeller */
|
2001-11-20 22:34:24 +00:00
|
|
|
void SetRPM(double rpm) {RPM = rpm;}
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
/** This commands the pitch of the blade to change to the value supplied.
|
|
|
|
This call is meant to be issued either from the cockpit or by the flight
|
|
|
|
control system (perhaps to maintain constant RPM for a constant-speed
|
|
|
|
propeller). This value will be limited to be within whatever is specified
|
|
|
|
in the config file for Max and Min pitch. It is also one of the lookup
|
2001-12-05 03:10:20 +00:00
|
|
|
indices to the power and thrust tables for variable-pitch propellers.
|
2001-03-30 01:04:50 +00:00
|
|
|
@param pitch the pitch of the blade in degrees. */
|
2001-11-20 22:34:24 +00:00
|
|
|
void SetPitch(double pitch) {Pitch = pitch;}
|
2001-11-09 04:38:53 +00:00
|
|
|
|
|
|
|
void SetPFactor(double pf) {P_Factor = pf;}
|
|
|
|
|
|
|
|
void SetSense(double s) { Sense = s;}
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
/// Retrieves the pitch of the propeller in degrees.
|
2001-11-20 22:34:24 +00:00
|
|
|
double GetPitch(void) { return Pitch; }
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
/// Retrieves the RPMs of the propeller
|
2001-11-20 22:34:24 +00:00
|
|
|
double GetRPM(void) { return RPM; }
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
/// Retrieves the propeller moment of inertia
|
2001-11-20 22:34:24 +00:00
|
|
|
double GetIxx(void) { return Ixx; }
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
/// Retrieves the Torque in foot-pounds (Don't you love the English system?)
|
2001-11-20 22:34:24 +00:00
|
|
|
double GetTorque(void) { return Torque; }
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
/** Retrieves the power required (or "absorbed") by the propeller -
|
|
|
|
i.e. the power required to keep spinning the propeller at the current
|
|
|
|
velocity, air density, and rotational rate. */
|
2001-11-20 22:34:24 +00:00
|
|
|
double GetPowerRequired(void);
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
/** Calculates and returns the thrust produced by this propeller.
|
|
|
|
Given the excess power available from the engine (in foot-pounds), the thrust is
|
|
|
|
calculated, as well as the current RPM. The RPM is calculated by integrating
|
|
|
|
the torque provided by the engine over what the propeller "absorbs"
|
|
|
|
(essentially the "drag" of the propeller).
|
|
|
|
@param PowerAvailable this is the excess power provided by the engine to
|
|
|
|
accelerate the prop. It could be negative, dictating that the propeller
|
|
|
|
would be slowed.
|
2001-12-05 03:10:20 +00:00
|
|
|
@return the thrust in pounds */
|
2001-11-20 22:34:24 +00:00
|
|
|
double Calculate(double PowerAvailable);
|
2001-03-30 01:04:50 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int numBlades;
|
2001-11-20 22:34:24 +00:00
|
|
|
double RPM;
|
|
|
|
double Ixx;
|
|
|
|
double Diameter;
|
|
|
|
double MaxPitch;
|
|
|
|
double MinPitch;
|
2001-12-05 03:10:20 +00:00
|
|
|
double MinRPM;
|
|
|
|
double MaxRPM;
|
2001-11-20 22:34:24 +00:00
|
|
|
double P_Factor;
|
|
|
|
double Sense;
|
|
|
|
double Pitch;
|
|
|
|
double Torque;
|
2001-03-30 01:04:50 +00:00
|
|
|
FGTable *cThrust;
|
|
|
|
FGTable *cPower;
|
|
|
|
void Debug(void);
|
2000-10-02 23:07:30 +00:00
|
|
|
};
|
|
|
|
|
2000-11-03 23:02:47 +00:00
|
|
|
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2000-10-02 23:07:30 +00:00
|
|
|
#endif
|
2001-03-30 01:04:50 +00:00
|
|
|
|