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
When loading an existing transient Modflow 6 model (confined layers) in Flopy, using the option verify_data=True, the check_storage definition throws an error TypeError: '<' not supported between instances of 'NoneType' and 'int' at line 424. This is because the specific yield package is not defined due to the simulation being fully confined.
It seems that, in line 383 (pakbase.py, if "laytyp" in self.dict:), skip_sy_check is not set to true due to "laytyp" not existing in an modflow 6 simulation. It therefore always checks whether SY exists, even if the simulation only contains confined layers.
The text was updated successfully, but these errors were encountered:
Hi,
When loading an existing transient Modflow 6 model (confined layers) in Flopy, using the option verify_data=True, the check_storage definition throws an error TypeError: '<' not supported between instances of 'NoneType' and 'int' at line 424. This is because the specific yield package is not defined due to the simulation being fully confined.
It seems that, in line 383 (pakbase.py, if "laytyp" in self.dict:), skip_sy_check is not set to true due to "laytyp" not existing in an modflow 6 simulation. It therefore always checks whether SY exists, even if the simulation only contains confined layers.
The text was updated successfully, but these errors were encountered: