1
0
Fork 0

Fixed abs() vs. fabs() typo.

This commit is contained in:
curt 1999-12-23 17:35:10 +00:00
parent 4c0f52af83
commit 46b65bcab2

View file

@ -143,7 +143,7 @@ ostream& operator<< ( ostream& out, const FGPhysicalProperties2D& p )
inline double F(const WeatherPrecision factor, const WeatherPrecision a, const WeatherPrecision b, const WeatherPrecision r, const WeatherPrecision x) inline double F(const WeatherPrecision factor, const WeatherPrecision a, const WeatherPrecision b, const WeatherPrecision r, const WeatherPrecision x)
{ {
const double c = 1.0 / (-b + a * r); const double c = 1.0 / (-b + a * r);
return factor * c * ( 1.0 / (r + x) + a * c * log(abs((r + x) * (b + a * x))) ); return factor * c * ( 1.0 / (r + x) + a * c * log(fabs((r + x) * (b + a * x))) );
} }
WeatherPrecision FGPhysicalProperties::AirPressureAt(const WeatherPrecision x) const WeatherPrecision FGPhysicalProperties::AirPressureAt(const WeatherPrecision x) const