You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
soil_erosion__eurosem_exponent has a default value of 2.0. However in the original equation (that uses a default value of 2.0) for soil detachment by raindrop impact this parameter has unit $\mathrm{mm}^{ -1}$ (multiplied by water depth [mm]), and in Wflow the unit of water depth is in [m]. This needs fixing in the release/v1.0 branch and will be fixed in Use SI units for internal computations #735.
The multiplication with 0.001 below in the function rainfall_erosion_eurosem is not required based on the units:
#Total kinetic energy by rainfall [J/m2]
ketot = (rddir * kedir + rdleaf * keleaf) * 0.001
Based on the first point, the soil erosion for EUROSEM is now much higher compared to ANSWERS (function rainfall_erosion_answers). Need to check if units for the ANSWERS parameters are correct, especially the usle_k parameter that is now provided in metric units.
soil_erosion__eurosem_exponenthas a default value of 2.0. However in the original equation (that uses a default value of 2.0) for soil detachment by raindrop impact this parameter has unitrelease/v1.0branch and will be fixed in Use SI units for internal computations #735.The multiplication with 0.001 below in the
function rainfall_erosion_eurosemis not required based on the units:This also needs fixing in the
release/v1.0branch and will be fixed in Use SI units for internal computations #735.Based on the first point, the soil erosion for EUROSEM is now much higher compared to ANSWERS (
function rainfall_erosion_answers). Need to check if units for the ANSWERS parameters are correct, especially theusle_kparameter that is now provided in metric units.