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

Subcell-level tracking methods.

Functions/Subroutines

subroutine, public create_method_subcell_pool ()
 Create the subcell method pool. More...
 
subroutine, public destroy_method_subcell_pool ()
 Destroy the subcell method pool. More...
 

Variables

type(methodsubcellpollocktype), pointer, public method_subcell_plck => null()
 
type(methodsubcellternarytype), pointer, public method_subcell_tern => null()
 

Function/Subroutine Documentation

◆ create_method_subcell_pool()

subroutine, public methodsubcellpoolmodule::create_method_subcell_pool

Definition at line 18 of file MethodSubcellPool.f90.

19  call create_method_subcell_pollock(method_subcell_plck)
20  call create_method_subcell_ternary(method_subcell_tern)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ destroy_method_subcell_pool()

subroutine, public methodsubcellpoolmodule::destroy_method_subcell_pool

Definition at line 24 of file MethodSubcellPool.f90.

25  call method_subcell_plck%destroy()
26  deallocate (method_subcell_plck)
27  call method_subcell_tern%destroy()
28  deallocate (method_subcell_tern)
Here is the caller graph for this function:

Variable Documentation

◆ method_subcell_plck

type(methodsubcellpollocktype), pointer, public methodsubcellpoolmodule::method_subcell_plck => null()

Definition at line 12 of file MethodSubcellPool.f90.

12  type(MethodSubcellPollockType), pointer, public :: method_subcell_plck => null()

◆ method_subcell_tern

type(methodsubcellternarytype), pointer, public methodsubcellpoolmodule::method_subcell_tern => null()

Definition at line 13 of file MethodSubcellPool.f90.

13  type(MethodSubcellTernaryType), pointer, public :: method_subcell_tern => null()