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 | |||
436 | werner | 20 | #include "productionout.h" |
808 | werner | 21 | #include "debugtimer.h" |
436 | werner | 22 | #include "model.h" |
23 | #include "resourceunit.h" |
||
24 | #include "species.h" |
||
25 | #include "speciesresponse.h" |
||
26 | |||
27 | ProductionOut::ProductionOut() |
||
28 | { |
||
29 | setName("Production per month, species and resource unit", "production_month"); |
||
30 | setDescription("Details about the 3PG production submodule on monthly basis and for each species and resource unit."); |
||
570 | werner | 31 | columns() << OutputColumn::year() << OutputColumn::ru() << OutputColumn::id() << OutputColumn::species() |
436 | werner | 32 | << OutputColumn("month", "month of year", OutInteger) |
33 | << OutputColumn("tempResponse", "monthly average of daily respose value temperature", OutDouble) |
||
34 | << OutputColumn("waterResponse", "monthly average of daily respose value soil water", OutDouble) |
||
35 | << OutputColumn("vpdResponse", "monthly vapour pressure deficit respose.", OutDouble) |
||
36 | << OutputColumn("co2Response", "monthly response value for ambient co2.", OutDouble) |
||
37 | << OutputColumn("nitrogenResponse", "yearly respose value nitrogen", OutDouble) |
||
802 | werner | 38 | << OutputColumn("radiation_m2", "global radiation PAR in MJ per m2 and month", OutDouble) |
39 | << OutputColumn("utilizableRadiation_m2", "utilizable PAR in MJ per m2 and month (sum of daily rad*min(respVpd,respWater,respTemp))", OutDouble) |
||
778 | werner | 40 | << OutputColumn("GPP_kg_m2", "GPP (without Aging) in kg Biomass/m2", OutDouble); |
436 | werner | 41 | |
42 | } |
||
43 | |||
44 | void ProductionOut::setup() |
||
45 | { |
||
46 | } |
||
47 | |||
48 | void ProductionOut::execute(const ResourceUnitSpecies *rus) |
||
49 | { |
||
50 | const Production3PG &prod = rus->prod3PG(); |
||
51 | const SpeciesResponse *resp = prod.mResponse; |
||
52 | for (int i=0;i<12;i++) { |
||
570 | werner | 53 | *this << currentYear() << rus->ru()->index() << rus->ru()->id() << rus->species()->id(); |
436 | werner | 54 | *this << (i+1); // month |
55 | // responses |
||
56 | *this << resp->tempResponse()[i] |
||
57 | << resp->soilWaterResponse()[i] |
||
58 | << resp->vpdResponse()[i] |
||
59 | << resp->co2Response()[i] |
||
60 | << resp->nitrogenResponse() |
||
61 | << resp->globalRadiation()[i] |
||
62 | << prod.mUPAR[i] |
||
63 | << prod.mGPP[i]; |
||
64 | writeRow(); |
||
65 | } |
||
66 | } |
||
67 | |||
68 | void ProductionOut::exec() |
||
69 | { |
||
70 | DebugTimer t("ProductionOut"); |
||
71 | Model *m = GlobalSettings::instance()->model(); |
||
72 | |||
73 | foreach(ResourceUnit *ru, m->ruList()) { |
||
574 | werner | 74 | if (ru->id()==-1) |
75 | continue; // do not include if out of project area |
||
76 | |||
455 | werner | 77 | foreach(const ResourceUnitSpecies *rus, ru->ruSpecies()) { |
78 | execute(rus); |
||
436 | werner | 79 | } |
80 | } |
||
81 | } |