MODFLOW 6  version 6.7.0.dev3
USGS Modular Hydrologic Model
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 31 of file GwfNpfOptions.f90.

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

◆ 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 49 of file GwfNpfOptions.f90.

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