Skip to content

Commit 16c6b6a

Browse files
mjrenomjreno
authored andcommitted
mark gridded array input packages as dev feature
1 parent 87f8535 commit 16c6b6a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Utilities/Idm/mf6blockfile/IdmMf6File.f90

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ subroutine dynamic_create_loader(this)
271271
use GridArrayLoadModule, only: GridArrayLoadType
272272
use ListLoadModule, only: ListLoadType
273273
use Mf6FileStoInputModule, only: StoInputType
274+
use DevFeatureModule, only: dev_feature
274275
class(Mf6FileDynamicPkgLoadType), intent(inout) :: this
275276
class(ListLoadType), pointer :: list_loader
276277
class(GridArrayLoadType), pointer :: arrgrid_loader
@@ -285,6 +286,10 @@ subroutine dynamic_create_loader(this)
285286
allocate (arrlayer_loader)
286287
this%rp_loader => arrlayer_loader
287288
else if (this%readarray_grid) then
289+
call dev_feature(trim(this%mf6_input%subcomponent_type)// &
290+
' package input is still under development, install the &
291+
&nightly build or compile from source with IDEVELOPMODE = 1.', &
292+
this%iout)
288293
allocate (arrgrid_loader)
289294
this%rp_loader => arrgrid_loader
290295
else

0 commit comments

Comments
 (0)