Subversion Repositories public iLand

Rev

Rev 189 | Rev 229 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1
 
187 iland 2
/** @class ResourceUnitSpecies contains data per ResourceUnit x Species
111 Werner 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)
5
  */
6
#include "global.h"
189 iland 7
#include "resourceunitspecies.h"
111 Werner 8
 
9
#include "species.h"
189 iland 10
#include "resourceunit.h"
111 Werner 11
 
12
 
226 werner 13
void ResourceUnitSpecies::calculate()
14
{
15
    mResponse.calculate();///< calculate environmental responses per species (vpd, temperature, ...)
16
    m3PG.calculate();///< production of NPP
17
}