X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FEnvironment%2Fenvironment.hxx;h=c270132262f7883c2fd9a20a4c4f458653918084;hb=386aefe69358ce41a11c9afeb8f56e26758fe56b;hp=11eccd91b9dac4485bfdbfc5fd41abd3f38d6e0d;hpb=c9813d1b5d79b4aad13c263690a0223086af25ac;p=flightgear.git diff --git a/src/Environment/environment.hxx b/src/Environment/environment.hxx index 11eccd91b..c27013226 100644 --- a/src/Environment/environment.hxx +++ b/src/Environment/environment.hxx @@ -26,12 +26,7 @@ #include -#ifdef SG_HAVE_STD_INCLUDES -# include -#else -# include -#endif - +#include /** * Model the natural environment. @@ -65,11 +60,19 @@ public: virtual double get_pressure_inhg () const; virtual double get_density_slugft3 () const; + virtual double get_relative_humidity () const; + virtual double get_density_tropo_avg_kgm3 () const; + virtual double get_altitude_half_to_sun_m () const; + virtual double get_altitude_tropo_top_m () const; + virtual double get_wind_from_heading_deg () const; virtual double get_wind_speed_kt () const; virtual double get_wind_from_north_fps () const; virtual double get_wind_from_east_fps () const; virtual double get_wind_from_down_fps () const; + virtual double get_thermal_lift_fps () const; + virtual double get_ridge_lift_fps () const; + virtual double get_local_weather_lift_fps () const; virtual double get_turbulence_magnitude_norm () const; virtual double get_turbulence_rate_hz () const; @@ -88,31 +91,40 @@ public: virtual void set_wind_from_north_fps (double n); virtual void set_wind_from_east_fps (double e); virtual void set_wind_from_down_fps (double d); + virtual void set_thermal_lift_fps (double th); + virtual void set_ridge_lift_fps (double ri); + virtual void set_local_weather_lift_fps (double lwl); virtual void set_turbulence_magnitude_norm (double t); virtual void set_turbulence_rate_hz (double t); virtual double get_elevation_ft () const; virtual void set_elevation_ft (double elevation_ft); + virtual void set_altitude_half_to_sun_m (double alt); + virtual void set_altitude_tropo_top_m (double alt); -private: + virtual bool set_live_update(bool live_update); - void _recalc_hdgspd (); void _recalc_ne (); + void _recalc_alt_dewpoint (); + void _recalc_density (); + void _recalc_relative_humidity (); + void _recalc_alt_pt (); +private: + void _init(); + void _recalc_hdgspd (); + void _recalc_updraft (); void _recalc_sl_temperature (); - void _recalc_alt_temperature (); void _recalc_sl_dewpoint (); - void _recalc_alt_dewpoint (); void _recalc_sl_pressure (); - void _recalc_alt_pressure (); - void _recalc_density (); - double elevation_ft; + void _recalc_density_tropo_avg_kgm3 (); + double elevation_ft; double visibility_m; - // Atmosphere + // Atmosphere double temperature_sea_level_degc; double temperature_degc; double dewpoint_sea_level_degc; @@ -121,6 +133,11 @@ private: double pressure_inhg; double density_slugft3; + double density_tropo_avg_kgm3; + double relative_humidity; + double altitude_half_to_sun_m; + double altitude_tropo_top_m; + double turbulence_magnitude_norm; double turbulence_rate_hz; @@ -130,6 +147,11 @@ private: double wind_from_north_fps; double wind_from_east_fps; double wind_from_down_fps; + double thermal_lift_fps; + double ridge_lift_fps; + double local_weather_lift_fps; + + bool live_update; };