-
Notifications
You must be signed in to change notification settings - Fork 6
Description
When i add a lake to a model using the following parameters:
nlmod.gwf.lake_from_gdf(gwf, gdf_lakes_grid, ds, boundname_column="id", recharge=False, surfdep=0.05, mover = True)
I expected the RCH package to still include the recharge for the lake cells, as i have the reachrge in de lake on False and there is also still values in ds['recharge'] for the model cells that overlap the lakes after running the model. When i look in de modflow RCH input files though, there is no reacharge, only 0's for the cells that overlap the lakes. i think this should not be the case.
When i change the recharge keyword to True, the lake gets recharge, the RCH package also does not and the ds['rechage'] now also does not have values for the cells overlapping the lakes. So then it works as you would expect...