Skip to content

Commit

Permalink
I erase the 1000 from the ponded evaporation
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas998 committed Apr 23, 2020
1 parent c1fff59 commit 14054bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/equations.c
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ void TopLayerHillslope_extras(double t, const double * const y_i, unsigned int d
double Corr = s_p + s_t / S_L + s_s / (h_b - S_L);
if (e_pot > 0.0 && Corr > 1e-12)
{
e_p = s_p * 1e3 * e_pot / Corr;
e_p = s_p * e_pot / Corr;
e_t = s_t / S_L * e_pot / Corr;
e_s = s_s / (h_b - S_L) * e_pot / Corr;
}
Expand Down

0 comments on commit 14054bf

Please sign in to comment.