MODFLOW 6  version 6.5.0.dev2
MODFLOW 6 Code Documentation
MethodCellPool.f90
Go to the documentation of this file.
1 !> @brief Cell-level tracking methods.
3 
8  implicit none
9 
10  private
11  public :: create_method_cell_pool
12  public :: destroy_method_cell_pool
13 
14  type(methodcellpollocktype), pointer, public :: method_cell_plck => null()
15  type(methodcellpollockquadtype), pointer, public :: method_cell_quad => null()
16  type(methodcellternarytype), pointer, public :: method_cell_tern => null()
17  type(methodcellpasstobottype), pointer, public :: method_cell_ptb => null()
18 
19 contains
20 
21  !> @brief Create the cell method pool
27  end subroutine create_method_cell_pool
28 
29  !> @brief Destroy the cell method pool
31  call method_cell_plck%destroy()
32  deallocate (method_cell_plck)
33  call method_cell_quad%destroy()
34  deallocate (method_cell_quad)
35  call method_cell_tern%destroy()
36  deallocate (method_cell_tern)
37  call method_cell_ptb%destroy()
38  deallocate (method_cell_ptb)
39  end subroutine destroy_method_cell_pool
40 
41 end module methodcellpoolmodule
subroutine, public create_method_cell_ptb(method)
Create a new tracking method.
procedure subroutine, public create_method_cell_pollock(method)
Create a tracking method.
procedure subroutine, public create_method_cell_quad(method)
Create a new tracking method.
Cell-level tracking methods.
type(methodcellpollocktype), pointer, public method_cell_plck
type(methodcellpasstobottype), pointer, public method_cell_ptb
subroutine, public create_method_cell_pool()
Create the cell method pool.
type(methodcellpollockquadtype), pointer, public method_cell_quad
subroutine, public destroy_method_cell_pool()
Destroy the cell method pool.
type(methodcellternarytype), pointer, public method_cell_tern
procedure subroutine, public create_method_cell_ternary(method)
Create a tracking method.