The SCRAPPLE documentation calls for the ground slope map to consist of "integer values representing percent slope on the
ground", but the function to calculate effective wind speed converts from degrees to radians rather than percent to radians:
double slopeRadians = (double)SiteVars.GroundSlope[site] / 180.0 * Math.PI; //convert from Degrees to Radians
Apologies if the percent to degree conversion is made elsewhere and I missed it.
The SCRAPPLE documentation calls for the ground slope map to consist of "integer values representing percent slope on the ground", but the function to calculate effective wind speed converts from degrees to radians rather than percent to radians:
double slopeRadians = (double)SiteVars.GroundSlope[site] / 180.0 * Math.PI; //convert from Degrees to Radians
Apologies if the percent to degree conversion is made elsewhere and I missed it.
Cheers, Thomas Estabrook