1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 Module: FGAerodynamics.cpp
6 Purpose: Encapsulates the aerodynamic forces (gear and collision)
8 ------------- Copyright (C) 2000 Jon S. Berndt (jsb@hal-pc.org) -------------
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
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
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.
24 Further information about the GNU General Public License can also be found on
25 the world wide web at http://www.gnu.org.
27 FUNCTIONAL DESCRIPTION
28 --------------------------------------------------------------------------------
31 --------------------------------------------------------------------------------
33 04/22/01 JSB Moved code into here from FGAircraft
35 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39 #include "FGAerodynamics.h"
40 #include "FGFactorGroup.h"
41 #include "FGCoefficient.h"
42 #include "FGPropertyManager.h"
46 static const char *IdSrc = "$Id$";
47 static const char *IdHdr = ID_AERODYNAMICS;
49 const unsigned NAxes=6;
50 const char* AxisNames[] = { "drag", "side-force", "lift", "rolling-moment",
51 "pitching-moment","yawing-moment" };
53 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
55 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
58 FGAerodynamics::FGAerodynamics(FGFDMExec* FDMExec) : FGModel(FDMExec)
60 Name = "FGAerodynamics";
69 Coeff = new CoeffArray[6];
71 impending_stall = stall_hyst = 0.0;
72 alphaclmin = alphaclmax = 0.0;
73 alphahystmin = alphahystmax = 0.0;
76 bi2vel = ci2vel = 0.0;
82 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
84 FGAerodynamics::~FGAerodynamics()
91 for (j=0; j<Coeff[i].size(); j++) {
100 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
102 bool FGAerodynamics::Run(void)
104 unsigned int axis_ctr,ctr;
105 double alpha, twovel;
107 if (!FGModel::Run()) {
109 twovel = 2*Translation->GetVt();
111 bi2vel = Aircraft->GetWingSpan() / twovel;
112 ci2vel = Aircraft->Getcbar() / twovel;
115 alphaw = Translation->Getalpha() + Aircraft->GetWingIncidence();
117 alpha = Translation->Getalpha();
119 if (alphaclmax != 0) {
120 if (alpha > 0.85*alphaclmax) {
121 impending_stall = 10*(alpha/alphaclmax - 0.85);
127 if (alphahystmax != 0.0 && alphahystmin != 0.0) {
128 if (alpha > alphahystmax) {
130 } else if (alpha < alphahystmin) {
138 for (axis_ctr = 0; axis_ctr < 3; axis_ctr++) {
139 for (ctr=0; ctr < Coeff[axis_ctr].size(); ctr++) {
140 vFs(axis_ctr+1) += Coeff[axis_ctr][ctr]->TotalValue();
144 //correct signs of drag and lift to wind axes convention
145 //positive forward, right, down
146 if ( Translation->Getqbar() > 0) {
147 clsq = vFs(eLift) / (Aircraft->GetWingArea()*Translation->Getqbar());
150 if ( vFs(eDrag) > 0) {
151 lod = vFs(eLift) / vFs(eDrag);
154 //correct signs of drag and lift to wind axes convention
155 //positive forward, right, down
156 vFs(eDrag)*=-1; vFs(eLift)*=-1;
158 vForces = State->GetTs2b()*vFs;
160 vDXYZcg(eX) = -(Aircraft->GetXYZrp(eX)
161 - MassBalance->GetXYZcg(eX))*inchtoft;
162 vDXYZcg(eY) = (Aircraft->GetXYZrp(eY)
163 - MassBalance->GetXYZcg(eY))*inchtoft;
164 vDXYZcg(eZ) = -(Aircraft->GetXYZrp(eZ)
165 - MassBalance->GetXYZcg(eZ))*inchtoft;
167 vMoments = vDXYZcg*vForces; // M = r X F
169 for (axis_ctr = 0; axis_ctr < 3; axis_ctr++) {
170 for (ctr = 0; ctr < Coeff[axis_ctr+3].size(); ctr++) {
171 vMoments(axis_ctr+1) += Coeff[axis_ctr+3][ctr]->TotalValue();
181 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
183 bool FGAerodynamics::Load(FGConfigFile* AC_cfg)
185 string parameter, axis, scratch;
187 AC_cfg->GetNextConfigLine();
189 while ((parameter = AC_cfg->GetValue()) != string("/AERODYNAMICS")) {
190 if (parameter == "AXIS") {
192 axis = AC_cfg->GetValue("NAME");
193 AC_cfg->GetNextConfigLine();
194 while ((parameter = AC_cfg->GetValue()) != string("/AXIS")) {
195 if ( parameter == "COEFFICIENT" ) {
196 ca.push_back( new FGCoefficient(FDMExec) );
197 ca.back()->Load(AC_cfg);
198 } else if ( parameter == "GROUP" ) {
199 ca.push_back( new FGFactorGroup(FDMExec) );
200 ca.back()->Load(AC_cfg);
203 Coeff[AxisIdx[axis]] = ca;
204 AC_cfg->GetNextConfigLine();
205 } else if (parameter == "AC_ALPHALIMITS") {
206 *AC_cfg >> scratch >> alphaclmin >> alphaclmax;
207 if (debug_lvl > 0) cout << " Maximum Alpha: " << alphaclmax
208 << " Minimum Alpha: " << alphaclmin
210 } else if (parameter == "AC_HYSTLIMITS") {
211 *AC_cfg >> scratch >> alphahystmin >> alphahystmax;
212 if (debug_lvl > 0) cout << " Hysteresis Start: " << alphahystmax
213 << " Hysteresis End: " << alphahystmin
223 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
225 string FGAerodynamics::GetCoefficientStrings(void)
227 string CoeffStrings = "";
228 bool firstime = true;
229 unsigned int axis, sd;
231 for (axis = 0; axis < 6; axis++) {
232 for (sd = 0; sd < Coeff[axis].size(); sd++) {
236 CoeffStrings += ", ";
238 CoeffStrings += Coeff[axis][sd]->GetCoefficientName();
244 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
246 string FGAerodynamics::GetCoefficientValues(void)
248 string SDValues = "";
249 bool firstime = true;
251 for (unsigned int axis = 0; axis < 6; axis++) {
252 for (unsigned int sd = 0; sd < Coeff[axis].size(); sd++) {
258 SDValues += Coeff[axis][sd]->GetSDstring();
265 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
267 void FGAerodynamics::bind(void)
269 typedef double (FGAerodynamics::*PMF)(int) const;
271 PropertyManager->Tie("forces/fbx-aero-lbs", this,1,
272 (PMF)&FGAerodynamics::GetForces);
273 PropertyManager->Tie("forces/fby-aero-lbs", this,2,
274 (PMF)&FGAerodynamics::GetForces);
275 PropertyManager->Tie("forces/fbz-aero-lbs", this,3,
276 (PMF)&FGAerodynamics::GetForces);
277 PropertyManager->Tie("moments/l-aero-lbsft", this,1,
278 (PMF)&FGAerodynamics::GetMoments);
279 PropertyManager->Tie("moments/m-aero-lbsft", this,2,
280 (PMF)&FGAerodynamics::GetMoments);
281 PropertyManager->Tie("moments/n-aero-lbsft", this,3,
282 (PMF)&FGAerodynamics::GetMoments);
283 PropertyManager->Tie("forces/fwx-aero-lbs", this,1,
284 (PMF)&FGAerodynamics::GetvFs);
285 PropertyManager->Tie("forces/fwy-aero-lbs", this,2,
286 (PMF)&FGAerodynamics::GetvFs);
287 PropertyManager->Tie("forces/fwz-aero-lbs", this,3,
288 (PMF)&FGAerodynamics::GetvFs);
289 PropertyManager->Tie("forces/lod-norm", this,
290 &FGAerodynamics::GetLoD);
291 PropertyManager->Tie("aero/cl-squared-norm", this,
292 &FGAerodynamics::GetClSquared);
293 PropertyManager->Tie("aero/alpha-max-deg", this,
294 &FGAerodynamics::GetAlphaCLMax,
295 &FGAerodynamics::SetAlphaCLMax,
297 PropertyManager->Tie("aero/alpha-min-deg", this,
298 &FGAerodynamics::GetAlphaCLMin,
299 &FGAerodynamics::SetAlphaCLMin,
301 PropertyManager->Tie("aero/bi2vel", this,
302 &FGAerodynamics::GetBI2Vel);
303 PropertyManager->Tie("aero/ci2vel", this,
304 &FGAerodynamics::GetCI2Vel);
305 PropertyManager->Tie("aero/alpha-wing-rad", this,
306 &FGAerodynamics::GetAlphaW);
307 PropertyManager->Tie("systems/stall-warn-norm", this,
308 &FGAerodynamics::GetStallWarn);
309 PropertyManager->Tie("aero/stall-hyst-norm", this,
310 &FGAerodynamics::GetHysteresisParm);
313 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
315 void FGAerodynamics::bindModel(void)
318 FGPropertyManager* node;
319 string axis_node_name;
320 node = PropertyManager->GetNode("aero/buildup",true);
321 for (i=0;i<NAxes;i++) {
322 node = node->GetNode( string(AxisNames[i]),true );
323 for (j=0; j < Coeff[i].size(); j++) {
324 Coeff[i][j]->bind(node);
326 node = (FGPropertyManager*)node->getParent();
330 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
332 void FGAerodynamics::unbind(void)
336 PropertyManager->Untie("forces/fbx-aero-lbs");
337 PropertyManager->Untie("forces/fby-aero-lbs");
338 PropertyManager->Untie("forces/fbz-aero-lbs");
339 PropertyManager->Untie("moments/l-aero-lbsft");
340 PropertyManager->Untie("moments/m-aero-lbsft");
341 PropertyManager->Untie("moments/n-aero-lbsft");
342 PropertyManager->Untie("forces/fwx-aero-lbs");
343 PropertyManager->Untie("forces/fwy-aero-lbs");
344 PropertyManager->Untie("forces/fwz-aero-lbs");
345 PropertyManager->Untie("forces/lod-norm");
346 PropertyManager->Untie("aero/cl-squared-norm");
347 PropertyManager->Untie("aero/alpha-max-deg");
348 PropertyManager->Untie("aero/alpha-min-deg");
349 PropertyManager->Untie("aero/bi2vel");
350 PropertyManager->Untie("aero/ci2vel");
351 PropertyManager->Untie("aero/alpha-wing-rad");
352 PropertyManager->Untie("aero/stall-hyst-norm");
353 PropertyManager->Untie("systems/stall-warn-norm");
355 for ( i=0; i<NAxes; i++ ) {
356 for ( j=0; j < Coeff[i].size(); j++ ) {
357 Coeff[i][j]->unbind();
363 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
364 // The bitmasked value choices are as follows:
365 // unset: In this case (the default) JSBSim would only print
366 // out the normally expected messages, essentially echoing
367 // the config files as they are read. If the environment
368 // variable is not set, debug_lvl is set to 1 internally
369 // 0: This requests JSBSim not to output any messages
371 // 1: This value explicity requests the normal JSBSim
373 // 2: This value asks for a message to be printed out when
374 // a class is instantiated
375 // 4: When this value is set, a message is displayed when a
376 // FGModel object executes its Run() method
377 // 8: When this value is set, various runtime state variables
378 // are printed out periodically
379 // 16: When set various parameters are sanity checked and
380 // a message is printed out when they go out of bounds
382 void FGAerodynamics::Debug(int from)
384 if (debug_lvl <= 0) return;
386 if (debug_lvl & 1) { // Standard console startup message output
387 if (from == 0) { // Constructor
391 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
392 if (from == 0) cout << "Instantiated: FGAerodynamics" << endl;
393 if (from == 1) cout << "Destroyed: FGAerodynamics" << endl;
395 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
397 if (debug_lvl & 8 ) { // Runtime state variables
399 if (debug_lvl & 16) { // Sanity checking
401 if (debug_lvl & 64) {
402 if (from == 0) { // Constructor
403 cout << IdSrc << endl;
404 cout << IdHdr << endl;
409 } // namespace JSBSim