X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FEnvironment%2Fatmosphere.cxx;h=b7130aea3e9a4a65cce7c4831cfaa49df985972c;hb=1edffd1d10bbe30a418e88140df54791ced23649;hp=099669586a82b41f046ef5a7ecedb91d58be26ca;hpb=b5c46a8d59120f18b0bc268af72ecb6d3a75b3e3;p=flightgear.git diff --git a/src/Environment/atmosphere.cxx b/src/Environment/atmosphere.cxx index 099669586..b7130aea3 100644 --- a/src/Environment/atmosphere.cxx +++ b/src/Environment/atmosphere.cxx @@ -7,6 +7,7 @@ using namespace std; #include +#include const ISA_layer ISA_def[] = { // 0 1 2 3 4 5 6 7 8 @@ -108,7 +109,7 @@ pair PT_vs_hpt( } // Should never get here. - SG_LOG(SG_GENERAL, SG_ALERT, "PT_vs_hpt: ran out of layers"); + SG_LOG(SG_ENVIRONMENT, SG_ALERT, "PT_vs_hpt: ran out of layers for h=" << hh ); return make_pair(d0, d0); } @@ -222,7 +223,7 @@ void FGAtmoCache::check_model() { ////////////////////////////////////////////////////////////////////// -FGAltimeter::FGAltimeter() : kset(atmodel::ISA::P0), kft(0) +FGAltimeter::FGAltimeter() { cache(); } @@ -250,7 +251,7 @@ double FGAtmo::QNH(const double field_elev, const double field_press) { double rslt = field_press * pow(1. + ISA::lam0 * field_elev / ISA::T0 * prat, 1./nn); #if 0 - SG_LOG(SG_GENERAL, SG_ALERT, "QNH: elev: " << field_elev + SG_LOG(SG_ENVIRONMENT, SG_ALERT, "QNH: elev: " << field_elev << " press: " << field_press << " prat: " << prat << " rslt: " << rslt