Subversion Repositories public iLand

Rev

Rev 460 | Rev 470 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 460 Rev 467
Line 31... Line 31...
31
    Expression heightGrowthPotential; ///< formula that expresses height growth potential
31
    Expression heightGrowthPotential; ///< formula that expresses height growth potential
32
    int maxStressYears; ///< trees die, if they are "stressed" for this number of consectuive years
32
    int maxStressYears; ///< trees die, if they are "stressed" for this number of consectuive years
33
    double stressThreshold; ///< tree is considered as "stressed" if f_env_yr is below that threhold
33
    double stressThreshold; ///< tree is considered as "stressed" if f_env_yr is below that threhold
34
    float hdSapling; ///< fixed height-diameter ratio used for saplings
34
    float hdSapling; ///< fixed height-diameter ratio used for saplings
35
    double ReineckesR; ///< Reineckes R, i.e. maximum stem number for a dg of 25cm
35
    double ReineckesR; ///< Reineckes R, i.e. maximum stem number for a dg of 25cm
36
    SaplingGrowthParameters(): maxStressYears(3), stressThreshold(0.1), hdSapling(80.f), ReineckesR(1450.) {}
-
 
-
 
36
    double referenceRatio; ///< f_ref (eq. 3) -> ratio reference site / optimum site
-
 
37
    SaplingGrowthParameters(): maxStressYears(3), stressThreshold(0.1), hdSapling(80.f), ReineckesR(1450.), referenceRatio(1.) {}
37
};
38
};
38
39
39
40
40
class Species
41
class Species
41
{
42
{