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

changed pressure to the mean sea level to match miriad, bugfix, C++ code is now exposed to python

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STAtmosphere.h

    r1713 r1715  
    110110
    111111  /**
     112   * Set the elevation of the observatory (height above mean sea level)
     113   * By default, 200m is assumed.
     114   * @param[in] elev elevation in metres
     115   **/
     116  void setObservatoryElevation(double elev);
     117
     118  /**
    112119   * Calculate zenith opacity at the given frequency. This is a simplified version
    113120   * of the routine implemented in MIRIAD, which calculates just zenith opacity and
     
    136143   * @return zenith opacity (nepers, i.e. dimensionless)
    137144   **/
    138    double opacity(double freq, double el) const;
     145  double opacity(double freq, double el) const;
    139146
    140147  /**
     
    226233  double itsGndTemperature;
    227234 
    228   // ground level pressure (Pascals)
    229   double itsGndPressure;
     235  // sea level pressure (Pascals)
     236  double itsPressure;
    230237 
    231238  // ground level humidity (fraction)
     
    240247  // altitude of the highest layer of the model (m)
    241248  double itsMaxAlt;
     249 
     250  // observatory elevation (m)
     251  double itsObsHeight;
    242252};
    243253
Note: See TracChangeset for help on using the changeset viewer.