Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
15 | Werner | 1 | #ifndef SolarRadiation_H |
2 | #define SolarRadiation_H |
||
3 | //--------------------------------------------------------------------------- |
||
4 | |||
5 | class HemiGrid; |
||
6 | /** Handles sun and radiation calculations. |
||
7 | This class contains functions to calculate daylength, and hemipherical radiation intensities |
||
8 | based on latitude. */ |
||
9 | class SolarRadiation |
||
10 | { |
||
11 | public: |
||
12 | SolarRadiation(): mMinDay(-1), mMaxDay(367), mDiffusRadFraction(0.5) {} |
||
13 | void Setup(double BreiteGrad); |
||
14 | |||
15 | /** calculate radiation matrix. |
||
16 | calculates for each sector of the "Grid" the yearly radiation intensites. |
||
17 | Intensities are influenced by latitude, vegetation period and the fraction of diffuse radiation. |
||
18 | @param Step_deg size of one cell in degree (e.g. 5 -> each pixel has a size of 5°x5°) |
||
19 | @param Grid results are stored in that HemiGrid (no setup required) */ |
||
20 | void calculateRadMatrix(const float Step_deg, HemiGrid &Grid); |
||
21 | /// set fraction of diffuse radiation (1: only diffuse rad, 0: only direct rad) |
||
22 | void setDiffusRadFraction(double fraction_of_diffus_rad) { mDiffusRadFraction = fraction_of_diffus_rad; } |
||
23 | /// set latitude in degree |
||
24 | void setLatidude(const double lat_degree) { Latitude = lat_degree * M_PI/180.; } |
||
25 | void setVegetationPeriod(int day_start, int day_end) { mMinDay=day_start; mMaxDay=day_end; } |
||
26 | private: |
||
27 | int FTime; ///< time of day |
||
28 | double DayLength[366]; ///< length of day (seconds) |
||
29 | double RadExtraTerrestrisch[366]; ///< total radiation Extraterrestrisch kJ/m2 daysum |
||
30 | double SolarConstant; ///< radiation constant in space |
||
31 | double Latitude; ///< Latitude in rad |
||
32 | int mMinDay; ///< start of vegetation period (day) |
||
33 | int mMaxDay; ///< end of vegetation period (day) |
||
34 | double mDiffusRadFraction; |
||
35 | void calcDay(int day); |
||
36 | ///< calculate daylength and daily radiation values |
||
37 | }; |
||
38 | |||
39 | #endif |