Ignore:
Timestamp:
03/17/10 15:37:26 (14 years ago)
Author:
Max Voronkov
Message:

added the code to calculate dry refractivity of the atmosphere

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STAtmosphere.h

    r1709 r1710  
    4343#define STATMOSPHERE_H
    4444
     45// std includes
    4546#include <vector>
     47#include <complex>
    4648
    4749namespace asap {
     
    133135  static double wvSaturationPressure(double temperature);
    134136   
     137  /**
     138   * Compute the complex refractivity of the dry components of the atmosphere
     139   * (oxygen lines) at the given frequency.
     140   * @param[in] freq frequency (Hz)
     141   * @param[in] temperature air temperature (K)
     142   * @param[in] pDry partial pressure of dry components (Pascals)
     143   * @param[in] pVapour partial pressure of water vapour (Pascals)
     144   * @return complex refractivity
     145   **/
     146   static std::complex<double> dryRefractivity(double freq, double temperature,
     147                     double pDry, double pVapour);
     148   
    135149private:
    136150 
Note: See TracChangeset for help on using the changeset viewer.