(root)/src/core/modelsettings.h - Rev 201
Rev 200 |
Rev 205 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
#ifndef MODELSETTINGS_H
#define MODELSETTINGS_H
class ModelSettings
{
public:
ModelSettings();
void loadModelSettings();
void print();
// list of settings
// general on/off switches
bool growthEnabled; ///< if false, trees will apply/read light patterns, but do not grow
bool mortalityEnabled;
// light
double lightExtinctionCoefficient; ///< "k" parameter (beer lambert) used for calc. of absorbed light on resourceUnit level
double lightExtinctionCoefficientOpacity; ///< "k" for beer lambert used for opacity of single trees
// climate
double temperatureTau; ///< "tau"-value for delayed temperature calculation acc. to Mäkela 2008
};
#endif // MODELSETTINGS_H