iLand
modelsettings.h
Go to the documentation of this file.
1/********************************************************************************************
2** iLand - an individual based forest landscape and disturbance model
3** http://iland-model.org
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
20#ifndef MODELSETTINGS_H
21#define MODELSETTINGS_H
22#include <QtCore>
23#include "expression.h"
25{
26public:
28 void loadModelSettings();
29 void print();
30 // list of settings
31 // general on/off switches
36 // light
39 bool torusMode;
40 // climate
42 // water
43 double airDensity; // density of air [kg / m3]
44 double laiThresholdForClosedStands; // for calculation of max-canopy-conductance
45 double boundaryLayerConductance; // 3pg-evapotranspiration
46 // nitrogen and soil model
48 // site variables (for now!)
49 double latitude;
50 // production
51 double epsilon;
53
54
55};
56
57#endif // MODELSETTINGS_H
Definition: modelsettings.h:25
bool mortalityEnabled
if false, no natural (intrinsic+stress) mortality occurs
Definition: modelsettings.h:33
double lightExtinctionCoefficientOpacity
"k" for beer lambert used for opacity of single trees
Definition: modelsettings.h:38
bool useDynamicAvailableNitrogen
if true, iLand utilizes the dynamically calculated NAvailable
Definition: modelsettings.h:47
bool regenerationEnabled
if true, seed dispersal, establishment, ... is modelled
Definition: modelsettings.h:34
void loadModelSettings()
Definition: modelsettings.cpp:28
bool torusMode
special mode that treats each resource unit as a "torus" (light calculation, seed distribution)
Definition: modelsettings.h:39
double latitude
latitude of project site in radians
Definition: modelsettings.h:49
bool growthEnabled
if false, trees will apply/read light patterns, but do not grow
Definition: modelsettings.h:32
ModelSettings()
Definition: modelsettings.cpp:24
double laiThresholdForClosedStands
Definition: modelsettings.h:44
bool usePARFractionBelowGroundAllocation
if true, the 'correct' version of the calculation of belowground allocation is used (default=true)
Definition: modelsettings.h:52
double temperatureTau
"tau"-value for delayed temperature calculation acc. to Maekela 2008
Definition: modelsettings.h:41
double airDensity
Definition: modelsettings.h:43
double boundaryLayerConductance
Definition: modelsettings.h:45
double lightExtinctionCoefficient
"k" parameter (beer lambert) used for calc. of absorbed light on resourceUnit level
Definition: modelsettings.h:37
double epsilon
maximum light use efficency used for the 3PG model
Definition: modelsettings.h:51
void print()
Definition: modelsettings.cpp:48
bool carbonCycleEnabled
if true, snag dynamics and soil CN cycle is modelled
Definition: modelsettings.h:35