Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
671 | 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 | |||
276 | werner | 20 | #include "treeout.h" |
808 | werner | 21 | #include "debugtimer.h" |
276 | werner | 22 | #include "tree.h" |
23 | #include "model.h" |
||
24 | #include "resourceunit.h" |
||
25 | #include "species.h" |
||
26 | #include "expressionwrapper.h" |
||
27 | |||
28 | TreeOut::TreeOut() |
||
29 | { |
||
30 | setName("Tree Output", "tree"); |
||
31 | setDescription("Output of indivdual trees. Use the ''filter'' property to reduce amount of data (filter by resource-unit, year, species, ...).\n" \ |
||
1102 | werner | 32 | "The output is triggered after the growth of the current season. " \ |
276 | werner | 33 | "Initial values (without any growth) are output as 'startyear-1'."); |
570 | werner | 34 | columns() << OutputColumn::year() << OutputColumn::ru() << OutputColumn::id() << OutputColumn::species() |
276 | werner | 35 | << OutputColumn("id", "id of the tree", OutInteger) |
303 | werner | 36 | << OutputColumn("x", "position of the tree, x-direction (m)", OutDouble) |
37 | << OutputColumn("y", "position of the tree, y-direction (m)", OutDouble) |
||
276 | werner | 38 | << OutputColumn("dbh", "dbh (cm) of the tree", OutDouble) |
39 | << OutputColumn("height", "height (m) of the tree", OutDouble) |
||
40 | << OutputColumn("basalArea", "basal area of tree in m2", OutDouble) |
||
41 | << OutputColumn("volume_m3", "volume of tree (m3)", OutDouble) |
||
42 | << OutputColumn("leafArea_m2", "current leaf area of the tree (m2)", OutDouble) |
||
43 | << OutputColumn("foliageMass", "current mass of foliage (kg)", OutDouble) |
||
44 | << OutputColumn("woodyMass", "kg Biomass in woody department", OutDouble) |
||
45 | << OutputColumn("fineRootMass", "kg Biomass in fine-root department", OutDouble) |
||
46 | << OutputColumn("coarseRootMass", "kg Biomass in coarse-root department", OutDouble) |
||
299 | werner | 47 | << OutputColumn("lri", "LightResourceIndex of the tree (raw light index from iLand, without applying resource-unit modifications)", OutDouble) |
276 | werner | 48 | << OutputColumn("lightResponse", "light response value (including species specific response to the light level)", OutDouble) |
279 | werner | 49 | << OutputColumn("stressIndex", "scalar (0..1) indicating the stress level (see [Mortality]).", OutDouble) |
276 | werner | 50 | << OutputColumn("reserve_kg", "NPP currently available in the reserve pool (kg Biomass)", OutDouble); |
51 | |||
52 | |||
53 | } |
||
54 | |||
55 | void TreeOut::setup() |
||
56 | { |
||
57 | qDebug() << "treeout::setup() called"; |
||
58 | if (!settings().isValid()) |
||
59 | throw IException("TreeOut::setup(): no parameter section in init file!"); |
||
60 | QString filter = settings().value(".filter",""); |
||
61 | mFilter.setExpression(filter); |
||
62 | } |
||
63 | |||
64 | void TreeOut::exec() |
||
65 | { |
||
66 | AllTreeIterator at(GlobalSettings::instance()->model()); |
||
67 | DebugTimer t("TreeOut::exec()"); |
||
68 | TreeWrapper tw; |
||
69 | mFilter.setModelObject(&tw); |
||
70 | while (Tree *t=at.next()) { |
||
71 | if (!mFilter.isEmpty()) { // skip fields |
||
72 | tw.setTree(t); |
||
73 | if (!mFilter.execute()) |
||
74 | continue; |
||
75 | } |
||
570 | werner | 76 | *this << currentYear() << t->ru()->index() << t->ru()->id() << t->species()->id(); |
1102 | werner | 77 | *this << t->id() << t->position().x() << t->position().y() << t->dbh() << t->height() << t->basalArea() << t->volume(); |
276 | werner | 78 | *this << t->leafArea() << t->mFoliageMass << t->mWoodyMass << t->mFineRootMass << t->mCoarseRootMass; |
279 | werner | 79 | *this << t->lightResourceIndex() << t->mLightResponse << t->mStressIndex << t->mNPPReserve; |
276 | werner | 80 | writeRow(); |
81 | } |
||
82 | |||
83 | } |
||
84 | |||
1102 | werner | 85 | |
86 | |||
87 | TreeRemovedOut::TreeRemovedOut() |
||
88 | { |
||
89 | setName("Tree Removed Output", "treeremoved"); |
||
90 | setDescription("Output of removed indivdual trees. Use the ''filter'' property to reduce amount of data (filter by resource-unit, year, species, ...).\n" \ |
||
91 | "The output is triggered immediately when a tree is removed due to mortality or management. "); |
||
92 | columns() << OutputColumn::year() << OutputColumn::ru() << OutputColumn::id() << OutputColumn::species() |
||
93 | << OutputColumn("id", "id of the tree", OutInteger) |
||
94 | << OutputColumn("reason", "reason of removal: 0: mortality, 1: management, 2: disturbance ", OutInteger) |
||
95 | << OutputColumn("x", "position of the tree, x-direction (m)", OutDouble) |
||
96 | << OutputColumn("y", "position of the tree, y-direction (m)", OutDouble) |
||
97 | << OutputColumn("dbh", "dbh (cm) of the tree", OutDouble) |
||
98 | << OutputColumn("height", "height (m) of the tree", OutDouble) |
||
99 | << OutputColumn("basalArea", "basal area of tree in m2", OutDouble) |
||
100 | << OutputColumn("volume_m3", "volume of tree (m3)", OutDouble) |
||
101 | << OutputColumn("leafArea_m2", "current leaf area of the tree (m2)", OutDouble) |
||
102 | << OutputColumn("foliageMass", "current mass of foliage (kg)", OutDouble) |
||
103 | << OutputColumn("woodyMass", "kg Biomass in woody department", OutDouble) |
||
104 | << OutputColumn("fineRootMass", "kg Biomass in fine-root department", OutDouble) |
||
105 | << OutputColumn("coarseRootMass", "kg Biomass in coarse-root department", OutDouble) |
||
106 | << OutputColumn("lri", "LightResourceIndex of the tree (raw light index from iLand, without applying resource-unit modifications)", OutDouble) |
||
107 | << OutputColumn("lightResponse", "light response value (including species specific response to the light level)", OutDouble) |
||
108 | << OutputColumn("stressIndex", "scalar (0..1) indicating the stress level (see [Mortality]).", OutDouble) |
||
109 | << OutputColumn("reserve_kg", "NPP currently available in the reserve pool (kg Biomass)", OutDouble); |
||
110 | |||
111 | } |
||
112 | |||
113 | void TreeRemovedOut::execRemovedTree(const Tree *t, int reason) |
||
114 | { |
||
115 | if (!mFilter.isEmpty()) { // skip trees if filter is present |
||
116 | TreeWrapper tw; |
||
117 | mFilter.setModelObject(&tw); |
||
118 | tw.setTree(t); |
||
119 | if (!mFilter.execute()) |
||
120 | return; |
||
121 | } |
||
122 | |||
123 | *this << currentYear() << t->ru()->index() << t->ru()->id() << t->species()->id(); |
||
124 | *this << t->id() << reason; |
||
125 | *this << t->position().x() << t->position().y() << t->dbh() << t->height() << t->basalArea() << t->volume(); |
||
126 | *this << t->leafArea() << t->mFoliageMass << t->mWoodyMass << t->mFineRootMass << t->mCoarseRootMass; |
||
127 | *this << t->lightResourceIndex() << t->mLightResponse << t->mStressIndex << t->mNPPReserve; |
||
128 | writeRow(); |
||
129 | |||
130 | } |
||
131 | |||
132 | void TreeRemovedOut::exec() |
||
133 | { |
||
134 | // do nothing here |
||
135 | return; |
||
136 | } |
||
137 | |||
138 | void TreeRemovedOut::setup() |
||
139 | { |
||
140 | QString filter = settings().value(".filter",""); |
||
141 | mFilter.setExpression(filter); |
||
142 | Tree::setTreeRemovalOutput(this); |
||
143 | |||
144 | } |