Changeset 1718


Ignore:
Timestamp:
03/29/10 14:46:23 (14 years ago)
Author:
Max Voronkov
Message:

updated documentation to reflect better interpretation of the pressure

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STAtmosphere.cpp

    r1716 r1718  
    7676 * Constructor with explicitly given parameters of the atmosphere
    7777 * @param[in] temperature air temperature at the observatory (K)
    78  * @param[in] pressure air pressure at the sea level (Pascals)
     78 * @param[in] pressure air pressure at the sea level if the observatory elevation is set
     79 *            (default is set to 200m) or at the observatory ground level if the elevation
     80 *            is set to 0 (Pascals)
    7981 * @param[in] humidity air humidity at the observatory (fraction)
    8082 * @param[in] lapseRate temperature lapse rate (K/m), default is 0.0065 K/m to match MIRIAD and ISA
     
    98100 * Set the new weather station data, recompute the model
    99101 * @param[in] temperature air temperature at the observatory (K)
    100  * @param[in] pressure air pressure at the sea level (Pascals)
     102 * @param[in] pressure air pressure at the sea level if the observatory elevation is set to non-zero value
     103 *            (default is set to 200m) or at the observatory ground level if the elevation 
     104 *            is set to 0 (Pascals)
    101105 * @param[in] humidity air humidity at the observatory (fraction)
    102106 **/
     
    111115/**
    112116 * Set the elevation of the observatory (height above mean sea level)
    113  * By default, 200m is assumed.
     117 * It affects only interpretation of the pressure supplied as part of the weather data, if this value
     118 * is non-zero, the pressure (e.g. in setWeather or constructor) is that at mean sea level. If the
     119 * observatory elevation is set to zero, regardless on real elevation, the pressure is that at the
     120 * observatory ground level.
     121 *
     122 * By default, 200m is assumed and the pressure should be a mean sea level pressure..
    114123 * @param[in] elev elevation in metres
    115124 **/
  • trunk/src/STAtmosphere.h

    r1715 r1718  
    8989   * Constructor with explicitly given parameters of the atmosphere
    9090   * @param[in] temperature air temperature at the observatory (K)
     91   * @param[in] pressure air pressure at the sea level if the observatory elevation
     92   *            is set to non-zero value (note, by default is set to 200m) or at the
     93   *            observatory ground level if the elevation is set to 0. (The value is in Pascals)
    9194   * @param[in] pressure air pressure at the observatory (Pascals)
    9295   * @param[in] humidity air humidity at the observatory (fraction)
     
    104107   * Set the new weather station data, recompute the model
    105108   * @param[in] temperature air temperature at the observatory (K)
    106    * @param[in] pressure air pressure at the observatory (Pascals)
     109   * @param[in] pressure air pressure at the sea level if the observatory elevation
     110   *            is set to non-zero value (note, by default is set to 200m) or at the
     111   *            observatory ground level if the elevation is set to 0. (The value is in Pascals)
    107112   * @param[in] humidity air humidity at the observatory (fraction)
    108113   **/
     
    111116  /**
    112117   * Set the elevation of the observatory (height above mean sea level)
     118   *
     119   * The observatory elevation affects only interpretation of the pressure supplied as part
     120   * of the weather data, if this value is non-zero, the pressure (e.g. in setWeather or
     121   * constructor) is that at mean sea level. If the observatory elevation is set to zero,
     122   * regardless on real elevation, the pressure is that at the observatory ground level.
     123   *
    113124   * By default, 200m is assumed.
    114125   * @param[in] elev elevation in metres
Note: See TracChangeset for help on using the changeset viewer.