-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dis2d): introduce limited support for a 2D structured grid (for …
…overland flow) (#2131) * This first PR doesn't really do anything, except define model shapes and cellids for dis2d * No testing yet * A modelgrid for this discretization type has not been addressed yet * Unclear what type of plotting and export to support
- Loading branch information
1 parent
ed262db
commit 18014af
Showing
3 changed files
with
51 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,4 @@ class DiscretizationType(Enum): | |
DISV = 2 | ||
DISU = 3 | ||
DISL = 4 | ||
DIS2D = 5 |