Skip to content

Commit

Permalink
mark DISU blocks VERTICES and CELL2D optional (#1580)
Browse files Browse the repository at this point in the history
Co-authored-by: mjreno <[email protected]>
  • Loading branch information
mjreno and mjreno authored Feb 6, 2024
1 parent 0e9184c commit a2a8288
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions doc/mf6io/mf6ivar/dfn/gwf-disu.dfn
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ name vertices
type recarray iv xv yv
shape (nvert)
reader urword
optional false
optional true
longname vertices data
description

Expand Down Expand Up @@ -219,7 +219,7 @@ name cell2d
type recarray icell2d xc yc ncvert icvert
shape (nodes)
reader urword
optional false
optional true
longname cell2d data
description

Expand Down
4 changes: 2 additions & 2 deletions doc/mf6io/mf6ivar/dfn/gwt-disu.dfn
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ name vertices
type recarray iv xv yv
shape (nvert)
reader urword
optional false
optional true
longname vertices data
description

Expand Down Expand Up @@ -219,7 +219,7 @@ name cell2d
type recarray icell2d xc yc ncvert icvert
shape (nodes)
reader urword
optional false
optional true
longname cell2d data
description

Expand Down
8 changes: 4 additions & 4 deletions src/Model/GroundWaterFlow/gwf3disu8idm.f90
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ module GwfDisuInputModule
'VERTICES', & ! fortran variable
'RECARRAY IV XV YV', & ! type
'NVERT', & ! shape
.true., & ! required
.false., & ! required
.false., & ! multi-record
.false., & ! preserve case
.false., & ! layered
Expand All @@ -560,7 +560,7 @@ module GwfDisuInputModule
'CELL2D', & ! fortran variable
'RECARRAY ICELL2D XC YC NCVERT ICVERT', & ! type
'NODES', & ! shape
.true., & ! required
.false., & ! required
.false., & ! multi-record
.false., & ! preserve case
.false., & ! layered
Expand Down Expand Up @@ -603,13 +603,13 @@ module GwfDisuInputModule
), &
InputBlockDefinitionType( &
'VERTICES', & ! blockname
.true., & ! required
.false., & ! required
.true., & ! aggregate
.false. & ! block_variable
), &
InputBlockDefinitionType( &
'CELL2D', & ! blockname
.true., & ! required
.false., & ! required
.true., & ! aggregate
.false. & ! block_variable
) &
Expand Down
8 changes: 4 additions & 4 deletions src/Model/GroundWaterTransport/gwt1disu1idm.f90
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ module GwtDisuInputModule
'VERTICES', & ! fortran variable
'RECARRAY IV XV YV', & ! type
'NVERT', & ! shape
.true., & ! required
.false., & ! required
.false., & ! multi-record
.false., & ! preserve case
.false., & ! layered
Expand All @@ -560,7 +560,7 @@ module GwtDisuInputModule
'CELL2D', & ! fortran variable
'RECARRAY ICELL2D XC YC NCVERT ICVERT', & ! type
'NODES', & ! shape
.true., & ! required
.false., & ! required
.false., & ! multi-record
.false., & ! preserve case
.false., & ! layered
Expand Down Expand Up @@ -603,13 +603,13 @@ module GwtDisuInputModule
), &
InputBlockDefinitionType( &
'VERTICES', & ! blockname
.true., & ! required
.false., & ! required
.true., & ! aggregate
.false. & ! block_variable
), &
InputBlockDefinitionType( &
'CELL2D', & ! blockname
.true., & ! required
.false., & ! required
.true., & ! aggregate
.false. & ! block_variable
) &
Expand Down

0 comments on commit a2a8288

Please sign in to comment.