]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/models/propulsion/FGPropeller.cpp
Sync. w. JSBSim CVS.
[flightgear.git] / src / FDM / JSBSim / models / propulsion / FGPropeller.cpp
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Module:       FGPropeller.cpp
4  Author:       Jon S. Berndt
5  Date started: 08/24/00
6  Purpose:      Encapsulates the propeller object
7
8  ------------- Copyright (C) 2000  Jon S. Berndt (jsb@hal-pc.org) -------------
9
10  This program is free software; you can redistribute it and/or modify it under
11  the terms of the GNU General Public License as published by the Free Software
12  Foundation; either version 2 of the License, or (at your option) any later
13  version.
14
15  This program is distributed in the hope that it will be useful, but WITHOUT
16  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  details.
19
20  You should have received a copy of the GNU General Public License along with
21  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
22  Place - Suite 330, Boston, MA  02111-1307, USA.
23
24  Further information about the GNU General Public License can also be found on
25  the world wide web at http://www.gnu.org.
26
27 FUNCTIONAL DESCRIPTION
28 --------------------------------------------------------------------------------
29
30 HISTORY
31 --------------------------------------------------------------------------------
32 08/24/00  JSB  Created
33
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35 INCLUDES
36 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
37
38 #include <sstream>
39
40 #include "FGPropeller.h"
41 #include <models/FGPropagate.h>
42 #include <models/FGAtmosphere.h>
43 #include <models/FGAuxiliary.h>
44
45 namespace JSBSim {
46
47 static const char *IdSrc = "$Id$";
48 static const char *IdHdr = ID_PROPELLER;
49
50 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51 CLASS IMPLEMENTATION
52 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
54 // This class currently makes certain assumptions when calculating torque and
55 // p-factor. That is, that the axis of rotation is the X axis of the aircraft -
56 // not just the X-axis of the engine/propeller. This may or may not work for a
57 // helicopter.
58
59 FGPropeller::FGPropeller(FGFDMExec* exec, Element* prop_element, int num)
60                        : FGThruster(exec, prop_element, num)
61 {
62   string token;
63   int rows, cols;
64   Element *table_element, *local_element;
65   string name="";
66   FGPropertyManager* PropertyManager = exec->GetPropertyManager();
67
68   MaxPitch = MinPitch = P_Factor = Pitch = Advance = MinRPM = MaxRPM = 0.0;
69   Sense = 1; // default clockwise rotation
70   ReversePitch = 0.0;
71   Reversed = false;
72   Feathered = false;
73   Reverse_coef = 0.0;
74   GearRatio = 1.0;
75
76   if (prop_element->FindElement("ixx"))
77     Ixx = prop_element->FindElementValueAsNumberConvertTo("ixx", "SLUG*FT2");
78   if (prop_element->FindElement("diameter"))
79     Diameter = prop_element->FindElementValueAsNumberConvertTo("diameter", "FT");
80   if (prop_element->FindElement("numblades"))
81     numBlades = (int)prop_element->FindElementValueAsNumber("numblades");
82   if (prop_element->FindElement("gearratio"))
83     GearRatio = prop_element->FindElementValueAsNumber("gearratio");
84   if (prop_element->FindElement("minpitch"))
85     MinPitch = prop_element->FindElementValueAsNumber("minpitch");
86   if (prop_element->FindElement("maxpitch"))
87     MaxPitch = prop_element->FindElementValueAsNumber("maxpitch");
88   if (prop_element->FindElement("minrpm"))
89     MinRPM = prop_element->FindElementValueAsNumber("minrpm");
90   if (prop_element->FindElement("maxrpm"))
91     MaxRPM = prop_element->FindElementValueAsNumber("maxrpm");
92   if (prop_element->FindElement("reversepitch"))
93     ReversePitch = prop_element->FindElementValueAsNumber("reversepitch");
94   for (int i=0; i<2; i++) {
95     table_element = prop_element->FindNextElement("table");
96     name = table_element->GetAttributeValue("name");
97     if (name == "C_THRUST") {
98       cThrust = new FGTable(PropertyManager, table_element);
99     } else if (name == "C_POWER") {
100       cPower = new FGTable(PropertyManager, table_element);
101     } else {
102       cerr << "Unknown table type: " << name << " in propeller definition." << endl;
103     }
104   }
105
106   local_element = prop_element->GetParent()->FindElement("sense");
107   if (local_element) {
108     double Sense = local_element->GetDataAsNumber();
109     SetSense(fabs(Sense)/Sense);
110   }
111   local_element = prop_element->GetParent()->FindElement("p_factor");
112   if (local_element) {
113     P_Factor = local_element->GetDataAsNumber();
114   }
115   if (P_Factor < 0) {
116     cerr << "P-Factor value in config file must be greater than zero" << endl;
117   }
118
119   Type = ttPropeller;
120   RPM = 0;
121   vTorque.InitMatrix();
122   D4 = Diameter*Diameter*Diameter*Diameter;
123   D5 = D4*Diameter;
124
125   char property_name[80];
126   snprintf(property_name, 80, "propulsion/engine[%d]/advance-ratio", EngineNum);
127   PropertyManager->Tie( property_name, &J );
128   snprintf(property_name, 80, "propulsion/engine[%d]/blade-angle", EngineNum);
129   PropertyManager->Tie( property_name, &Pitch );
130   snprintf(property_name, 80, "propulsion/engine[%d]/thrust-coefficient", EngineNum);
131   PropertyManager->Tie( property_name, this, &FGPropeller::GetThrustCoefficient );
132
133   Debug(0);
134 }
135
136 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
137
138 FGPropeller::~FGPropeller()
139 {
140   if (cThrust)    delete cThrust;
141   if (cPower)     delete cPower;
142
143   char property_name[80];
144   snprintf(property_name, 80, "propulsion/engine[%d]/advance-ratio", EngineNum);
145   PropertyManager->Untie( property_name );
146   snprintf(property_name, 80, "propulsion/engine[%d]/blade-angle", EngineNum);
147   PropertyManager->Untie( property_name );
148   snprintf(property_name, 80, "propulsion/engine[%d]/thrust-coefficient", EngineNum);
149   PropertyManager->Untie( property_name );
150
151   Debug(1);
152 }
153
154 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
155 //
156 // We must be getting the aerodynamic velocity here, NOT the inertial velocity.
157 // We need the velocity with respect to the wind.
158 //
159 // Note that PowerAvailable is the excess power available after the drag of the
160 // propeller has been subtracted. At equilibrium, PowerAvailable will be zero -
161 // indicating that the propeller will not accelerate or decelerate.
162 // Remembering that Torque * omega = Power, we can derive the torque on the
163 // propeller and its acceleration to give a new RPM. The current RPM will be
164 // used to calculate thrust.
165 //
166 // Because RPM could be zero, we need to be creative about what RPM is stated as.
167
168 double FGPropeller::Calculate(double PowerAvailable)
169 {
170   double omega, alpha, beta;
171
172   double Vel = fdmex->GetAuxiliary()->GetAeroUVW(eU);
173   double rho = fdmex->GetAtmosphere()->GetDensity();
174   double RPS = RPM/60.0;
175
176   if (RPS > 0.00) J = Vel / (Diameter * RPS); // Calculate J normally
177   else            J = 1000.0;                 // Set J to a high number
178
179   if (MaxPitch == MinPitch)  ThrustCoeff = cThrust->GetValue(J);
180   else                       ThrustCoeff = cThrust->GetValue(J, Pitch);
181
182   if (P_Factor > 0.0001) {
183     alpha = fdmex->GetAuxiliary()->Getalpha();
184     beta  = fdmex->GetAuxiliary()->Getbeta();
185     SetActingLocationY( GetLocationY() + P_Factor*alpha*Sense);
186     SetActingLocationZ( GetLocationZ() + P_Factor*beta*Sense);
187   }
188
189   Thrust = ThrustCoeff*RPS*RPS*D4*rho;
190   omega = RPS*2.0*M_PI;
191
192   vFn(1) = Thrust;
193
194   // The Ixx value and rotation speed given below are for rotation about the
195   // natural axis of the engine. The transform takes place in the base class
196   // FGForce::GetBodyForces() function.
197
198   vH(eX) = Ixx*omega*Sense;
199   vH(eY) = 0.0;
200   vH(eZ) = 0.0;
201
202   if (omega > 0.0) ExcessTorque = GearRatio * PowerAvailable / omega;
203   else             ExcessTorque = GearRatio * PowerAvailable / 1.0;
204
205   RPM = (RPS + ((ExcessTorque / Ixx) / (2.0 * M_PI)) * deltaT) * 60.0;
206
207   if (RPM < 1.0) RPM = 0; // Engine friction stops rotation arbitrarily at 1 RPM.
208
209   vMn = fdmex->GetPropagate()->GetPQR()*vH + vTorque*Sense;
210
211   return Thrust; // return thrust in pounds
212 }
213
214 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
215
216 double FGPropeller::GetPowerRequired(void)
217 {
218   double cPReq, J;
219   double rho = fdmex->GetAtmosphere()->GetDensity();
220   double RPS = RPM / 60.0;
221
222   if (RPS != 0) J = fdmex->GetAuxiliary()->GetAeroUVW(eU) / (Diameter * RPS);
223   else          J = 1000.0; // Set J to a high number
224
225   if (MaxPitch == MinPitch) { // Fixed pitch prop
226     Pitch = MinPitch;
227     cPReq = cPower->GetValue(J);
228   } else {                      // Variable pitch prop
229
230     if (MaxRPM != MinRPM) {   // fixed-speed prop
231
232       // do normal calculation when propeller is neither feathered nor reversed
233       if (!Feathered) {
234         if (!Reversed) {
235
236           double rpmReq = MinRPM + (MaxRPM - MinRPM) * Advance;
237           double dRPM = rpmReq - RPM;
238           // The pitch of a variable propeller cannot be changed when the RPMs are
239           // too low - the oil pump does not work.
240           if (RPM > 200) Pitch -= dRPM / 10;
241
242           if (Pitch < MinPitch)       Pitch = MinPitch;
243           else if (Pitch > MaxPitch)  Pitch = MaxPitch;
244
245         } else { // Reversed propeller
246
247           // when reversed calculate propeller pitch depending on throttle lever position
248           // (beta range for taxing full reverse for braking)
249           double PitchReq = MinPitch - ( MinPitch - ReversePitch ) * Reverse_coef;
250           // The pitch of a variable propeller cannot be changed when the RPMs are
251           // too low - the oil pump does not work.
252           if (RPM > 200) Pitch += (PitchReq - Pitch) / 200;
253           if (RPM > MaxRPM) {
254             Pitch += (MaxRPM - RPM) / 50;
255             if (Pitch < ReversePitch) Pitch = ReversePitch;
256             else if (Pitch > MaxPitch)  Pitch = MaxPitch;
257           }
258         }
259
260       } else { // Feathered propeller
261                // ToDo: Make feathered and reverse settings done via FGKinemat
262         Pitch += (MaxPitch - Pitch) / 300; // just a guess (about 5 sec to fully feathered)
263       }
264
265     } else { // Variable Speed Prop
266       Pitch = MinPitch + (MaxPitch - MinPitch) * Advance;
267     }
268     cPReq = cPower->GetValue(J, Pitch);
269   }
270
271   if (RPS > 0) {
272     PowerRequired = cPReq*RPS*RPS*RPS*D5*rho;
273     vTorque(eX) = -Sense*PowerRequired / (RPS*2.0*M_PI);
274   } else {
275     PowerRequired = 0.0;
276     vTorque(eX) = 0.0;
277   }
278
279   return PowerRequired;
280 }
281
282 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
283
284 FGColumnVector3 FGPropeller::GetPFactor()
285 {
286   double px=0.0, py, pz;
287
288   py = Thrust * Sense * (GetActingLocationY() - GetLocationY()) / 12.0;
289   pz = Thrust * Sense * (GetActingLocationZ() - GetLocationZ()) / 12.0;
290
291   return FGColumnVector3(px, py, pz);
292 }
293
294 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
295
296 string FGPropeller::GetThrusterLabels(int id, string delimeter)
297 {
298   std::ostringstream buf;
299
300   buf << Name << "_Torque[" << id << "]" << delimeter
301       << Name << "_PFactor_Pitch[" << id << "]" << delimeter
302       << Name << "_PFactor_Yaw[" << id << "]" << delimeter
303       << Name << "_Thrust[" << id << "]" << delimeter;
304   if (IsVPitch())
305     buf << Name << "_Pitch[" << id << "]" << delimeter;
306   buf << Name << "_RPM[" << id << "]";
307
308   return buf.str();
309 }
310
311 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
312
313 string FGPropeller::GetThrusterValues(int id, string delimeter)
314 {
315   std::ostringstream buf;
316
317   FGColumnVector3 vPFactor = GetPFactor();
318   buf << vTorque(eX) << delimeter
319       << vPFactor(ePitch) << delimeter
320       << vPFactor(eYaw) << delimeter
321       << Thrust << delimeter;
322   if (IsVPitch())
323     buf << Pitch << delimeter;
324   buf << RPM;
325
326   return buf.str();
327 }
328
329 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
330 //    The bitmasked value choices are as follows:
331 //    unset: In this case (the default) JSBSim would only print
332 //       out the normally expected messages, essentially echoing
333 //       the config files as they are read. If the environment
334 //       variable is not set, debug_lvl is set to 1 internally
335 //    0: This requests JSBSim not to output any messages
336 //       whatsoever.
337 //    1: This value explicity requests the normal JSBSim
338 //       startup messages
339 //    2: This value asks for a message to be printed out when
340 //       a class is instantiated
341 //    4: When this value is set, a message is displayed when a
342 //       FGModel object executes its Run() method
343 //    8: When this value is set, various runtime state variables
344 //       are printed out periodically
345 //    16: When set various parameters are sanity checked and
346 //       a message is printed out when they go out of bounds
347
348 void FGPropeller::Debug(int from)
349 {
350   if (debug_lvl <= 0) return;
351
352   if (debug_lvl & 1) { // Standard console startup message output
353     if (from == 0) { // Constructor
354       cout << "\n    Propeller Name: " << Name << endl;
355       cout << "      IXX = " << Ixx << endl;
356       cout << "      Diameter = " << Diameter << " ft." << endl;
357       cout << "      Number of Blades  = " << numBlades << endl;
358       cout << "      Gear Ratio  = " << GearRatio << endl;
359       cout << "      Minimum Pitch  = " << MinPitch << endl;
360       cout << "      Maximum Pitch  = " << MaxPitch << endl;
361       cout << "      Minimum RPM  = " << MinRPM << endl;
362       cout << "      Maximum RPM  = " << MaxRPM << endl;
363 //      cout << "      Thrust Coefficient: " <<  endl;
364 //      cThrust->Print();
365 //      cout << "      Power Coefficient: " <<  endl;
366 //      cPower->Print();
367     }
368   }
369   if (debug_lvl & 2 ) { // Instantiation/Destruction notification
370     if (from == 0) cout << "Instantiated: FGPropeller" << endl;
371     if (from == 1) cout << "Destroyed:    FGPropeller" << endl;
372   }
373   if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
374   }
375   if (debug_lvl & 8 ) { // Runtime state variables
376   }
377   if (debug_lvl & 16) { // Sanity checking
378   }
379   if (debug_lvl & 64) {
380     if (from == 0) { // Constructor
381       cout << IdSrc << endl;
382       cout << IdHdr << endl;
383     }
384   }
385 }
386 }