Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1033 | 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 | ********************************************************************************************/ |
||
810 | werner | 19 | #include "global.h" |
20 | #include "fomewrapper.h" |
||
21 | |||
22 | #include "activity.h" |
||
813 | werner | 23 | #include "fmstand.h" |
24 | #include "fmunit.h" |
||
934 | werner | 25 | #include "forestmanagementengine.h" |
26 | #include "fmstp.h" |
||
905 | werner | 27 | namespace ABE { |
810 | werner | 28 | |
29 | // definition of variables |
||
30 | // (1) variables of activites |
||
31 | |||
32 | // (2) stand variables |
||
934 | werner | 33 | QStringList standVarList=QStringList() << "basalArea" << "age" << "absoluteAge" << "nspecies" |
34 | << "volume" << "dbh" << "height" |
||
1088 | werner | 35 | << "annualIncrement" << "elapsed" << "topHeight" << "area" << "year"; |
810 | werner | 36 | |
811 | werner | 37 | // (3) site variables |
38 | QStringList siteVarList=QStringList() << "annualIncrement" << "harvestMode" << "U"; |
||
869 | werner | 39 | int siteVarListOffset = standVarList.count(); // stand vars start here... |
811 | werner | 40 | |
41 | |||
810 | werner | 42 | // finally: combine all varibles: |
43 | QStringList allVarList; |
||
44 | |||
45 | // setup the variable names |
||
46 | // we use "__" internally (instead of .) |
||
47 | void FOMEWrapper::buildVarList() |
||
48 | { |
||
49 | allVarList.clear(); |
||
50 | |||
51 | foreach(QString var, standVarList) |
||
52 | allVarList.append(QString("stand__%1").arg(var)); |
||
811 | werner | 53 | |
54 | foreach(QString var, siteVarList) |
||
55 | allVarList.append(QString("site__%1").arg(var)); |
||
810 | werner | 56 | } |
57 | |||
58 | |||
59 | const QStringList FOMEWrapper::getVariablesList() |
||
60 | { |
||
61 | if (allVarList.isEmpty()) |
||
62 | buildVarList(); |
||
63 | return allVarList; |
||
64 | } |
||
65 | |||
66 | double FOMEWrapper::value(const int variableIndex) |
||
67 | { |
||
68 | // dispatch |
||
811 | werner | 69 | if (variableIndex > siteVarListOffset) |
70 | return valueSite(variableIndex - siteVarListOffset); |
||
71 | |||
810 | werner | 72 | |
869 | werner | 73 | return valueStand(variableIndex); |
810 | werner | 74 | } |
75 | |||
76 | |||
77 | |||
78 | double FOMEWrapper::valueStand(const int variableIndex) |
||
79 | { |
||
929 | werner | 80 | //<< "basalArea" << "age" << "absoluteAge" << "speciesCount" << "volume" << dbh << height |
810 | werner | 81 | switch (variableIndex) { |
902 | werner | 82 | case 0: return mStand->basalArea(); // "basalArea" |
83 | case 1: return mStand->age(); // mean age, "age" |
||
84 | case 2: return mStand->absoluteAge(); // years since begin of rotation, "absoluteAge" |
||
85 | case 3: return mStand->nspecies(); // species richness, "nspecies" |
||
86 | case 4: return mStand->volume(); // total standing volume, m3/ha, "volume" |
||
929 | werner | 87 | case 5: return mStand->dbh(); // mean dbh |
88 | case 6: return mStand->height(); // "height" (m) |
||
934 | werner | 89 | case 7: return mStand->meanAnnualIncrementTotal(); // annual increment (since beginning of the rotation) m3/ha |
90 | case 8: return ForestManagementEngine::instance()->currentYear() - mStand->lastExecution(); // years since last execution of an activity for the stand (yrs) |
||
1059 | werner | 91 | case 9: return mStand->topHeight(); // top height (m) |
92 | case 10: return mStand->area(); // stand area (ha) |
||
1088 | werner | 93 | case 11: return GlobalSettings::instance()->currentYear(); // the current year |
810 | werner | 94 | default: return 0; |
95 | } |
||
96 | } |
||
811 | werner | 97 | |
98 | double FOMEWrapper::valueSite(const int variableIndex) |
||
99 | { |
||
100 | switch (variableIndex) { |
||
934 | werner | 101 | case 0: return mStand->unit()->annualIncrement(); // annualIncrement |
942 | werner | 102 | case 2: return mStand->U(); // just testing |
811 | werner | 103 | default: return 0; |
104 | } |
||
105 | } |
||
870 | werner | 106 | |
107 | } // namespace |