unreachable else branch in feddes_et_reduction
! SM >= FC
if (soil_moist >= soil_moist_FC) then
feddes_et_reduction = frac_roots
! PW < SM < FC
else if (soil_moist > wilting_point) then
feddes_et_reduction = frac_roots * (soil_moist - wilting_point) / (soil_moist_FC - wilting_point)
! SM <= PW
else
feddes_et_reduction = 0.0_dp
end if
Edited by Nicola Nadine Döring