Ignore:
Timestamp:
03/17/10 14:24:21 (14 years ago)
Author:
Max Voronkov
Message:

implemented hydrostatic model of the atmosphere

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STAtmosphere.h

    r1708 r1709  
    121121  size_t nLayers() const;
    122122 
     123  /**
     124   * Determine the saturation pressure of water vapour for the given temperature.
     125   *
     126   * Reference:
     127   * Waters, Refraction effects in the neutral atmosphere. Methods of
     128   * Experimental Physics, vol 12B, p 186-200 (1976).
     129   *   
     130   * @param[in] temperature temperature in K
     131   * @return vapour saturation pressure (Pascals)
     132   **/
     133  static double wvSaturationPressure(double temperature);
     134   
    123135private:
    124136 
     
    143155 
    144156  // ground level pressure (Pascals)
    145   double itsPressure;
     157  double itsGndPressure;
    146158 
    147159  // ground level humidity (fraction)
    148   double itsHumidity;
     160  double itsGndHumidity;
    149161 
    150162  // lapse rate (K/m)
Note: See TracChangeset for help on using the changeset viewer.