MeteoIODoc 20240426.aefd3c94
AllSkyLWGenerator.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-3.0-or-later
2/***********************************************************************************/
3/* Copyright 2013-2021 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 ALLSKYGENERATOR_H
20#define ALLSKYGENERATOR_H
21
25
26#include <map>
27
28namespace mio {
29
81 public:
82 //TauCLDGenerator will do its own arguments parsing, then AllSkyLWGenerator
83 //so make sure that we don't use here the same name as an argument to TauCLDGenerator!
84 AllSkyLWGenerator(const std::vector< std::pair<std::string, std::string> >& vecArgs, const std::string& i_algo, const std::string& i_section, const double& TZ, const Config &i_cfg) : TauCLDGenerator(vecArgs, i_algo, i_section, TZ, i_cfg), model(OMSTEDT) {parse_args(vecArgs); }
85
86 bool generate(const size_t& param, MeteoData& md, const std::vector<MeteoData>& vecMeteo);
87 bool create(const size_t& param, const size_t& ii_min, const size_t& ii_max, std::vector<MeteoData>& vecMeteo);
88 private:
89 void parse_args(const std::vector< std::pair<std::string, std::string> >& vecArgs);
90
91 typedef enum PARAMETRIZATION {
92 LHOMME,
93 CARMONA,
94 CRAWFORD,
95 KONZELMANN,
96 OMSTEDT,
97 UNSWORTH
98 } parametrization;
99
100 parametrization model;
101};
102
103} //end namespace mio
104
105#endif
ILWR all sky parametrization.
Definition: AllSkyLWGenerator.h:80
AllSkyLWGenerator(const std::vector< std::pair< std::string, std::string > > &vecArgs, const std::string &i_algo, const std::string &i_section, const double &TZ, const Config &i_cfg)
Definition: AllSkyLWGenerator.h:84
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: AllSkyLWGenerator.cc:90
bool generate(const size_t &param, MeteoData &md, const std::vector< MeteoData > &vecMeteo)
Definition: AllSkyLWGenerator.cc:60
A class that reads a key/value file. These files (typically named *.ini) follow the INI file format s...
Definition: Config.h:79
A class to represent a singular measurement received from one station at a certain time (represented ...
Definition: MeteoData.h:107
Atmospheric transmissivity generator.
Definition: TauCLDGenerator.h:86
Definition: Config.cc:31