Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1062 | werner | 1 | /******************************************************************************************** |
2 | ** iLand - an individual based forest landscape and disturbance model |
||
3 | ** http://iland.boku.ac.at |
||
4 | ** Copyright (C) 2009- Werner Rammer, Rupert Seidl |
||
5 | ** |
||
6 | ** This program is free software: you can redistribute it and/or modify |
||
7 | ** it under the terms of the GNU 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 | ** This program 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 General Public License for more details. |
||
15 | ** |
||
16 | ** You should have received a copy of the GNU General Public License |
||
17 | ** along with this program. If not, see <http://www.gnu.org/licenses/>. |
||
18 | ********************************************************************************************/ |
||
19 | #ifndef GRASSCOVER_H |
||
20 | #define GRASSCOVER_H |
||
21 | |||
22 | #include "expression.h" |
||
23 | #include "grid.h" |
||
24 | #include "layeredgrid.h" |
||
1068 | werner | 25 | #include "random.h" |
1062 | werner | 26 | |
27 | class GrassCoverLayers; // forwared |
||
28 | |||
1064 | werner | 29 | // define the data type that is used to store the grass-levels |
30 | // use unsigned char for 1 byte (or quint8), unsigned short int (quint16) for two bytes per pixel |
||
1082 | werner | 31 | #define grass_grid_type qint16 |
1064 | werner | 32 | |
1062 | werner | 33 | /** |
34 | * @brief The GrassCover class specifies the limiting effect of ground vegetation (grasses, herbs) |
||
35 | * on the regeneration success of the tree species. |
||
36 | * The GrassCover model is very simple and operates on a 2x2m grain. |
||
37 | */ |
||
38 | class GrassCover |
||
39 | { |
||
40 | public: |
||
41 | GrassCover(); |
||
42 | ~GrassCover(); |
||
43 | void setup(); |
||
1068 | werner | 44 | // the number of steps used internally |
1082 | werner | 45 | static const int GRASSCOVERSTEPS = 32000; |
1068 | werner | 46 | |
1062 | werner | 47 | /// set for all the pixels (LIFPixels) the corresponding grass value (in percent: 0-100) |
48 | void setInitialValues(const QVector<float*> &LIFpixels, const int percent); |
||
49 | |||
50 | /// main function (growth/die-off of grass cover) |
||
51 | void execute(); |
||
52 | |||
53 | // access |
||
54 | /// returns 'true' if the module is enabled |
||
55 | bool enabled() const { return mEnabled; } |
||
56 | /// |
||
1068 | werner | 57 | double effect(grass_grid_type level) const { return mEffect[level]; } |
58 | double cover(const grass_grid_type &data) const {return mType == Pixel? data : data/double(GRASSCOVERSTEPS-1); } |
||
59 | |||
60 | |||
61 | /// main function |
||
62 | double regenerationInhibition(QPoint &lif_index) const { |
||
1157 | werner | 63 | |
1068 | werner | 64 | if (mType==Pixel) |
1157 | werner | 65 | // -1: off, out of project area, 0: off, ready to get grassy again, 1: off (waiting for LIF threshold), >1 on, counting down |
66 | return mGrid.constValueAtIndex(lif_index)>1 ? 1. : 0.; |
||
1068 | werner | 67 | |
1157 | werner | 68 | // type continuous |
69 | return mEnabled?effect(mGrid.constValueAtIndex(lif_index)) : 0.; |
||
70 | } |
||
71 | |||
1062 | werner | 72 | /// retrieve the grid of current grass cover |
1068 | werner | 73 | const Grid<grass_grid_type> &grid() { return mGrid; } |
1062 | werner | 74 | private: |
1068 | werner | 75 | enum GrassAlgorithmType { Invalid, Continuous, Pixel }; |
76 | GrassAlgorithmType mType; |
||
1062 | werner | 77 | bool mEnabled; ///< is module enabled? |
78 | Expression mGrassPotential; ///< function defining max. grass cover [0..1] as function of the LIF pixel value |
||
79 | Expression mGrassEffect; ///< equation giving probability of *prohibiting* regeneration as a function of grass level [0..1] |
||
80 | int mMaxTimeLag; ///< maximum duration (years) from 0 to full cover |
||
1064 | werner | 81 | double mEffect[GRASSCOVERSTEPS]; ///< effect lookup table |
1068 | werner | 82 | Grid<grass_grid_type> mGrid; ///< grid covering state of grass cover (in integer steps) |
1062 | werner | 83 | int mGrowthRate; ///< max. annual growth rate of herbs and grasses (in 1/256th) |
1068 | werner | 84 | grass_grid_type mMaxState; ///< potential at lif=1 |
85 | |||
86 | RandomCustomPDF mPDF; ///< probability density function defining the life time of grass-pixels |
||
87 | float mGrassLIFThreshold; ///< if LIF>threshold, then the grass is considered as occupatied by grass |
||
1062 | werner | 88 | GrassCoverLayers *mLayers; // visualization |
89 | }; |
||
90 | |||
91 | /** Helper class manage and visualize data layers. |
||
92 | |||
93 | */ |
||
1068 | werner | 94 | class GrassCoverLayers: public LayeredGrid<grass_grid_type> { |
1062 | werner | 95 | public: |
1068 | werner | 96 | void setGrid(const Grid<grass_grid_type> &grid, const GrassCover *gc) { mGrid = &grid; mGrassCover=gc; } |
97 | double value(const grass_grid_type &data, const int index) const; |
||
1062 | werner | 98 | const QVector<LayeredGridBase::LayerElement> &names(); |
99 | private: |
||
100 | QVector<LayeredGridBase::LayerElement> mNames; |
||
101 | const GrassCover *mGrassCover; |
||
102 | }; |
||
103 | |||
104 | #endif // GRASSCOVER_H |