]> git.mxchange.org Git - flightgear.git/commitdiff
Revert some debugging code which krept in
authorErik Hofman <erik@ehofman.com>
Sat, 28 May 2016 08:05:09 +0000 (10:05 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 22 Sep 2016 21:27:35 +0000 (23:27 +0200)
src/FDM/JSBSim/JSBSim.cxx
src/FDM/JSBSim/models/atmosphere/FGStandardAtmosphere.cpp

index a93844da44c657a514b7645546627ace51abca22..b94a900a8ebe482eff643ba0a30aa258d4d8b4cd 100644 (file)
@@ -502,7 +502,6 @@ void FGJSBsim::unbind()
 /******************************************************************************/
 
 // Run an iteration of the EOM (equations of motion)
-#  include <fenv.h>
 void FGJSBsim::update( double dt )
 {
     if(crashed) {
index 084c96567d076c48d13bc538e60865608c12db89..a62cad1cdee7518bca3cc0702a84d564803735f3 100644 (file)
@@ -153,8 +153,8 @@ double FGStandardAtmosphere::GetPressure(double altitude) const
   double Lmb, Exp, Tmb, deltaH, factor;
   double numRows = StdAtmosTemperatureTable->GetNumRows();
 
-  if (altitude > 328084) // Karman line
-    altitude = 328084;
+//if (altitude > 328084) // Karman line
+//  altitude = 328084;
 
   // Iterate through the altitudes to find the current Base Altitude
   // in the table. That is, if the current altitude (the argument passed in)
@@ -179,7 +179,7 @@ double FGStandardAtmosphere::GetPressure(double altitude) const
     factor = Tmb/(Tmb + Lmb*deltaH);
     pressure = PressureBreakpointVector[b]*pow(factor, Exp);
   } else {
-    pressure = PressureBreakpointVector[b]*exp(Mair*deltaH/(Rstar*Tmb));
+    pressure = PressureBreakpointVector[b]*exp(-Mair*deltaH/(Rstar*Tmb));
   }
 
   return pressure;