DrylandEcology / STEPWAT2

folder
4 stars 5 forks source link

Update rate of dispersal calculation based on maximum height (HMAX) instead of actual height of the tallest plant #505

Closed kpalmqui closed 3 years ago

kpalmqui commented 3 years ago

Current implementation:

float _rateOfDispersal(float PMD, float height, float maxDistance) {
       return log(PMD) * height / maxDistance;
 }

Proposed implementation:

float _rateOfDispersal(float PMD, float maxHeight, float maxDistance) {
return (log(PMD) * maxHeight) / maxDistance;
}
kpalmqui commented 3 years ago

kpalmqui added a commit that referenced this issue 35 seconds ago @kpalmqui Calculation of rate of dispersal now based on maximum height, instead… … deb44ad … of actual height of the largest individual, issue #507

kpalmqui commented 3 years ago

resolved by above.