Skip to content

Commit

Permalink
revert to original snow albedo
Browse files Browse the repository at this point in the history
  • Loading branch information
gaobhub committed Jun 28, 2023
1 parent 9387815 commit 735ab3d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,12 @@ double
CalcAlbedoSnow(double density_snow)
{
double AlSnow;
// 432.23309912785146
if (density_snow <= 432.23309912785146) {
AlSnow = 1.0 - 0.247 * std::pow(0.16 + 110 * std::pow(density_snow / 1000, 4), 0.5);
} else {
AlSnow = 0.6 - density_snow / 4600;
}
return AlSnow + 0.07;
return AlSnow;
}

double
Expand Down

0 comments on commit 735ab3d

Please sign in to comment.