Skip to content

Commit 4909f7f

Browse files
authored
Update Exercise2.ipynb
emergency fixes
1 parent 88992c4 commit 4909f7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/1_modelling_intro_HBV/Exercise2.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
" else:\n",
9797
" # Evaporation only when there is no rainfall\n",
9898
" Pe_dt = np.maximum(0, (Si[i] - I_max) / dt) #is zero, because of no rainfall\n",
99-
" Ei_dt[i] = np.minimum(Epdt, Si[i] / dt)\n",
99+
" Ei_dt[i] = np.minimum(Ep_dt, Si[i] / dt)\n",
100100
" Si[i] = Si[i] - Pe_dt - Ei_dt[i]\n",
101101
" \n",
102102
" if i < t_max-1:\n",

0 commit comments

Comments
 (0)