17 #ifndef GAZEBO_PHYSICS_ADIABATICATMOSPHERE_HH_
18 #define GAZEBO_PHYSICS_ADIABATICATMOSPHERE_HH_
32 class AdiabaticAtmospherePrivate;
56 public:
virtual void Load(sdf::ElementPtr _sdf);
59 public:
virtual std::string Type()
const;
62 protected:
virtual void OnRequest(ConstRequestPtr &_msg);
65 protected:
virtual void OnAtmosphereMsg(ConstAtmospherePtr &_msg);
68 public:
virtual void SetTemperatureGradient(
const double _gradient);
71 public:
virtual double Temperature(
const double _altitude = 0.0)
const;
74 public:
virtual double Pressure(
const double _altitude = 0.0)
const;
77 public:
double MassDensity(
const double _altitude = 0.0)
const;
80 private:
void ComputeAdiabaticPower();
84 protected: std::unique_ptr<AdiabaticAtmospherePrivate>
dataPtr;
The world provides access to all other object within a simulated environment.
Definition: World.hh:80
std::unique_ptr< AdiabaticAtmospherePrivate > dataPtr
Definition: AdiabaticAtmosphere.hh:84
Adiabatic atmosphere model based on the troposphere model in the Manual of the ICAO Standard Atmosphe...
Definition: AdiabaticAtmosphere.hh:46
This models a base atmosphere class to serve as a common interface to any derived atmosphere models...
Definition: Atmosphere.hh:42