Hello, I try to investigate how the quality of the irrigation strategy with constant depth but whenever I specify depth the final yield and seasonal irrigation is still zero. I looked over the code for AquaCrop and found that the allowalbe keys in the IrrMangagemntClass did not include depth i.e.
if IrrMethod == 5:
self.depth = 0
allowed_keys = {'name','WetSurf','AppEff','MaxIrr','MaxIrrSeason','SMT','IrrInterval','NetIrrSMT','Schedule'}
self.__dict__.update((k, v) for k, v in kwargs.items() if k in allowed_keys)
Is this a error in the original code or why is it not working?