SORTIE Core C++ Documentation
|
Calculates the size effect with a compound exponential function. More...
#include <SizeEffectCompoundExponential.h>
Public Member Functions | |
clSizeEffectCompoundExponential () | |
Constructor. More... | |
~clSizeEffectCompoundExponential () | |
Destructor. More... | |
double | CalculateSizeEffect (clTree *p_oTree, const float &fDiam) |
Calculates size effect. More... | |
void | DoSetup (clTreePopulation *p_oPop, clBehaviorBase *p_oNCI, xercesc::DOMElement *p_oElement) |
Does any desired setup. More... | |
Public Member Functions inherited from clSizeEffectBase | |
virtual void | PreCalcs (clTreePopulation *p_oPop) |
Performs calculations like either clGrowthBase::PreGrowthCalcs or clMortalityBase::PreMortCalcs. More... | |
virtual | ~clSizeEffectBase () |
Destructor. More... | |
Protected Attributes | |
double * | mp_fA |
a in Size Effect equation above. More... | |
double * | mp_fB |
b in Size Effect equation above. More... | |
double * | mp_fC |
c in Size Effect equation above. More... | |
double * | mp_fD |
d in Size Effect equation above. More... | |
Calculates the size effect with a compound exponential function.
Size Effect is calculated as:
where diam is the diameter of the target tree, in cm (d10 for seedlings, DBH for everyone else); and a, b, c, and d are parameters.
clSizeEffectCompoundExponential::clSizeEffectCompoundExponential | ( | ) |
Constructor.
clSizeEffectCompoundExponential::~clSizeEffectCompoundExponential | ( | ) |
Destructor.
|
virtual |
Calculates size effect.
This is bounded between 0 and 1.
p_oTree | Tree for which to calculate size effect. |
fDiam | Diameter of tree. Diameter at 10 cm for seedlings, DBH for all other types. |
Implements clSizeEffectBase.
|
virtual |
Does any desired setup.
p_oPop | Tree population. |
p_oNCI | NCI behavior object. |
p_oElement | Root element of the behavior. |
Implements clSizeEffectBase.
|
protected |
a in Size Effect equation above.
Array is sized number of species.
|
protected |
b in Size Effect equation above.
Array is sized number of species.
|
protected |
c in Size Effect equation above.
Array is sized number of species.
|
protected |
d in Size Effect equation above.
Array is sized number of species.