46#include "FGAtmosphere.h"
58 StdDaySLsoundspeed(sqrt(SHRatio*Reng0*StdDaySLtemperature))
60 Name =
"FGAtmosphere";
75bool FGAtmosphere::InitModel(
void)
77 if (!FGModel::InitModel())
return false;
79 SLtemperature = Temperature = StdDaySLtemperature;
80 SLpressure = Pressure = StdDaySLpressure;
81 SLdensity = Density = Pressure/(Reng*Temperature);
82 SLsoundspeed = Soundspeed = StdDaySLsoundspeed;
93 if (Holding)
return false;
106 const double MinPressure =
ConvertToPSF(1E-15, ePascals);
107 if (p < MinPressure) {
109 cerr << msg <<
" " << p <<
" is too low." << endl
110 << msg <<
" is capped to " << MinPressure << endl;
127 if (t < minUniverseTemperature) {
129 cerr << msg <<
" " << t <<
" is too low." << endl
130 << msg <<
" is capped to " << minUniverseTemperature << endl;
132 return minUniverseTemperature;
143 if (!PropertyManager->HasNode(
"atmosphere/override/temperature"))
146 t = node->
GetDouble(
"atmosphere/override/temperature");
150 if (!PropertyManager->HasNode(
"atmosphere/override/pressure"))
153 p = node->
GetDouble(
"atmosphere/override/pressure");
156 if (!PropertyManager->HasNode(
"atmosphere/override/density"))
157 Density = Pressure/(Reng*Temperature);
159 Density = node->
GetDouble(
"atmosphere/override/density");
161 Soundspeed = sqrt(SHRatio*Reng*Temperature);
165 Viscosity = Beta * pow(Temperature, 1.5) / (SutherlandConstant + Temperature);
166 KinematicViscosity = Viscosity / Density;
216 targetTemp = t + 459.67;
219 targetTemp = (t + 273.15) * 1.8;
242 targetTemp = t - 459.67;
245 targetTemp = t/1.8 - 273.15;
264 double targetPressure=0;
271 targetPressure = p*2.08854342;
274 targetPressure = p*0.0208854342;
277 targetPressure = p*70.7180803;
283 return targetPressure;
290 double targetPressure=0;
297 targetPressure = p/2.08854342;
300 targetPressure = p/0.0208854342;
303 targetPressure = p/70.7180803;
309 return targetPressure;
314void FGAtmosphere::bind(
void)
327 PropertyManager->Tie(
"atmosphere/density-altitude",
this, &FGAtmosphere::GetDensityAltitude);
328 PropertyManager->Tie(
"atmosphere/pressure-altitude",
this, &FGAtmosphere::GetPressureAltitude);
350void FGAtmosphere::Debug(
int from)
352 if (debug_lvl <= 0)
return;
358 if (debug_lvl & 2 ) {
359 if (from == 0) std::cout <<
"Instantiated: FGAtmosphere" << std::endl;
360 if (from == 1) std::cout <<
"Destroyed: FGAtmosphere" << std::endl;
362 if (debug_lvl & 4 ) {
364 if (debug_lvl & 8 ) {
366 if (debug_lvl & 16) {
368 if (debug_lvl & 128) {
370 if (debug_lvl & 64) {
virtual double GetSoundSpeedRatio(void) const
Returns the ratio of at-altitude sound speed over the sea level value.
virtual double GetPressureRatio(void) const
Returns the ratio of at-altitude pressure over the sea level value.
double ConvertToRankine(double t, eTemperature unit) const
Converts to Rankine from one of several unit systems.
virtual double GetTemperatureRatio() const
Returns the ratio of the at-current-altitude temperature as modeled over the sea level value.
virtual double CalculatePressureAltitude(double pressure, double geometricAlt)
Calculates the pressure altitude given any temperature or pressure bias.
virtual void Calculate(double altitude)
Calculate the atmosphere for the given altitude.
double ConvertFromPSF(double t, ePressure unit=ePSF) const
Converts from PSF (pounds per square foot) to one of several unit systems.
virtual double GetPressure(void) const
Returns the pressure in psf.
virtual double GetSoundSpeedSL(void) const
Returns the sea level speed of sound in ft/sec.
eTemperature
Enums for specifying temperature units.
double ConvertFromRankine(double t, eTemperature unit) const
Converts from Rankine to one of several unit systems.
double ValidatePressure(double p, const std::string &msg, bool quiet=false) const
Check that the pressure is within plausible boundaries.
bool Run(bool Holding) override
Runs the atmosphere forces model; called by the Executive.
double ValidateTemperature(double t, const std::string &msg, bool quiet=false) const
Check that the temperature is within plausible boundaries.
double ConvertToPSF(double t, ePressure unit=ePSF) const
Converts to PSF (pounds per square foot) from one of several unit systems.
virtual double CalculateDensityAltitude(double density, double geometricAlt)
Calculates the density altitude given any temperature or pressure bias.
virtual double GetSoundSpeed(void) const
Returns the speed of sound in ft/sec.
virtual ~FGAtmosphere()
Destructor.
virtual double GetDensitySL(void) const
Returns the sea level density in slugs/ft^3.
ePressure
Enums for specifying pressure units.
virtual double GetTemperatureSL() const
Returns the actual, modeled sea level temperature in degrees Rankine.
virtual void SetPressureSL(ePressure unit, double pressure)
Sets the sea level pressure for modeling.
virtual void SetTemperatureSL(double t, eTemperature unit=eFahrenheit)
Sets the Sea Level temperature.
virtual double GetDensityRatio(void) const
Returns the ratio of at-altitude density over the sea level value.
FGAtmosphere(FGFDMExec *)
Constructor.
virtual double GetDensity(void) const
Returns the density in slugs/ft^3.
virtual double GetTemperature() const
Returns the actual, modeled temperature at the current altitude in degrees Rankine.
Encapsulates the JSBSim simulation executive.
static constexpr double KelvinToRankine(double kelvin)
Converts from degrees Kelvin to degrees Rankine.
Base class for all scheduled JSBSim models.
virtual bool Run(bool Holding)
Runs the model; called by the Executive.
Class wrapper for property handling.
double GetDouble(const std::string &name, double defaultValue=0.0) const
Get a double value for a property.