MeteoIODoc 20250905.f67af007
 
Loading...
Searching...
No Matches
PrecSplitting.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-3.0-or-later
2/***********************************************************************************/
3/* Copyright 2013-2018 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 PRECSPLITTING_H
20#define PRECSPLITTING_H
21
23
24namespace mio {
25
95 public:
96 PrecSplitting(const std::vector< std::pair<std::string, std::string> >& vecArgs, const std::string& i_algo, const std::string& i_section, const double& TZ)
97 : GeneratorAlgorithm(vecArgs, i_algo, i_section, TZ), model(NONE), where( section+"::"+algo ), fixed_thresh(IOUtils::nodata),
98 range_start(IOUtils::nodata), range_norm(IOUtils::nodata) { parse_args(vecArgs); }
99
100 bool generate(const size_t& param, MeteoData& md, const std::vector<MeteoData>& vecMeteo) override;
101 bool create(const size_t& param, const size_t& ii_min, const size_t& ii_max, std::vector<MeteoData>& vecMeteo) override;
102
103 private:
104 void parse_args(const std::vector< std::pair<std::string, std::string> >& vecArgs) override;
105 bool generatePSUM_S(double& value, MeteoData& md) const;
106 bool generatePSUM_L(double& value, MeteoData& md) const;
107 bool generatePSUM_PH(double& value, MeteoData& md) const;
108 bool generatePSUM(double& value, MeteoData& md) const;
109 bool runModel(double &value, MeteoData& md) const;
110
111 typedef enum PARAMETRIZATION {
112 THRESH,
113 WET_BULB,
114 RANGE,
115 NONE
116 } parametrization;
117 parametrization model;
118 const std::string where;
119 double fixed_thresh, range_start, range_norm;
120};
121
122} //end namespace mio
123
124#endif
Interface class for the generator models.
Definition GeneratorAlgorithms.h:111
const std::string algo
Definition GeneratorAlgorithms.h:161
const std::string section
Definition GeneratorAlgorithms.h:161
A class to represent a singular measurement received from one station at a certain time (represented ...
Definition MeteoData.h:108
Generate precipitation phase or splitting according to the selected method.
Definition PrecSplitting.h:94
bool create(const size_t &param, const size_t &ii_min, const size_t &ii_max, std::vector< MeteoData > &vecMeteo) override
Fill one time series of MeteoData for one station.
Definition PrecSplitting.cc:68
bool generate(const size_t &param, MeteoData &md, const std::vector< MeteoData > &vecMeteo) override
Definition PrecSplitting.cc:110
PrecSplitting(const std::vector< std::pair< std::string, std::string > > &vecArgs, const std::string &i_algo, const std::string &i_section, const double &TZ)
Definition PrecSplitting.h:96
Definition Config.cc:34