DrylandEcology / STEPWAT2

folder
4 stars 5 forks source link

Update equation that calculates probability of dispersal in gridded mode #506

Closed kpalmqui closed 3 years ago

kpalmqui commented 3 years ago

Current implementation:

float _probabilityOfDispersal(float rate, float height, float distance) {
       return exp(rate / sqrt(height)) * distance;
}

Proposed implementation:

float _probabilityOfDispersal(float rate, float height, float distance) {
  return exp(rate * distance/ height);
}
kpalmqui commented 3 years ago

resolved by ee338a4e2f4aaa7ac183660be53a7a44609de443