MeteoIODoc 20240429.aefd3c94
HumidityGenerator.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-3.0-or-later
2/***********************************************************************************/
3/* Copyright 2013 WSL Institute for Snow and Avalanche Research SLF-DAVOS */
4/***********************************************************************************/
5/* This file is part of MeteoIO.
6 MeteoIO is free software: you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 MeteoIO is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
18*/
19#ifndef HUMIDITYGENERATOR_H
20#define HUMIDITYGENERATOR_H
21
23
24namespace mio {
25
41 public:
42 HumidityGenerator(const std::vector< std::pair<std::string, std::string> >& vecArgs, const std::string& i_algo, const std::string& i_section, const double& TZ)
43 : GeneratorAlgorithm(vecArgs, i_algo, i_section, TZ), type(GEN_RH) { parse_args(vecArgs); }
44 bool generate(const size_t& param, MeteoData& md, const std::vector<MeteoData>& vecMeteo);
45 bool create(const size_t& param, const size_t& ii_min, const size_t& ii_max, std::vector<MeteoData>& vecMeteo);
46
47 private:
48 void parse_args(const std::vector< std::pair<std::string, std::string> >& vecArgs);
49
50 static bool generateAH(double& value, MeteoData& md);
51 static bool generateRH(double& value, MeteoData& md);
52 static bool generateTD(double& value, MeteoData& md);
53 static bool generateQI(double& value, MeteoData& md);
54
55 typedef enum GEN_TYPE {
56 GEN_AH,
57 GEN_RH,
58 GEN_TD,
59 GEN_QI
60 } gen_type;
61 gen_type type;
62};
63
64} //end namespace mio
65
66#endif
Interface class for the generator models.
Definition: GeneratorAlgorithms.h:111
(Relative/Specifc) Humidity or Dew Point temperature generator.
Definition: HumidityGenerator.h:40
HumidityGenerator(const std::vector< std::pair< std::string, std::string > > &vecArgs, const std::string &i_algo, const std::string &i_section, const double &TZ)
Definition: HumidityGenerator.h:42
bool generate(const size_t &param, MeteoData &md, const std::vector< MeteoData > &vecMeteo)
Definition: HumidityGenerator.cc:43
bool create(const size_t &param, const size_t &ii_min, const size_t &ii_max, std::vector< MeteoData > &vecMeteo)
Fill one time series of MeteoData for one station.
Definition: HumidityGenerator.cc:56
A class to represent a singular measurement received from one station at a certain time (represented ...
Definition: MeteoData.h:107
Definition: Config.cc:31