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

Model-level tracking methods.

Functions/Subroutines

subroutine, public create_method_pool ()
 Create the method pool. More...
 
subroutine, public destroy_method_pool ()
 Destroy the method pool. More...
 

Variables

type(methoddistype), pointer, public method_dis => null()
 
type(methoddisvtype), pointer, public method_disv => null()
 

Function/Subroutine Documentation

◆ create_method_pool()

subroutine, public methodpoolmodule::create_method_pool

Definition at line 17 of file MethodPool.f90.

18  call create_method_dis(method_dis)
19  call create_method_disv(method_disv)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ destroy_method_pool()

subroutine, public methodpoolmodule::destroy_method_pool

Definition at line 23 of file MethodPool.f90.

24  call method_dis%destroy()
25  deallocate (method_dis)
26  call method_disv%destroy()
27  deallocate (method_disv)
Here is the caller graph for this function:

Variable Documentation

◆ method_dis

type(methoddistype), pointer, public methodpoolmodule::method_dis => null()

Definition at line 11 of file MethodPool.f90.

11  type(MethodDisType), pointer, public :: method_dis => null()

◆ method_disv

type(methoddisvtype), pointer, public methodpoolmodule::method_disv => null()

Definition at line 12 of file MethodPool.f90.

12  type(MethodDisvType), pointer, public :: method_disv => null()