-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue #1376 active idomain larger than zero #1377
Issue #1376 active idomain larger than zero #1377
Conversation
imod/mf6/disv.py
Outdated
idomain: array of integers (xu.UgridDataArray) | ||
Indicates the existence status of a cell. If the idomain value for a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't we use active
instead existence
throughout our code?
Edit:
Ah nvm. In model.py you added clear definitions:
1 : active
=0 : inactive
<0 : vertical passthrough
Quality Gate passedIssues Measures |
Fixes #1376
Description
This aligns the way we find active cells, consistently with MODFLOW6:
idomain > 0 is now the active domain, instead of idomain == 1. I updated some model fixtures to have idomain = 2 to see if stuff like masking works now for idomain == 2. Furthermore, I tried my best to update all docstrings.
Checklist
Issue #nr
, e.g.Issue #737