Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.apo.nmsu.edu/Telescopes/TCC/html/weath_8h_source.html
Дата изменения: Tue Sep 15 02:25:37 2015
Дата индексирования: Sun Apr 10 00:19:26 2016
Кодировка:

Поисковые слова: mercury surface
lsst.tcc: include/tcc/weath.h Source File
lsst.tcc  1.2.2-3-g89ecb63
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
weath.h
Go to the documentation of this file.
1 #pragma once
2 #include "coordConv/site.h"
3 
4 /*
5 Weather block
6 */
7 namespace tcc {
8 
9  class Weath {
10  public:
11  double airTemp;
12  double secTrussTemp;
13  double primFrontTemp;
15  double secFrontTemp;
17  double press;
18  double humid;
19  double tempLapseRate;
20  double windSpeed;
21  double windDir;
22  double timestamp;
23 
24  explicit Weath();
25 
41  void computeRefCo(double &refCoA, double &refCoB, double wavelen, double elev, double lat) const;
42 
55  void updateSite(coordConv::Site &site) const;
56  };
57 
58 }
double secFrontTemp
secondary mirror front temperature (C)
Definition: weath.h:15
double windSpeed
wind speed (m/sec)
Definition: weath.h:20
double windDir
wind direction (degrees, from the south = 0, from the east = 90)
Definition: weath.h:21
double primBackFrontTemp
primary mirror back - front temperature difference (C)
Definition: weath.h:14
double humid
humidity (fraction)
Definition: weath.h:18
void computeRefCo(double &refCoA, double &refCoB, double wavelen, double elev, double lat) const
Definition: weath.cc:23
double tempLapseRate
temperature lapse rate (C/km); 6.5 is a good default
Definition: weath.h:19
double secTrussTemp
secondary truss temperature (C)
Definition: weath.h:12
double primFrontTemp
primary mirror front temperature (C)
Definition: weath.h:13
Weath()
Definition: weath.cc:7
double press
air pressure (Pascals)
Definition: weath.h:17
double airTemp
ambient air temperature (C)
Definition: weath.h:11
double timestamp
TAI date of last update (MJD, sec)
Definition: weath.h:22
double secBackFrontTemp
secondary mirror back - front temperature difference (C)
Definition: weath.h:16
void updateSite(coordConv::Site &site) const
Definition: weath.cc:41