- Timestamp:
- 03/29/10 14:46:23 (15 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/STAtmosphere.cpp
r1716 r1718 76 76 * Constructor with explicitly given parameters of the atmosphere 77 77 * @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) 79 81 * @param[in] humidity air humidity at the observatory (fraction) 80 82 * @param[in] lapseRate temperature lapse rate (K/m), default is 0.0065 K/m to match MIRIAD and ISA … … 98 100 * Set the new weather station data, recompute the model 99 101 * @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) 101 105 * @param[in] humidity air humidity at the observatory (fraction) 102 106 **/ … … 111 115 /** 112 116 * 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.. 114 123 * @param[in] elev elevation in metres 115 124 **/ -
trunk/src/STAtmosphere.h
r1715 r1718 89 89 * Constructor with explicitly given parameters of the atmosphere 90 90 * @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) 91 94 * @param[in] pressure air pressure at the observatory (Pascals) 92 95 * @param[in] humidity air humidity at the observatory (fraction) … … 104 107 * Set the new weather station data, recompute the model 105 108 * @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) 107 112 * @param[in] humidity air humidity at the observatory (fraction) 108 113 **/ … … 111 116 /** 112 117 * 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 * 113 124 * By default, 200m is assumed. 114 125 * @param[in] elev elevation in metres
Note:
See TracChangeset
for help on using the changeset viewer.