MODFLOW 6  version 6.5.0.dev2
MODFLOW 6 Code Documentation
gwfnpfoptionsmodule Module Reference

Data Types

type  gwfnpfoptionstype
 Data structure and helper methods for passing NPF options into npf_df, as an alternative to reading those from file. More...
 

Functions/Subroutines

subroutine construct (this)
 construct the input options, set variables to their defaults More...
 
subroutine destroy (this)
 cleans up More...
 

Function/Subroutine Documentation

◆ construct()

subroutine gwfnpfoptionsmodule::construct ( class(gwfnpfoptionstype), intent(inout)  this)
Parameters
[in,out]thisthe NPF options, as in the input OPTIONS block

Definition at line 30 of file GwfNpfOptions.f90.

31  class(GwfNpfOptionsType), intent(inout) :: this !< the NPF options, as in the input OPTIONS block
32 
33  this%icellavg = 0
34  this%ithickstrt = 0
35  this%iperched = 0
36  this%ivarcv = 0
37  this%idewatcv = 0
38  this%irewet = 0
39  this%wetfct = done
40  this%iwetit = 1
41  this%ihdwet = 0
42 

◆ destroy()

subroutine gwfnpfoptionsmodule::destroy ( class(gwfnpfoptionstype), intent(inout)  this)
private
Parameters
[in,out]thisthe NPF options, as in the input OPTIONS block

Definition at line 47 of file GwfNpfOptions.f90.

48  class(GwfNpfOptionsType), intent(inout) :: this !< the NPF options, as in the input OPTIONS block
49 
50  ! nothing to be done here for now...
51