Subversion Repositories public iLand

Rev

Rev 229 | Rev 235 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 229 Rev 230
1
Redirecting to URL 'https://iland.boku.ac.at/svn/iland/tags/release_1.0/src/core/resourceunitspecies.cpp':
1
Redirecting to URL 'https://iland.boku.ac.at/svn/iland/tags/release_1.0/src/core/resourceunitspecies.cpp':
2
/** @class ResourceUnitSpecies contains data per ResourceUnit x Species
2
/** @class ResourceUnitSpecies contains data per ResourceUnit x Species
3
    Data stored is either statistical (i.e. number of trees per species) or used
3
    Data stored is either statistical (i.e. number of trees per species) or used
4
    within the model (e.g. fraction of utilizable Radiation)
4
    within the model (e.g. fraction of utilizable Radiation)
5
  */
5
  */
6
#include "global.h"
6
#include "global.h"
7
#include "resourceunitspecies.h"
7
#include "resourceunitspecies.h"
8
8
9
#include "species.h"
9
#include "species.h"
10
#include "resourceunit.h"
10
#include "resourceunit.h"
11
11
12
12
13
void ResourceUnitSpecies::calculate()
13
void ResourceUnitSpecies::calculate()
14
{
14
{
15
    mResponse.calculate();///< calculate environmental responses per species (vpd, temperature, ...)
15
    mResponse.calculate();///< calculate environmental responses per species (vpd, temperature, ...)
16
    m3PG.calculate();///< production of NPP
16
    m3PG.calculate();///< production of NPP
17
}
-
 
18
-
 
19
void ResourceUnitSpecies::print() const
-
 
20
{
-
 
21
    qDebug() << "resourceunitspecies" << this << "co2response" << mResponse.co2Response() << "species" << mSpecies->id();
-
 
22
}
17
}
23
 
18