SORTIE Core C++ Documentation
|
This class calculates a crowding effect using the function: More...
#include <CrowdingEffectTempDep.h>
Public Member Functions | |
clCrowdingEffectTempDep () | |
Constructor. More... | |
~clCrowdingEffectTempDep () | |
Destructor. More... | |
double | CalculateCrowdingEffect (clTree *p_oTree, const float &fDiam, const clNCITermBase::ncivals nci, const int &iSpecies) |
Calculates crowding effect. More... | |
void | DoSetup (clTreePopulation *p_oPop, clBehaviorBase *p_oNCI, clNCIBehaviorBase *p_oNCIBase, xercesc::DOMElement *p_oElement) |
Does setup. More... | |
Public Member Functions inherited from clCrowdingEffectBase | |
clCrowdingEffectBase () | |
Constructor. More... | |
virtual | ~clCrowdingEffectBase () |
Destructor. More... | |
virtual void | PreCalcs (clTreePopulation *p_oPop) |
Performs calculations like either clGrowthBase::PreGrowthCalcs or clMortalityBase::PreMortCalcs. More... | |
bool | DoesRequireTargetDiam () |
Protected Attributes | |
clPlot * | mp_oPlot |
Pointer to the plot object, so we can get the temperature. More... | |
double * | mp_fC |
Crowding effect slope. More... | |
double * | mp_fD |
Crowding effect steepness. More... | |
double * | mp_fX0 |
X0 in Crowding Effect equation above. More... | |
double * | mp_fXb |
Xb in Crowding Effect equation above. More... | |
double * | mp_fGamma |
Size sensitivity to NCI parameter. More... | |
Protected Attributes inherited from clCrowdingEffectBase | |
bool | m_bRequiresTargetDiam |
Whether or not this effect depends on a target diameter being available. More... | |
bool | m_b2ValNCI |
Whether it's a two-value NCI. More... | |
This class calculates a crowding effect using the function:
Alternately, this can use NCI behaviors returning 2 values, in which case the format is
clCrowdingEffectTempDep::clCrowdingEffectTempDep | ( | ) |
Constructor.
clCrowdingEffectTempDep::~clCrowdingEffectTempDep | ( | ) |
Destructor.
|
virtual |
Calculates crowding effect.
p_oTree | Tree for which to calculate crowding effect. |
fDiam | Diameter of tree. |
nci | NCI term. |
iSpecies | Species for which to calculate effect. |
Implements clCrowdingEffectBase.
|
virtual |
Does setup.
p_oPop | Tree population. |
p_oNCI | NCI behavior object. |
p_oNCIBase | NCI parent behavior object. |
p_oElement | Root element of the behavior. |
Implements clCrowdingEffectBase.
|
protected |
Crowding effect slope.
C in Crowding Effect equation above. Array sized number of species.
|
protected |
Crowding effect steepness.
D in Crowding Effect equation above. Array sized number of species.
|
protected |
Size sensitivity to NCI parameter.
γ in Crowding Effect equation above. Array sized number of species.
|
protected |
X0 in Crowding Effect equation above.
Array sized number of species.
|
protected |
Xb in Crowding Effect equation above.
Array sized number of species.
|
protected |
Pointer to the plot object, so we can get the temperature.