Alpine3D 20241222.625fd38
SnowBRDF.h
Go to the documentation of this file.
1#ifndef SNOWBRDF_H
2#define SNOWBRDF_H
3
4#include <meteoio/MeteoIO.h>
5
6class SnowBRDF{
7
8 public:
10 SnowBRDF(const mio::Config& cfg);
11 ~SnowBRDF();
12
13 double get_RF(double cth_i, double cphi, double cth_v);
14 bool albedo_inc=false;
15
16 private:
17
18 void initialize(const mio::Config& cfg);
19 double BRDF_data[33][120][60];
20};
21
22#endif
Definition: SnowBRDF.h:6
bool albedo_inc
Definition: SnowBRDF.h:14
~SnowBRDF()
Definition: SnowBRDF.cc:31
SnowBRDF()
Definition: SnowBRDF.h:9
double get_RF(double cth_i, double cphi, double cth_v)
Definition: SnowBRDF.cc:60