-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(disv2d): add DISV2D grid support for SWF overland flow (#1726)
* feat(disv2d): introduce limited 2D vertex grid (for overland flow) * needs testing * add io guide docs for disv2d * msvs proj and makefile updates * remove unnecessary files
- Loading branch information
1 parent
edea4f1
commit b8bdf61
Showing
34 changed files
with
1,666 additions
and
237 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
BEGIN OPTIONS | ||
END OPTIONS | ||
|
||
BEGIN DIMENSIONS | ||
NODES 4 | ||
NVERT 9 | ||
END DIMENSIONS | ||
|
||
BEGIN GRIDDATA | ||
bottom | ||
CONSTANT 0.0 | ||
END GRIDDATA | ||
|
||
BEGIN VERTICES | ||
1 0.0 0.0 | ||
2 1.0 0.0 | ||
3 2.0 0.0 | ||
4 0.0 1.0 | ||
5 1.0 1.0 | ||
6 2.0 1.0 | ||
7 0.0 2.0 | ||
8 1.0 2.0 | ||
9 2.0 2.0 | ||
END VERTICES | ||
|
||
BEGIN CELL2D | ||
1 0.5 0.5 4 1 2 5 4 | ||
2 1.5 0.5 4 2 3 6 5 | ||
3 0.5 1.5 4 4 5 8 7 | ||
4 1.5 1.5 4 5 6 9 8 | ||
END CELL2D |
Oops, something went wrong.