The Atmosphere class contains information about an atmospheric model and related parameters such as temperature and pressure at sea level.  
 More...
#include <Atmosphere.hh>
The Atmosphere class contains information about an atmospheric model and related parameters such as temperature and pressure at sea level. 
An Atmosphere instance is optionally part of a World. 
 
◆ Atmosphere()
      
        
          | sdf::SDF_VERSION_NAMESPACE::Atmosphere::Atmosphere  | 
          ( | 
           | ) | 
           | 
        
      
 
 
◆ Load()
Load the atmosphere based on a element pointer. 
This is not the usual entry point. Typical usage of the SDF DOM is through the Root object. 
- Parameters
 - 
  
  
 
- Returns
 - Errors, which is a vector of Error objects. Each Error includes an error code and message. An empty vector indicates no error. 
 
 
 
◆ operator==()
      
        
          | bool sdf::SDF_VERSION_NAMESPACE::Atmosphere::operator==  | 
          ( | 
          const Atmosphere &  | 
          _atmosphere | ) | 
           const | 
        
      
 
Equality operator that returns true if this atmosphere instance equals the given atmosphere instance. 
- Parameters
 - 
  
  
 
- Returns
 - True if this instance equals the given atmosphere. 
 
 
 
◆ Pressure()
      
        
          | double sdf::SDF_VERSION_NAMESPACE::Atmosphere::Pressure  | 
          ( | 
           | ) | 
           const | 
        
      
 
Get the pressure at sea level in pascals. 
- Returns
 - The pressure at sea level in pascals. 
 
 
 
◆ SetPressure()
      
        
          | void sdf::SDF_VERSION_NAMESPACE::Atmosphere::SetPressure  | 
          ( | 
          const double  | 
          _pressure | ) | 
           | 
        
      
 
Set the pressure at sea level in pascals. 
- Parameters
 - 
  
    | [in] | _pressure | The pressure at sea level in pascals.  | 
  
   
 
 
◆ SetTemperature()
      
        
          | void sdf::SDF_VERSION_NAMESPACE::Atmosphere::SetTemperature  | 
          ( | 
          const gz::math::Temperature &  | 
          _temp | ) | 
           | 
        
      
 
Set the temperature at sea level. 
- Parameters
 - 
  
    | [in] | _temp | The temperature at sea level.  | 
  
   
 
 
◆ SetTemperatureGradient()
      
        
          | void sdf::SDF_VERSION_NAMESPACE::Atmosphere::SetTemperatureGradient  | 
          ( | 
          const double  | 
          _gradient | ) | 
           | 
        
      
 
Set the temperature gradient with respect to increasing altitude in units of K/m. 
- Parameters
 - 
  
    | [in] | _gradient | The temperature gradient in K/m.  | 
  
   
 
 
◆ SetType()
      
        
          | void sdf::SDF_VERSION_NAMESPACE::Atmosphere::SetType  | 
          ( | 
          const AtmosphereType  | 
          _type | ) | 
           | 
        
      
 
Set the type of the atmospheric model. 
- Parameters
 - 
  
    | [in] | _type | The type of atmosphere engine.  | 
  
   
 
 
◆ Temperature()
      
        
          | gz::math::Temperature sdf::SDF_VERSION_NAMESPACE::Atmosphere::Temperature  | 
          ( | 
           | ) | 
           const | 
        
      
 
Get the temperature at sea level. 
- Returns
 - The temperature at sea level. 
 
 
 
◆ TemperatureGradient()
      
        
          | double sdf::SDF_VERSION_NAMESPACE::Atmosphere::TemperatureGradient  | 
          ( | 
           | ) | 
           const | 
        
      
 
Get the temperature gradient with respect to increasing altitude in units of K/m. 
- Returns
 - The temperature gradient in K/m. 
 
 
 
◆ ToElement()
      
        
          | sdf::ElementPtr sdf::SDF_VERSION_NAMESPACE::Atmosphere::ToElement  | 
          ( | 
           | ) | 
           const | 
        
      
 
Create and return an SDF element filled with data from this atmosphere. 
Note that parameter passing functionality is not captured with this function. 
- Returns
 - SDF element pointer with updated atmosphere values. 
 
 
 
◆ Type()
Get the type of the atmospheric model. 
- Returns
 - The type of atmosphere engine, which defaults to adiabatic. 
 
 
 
The documentation for this class was generated from the following file: