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

Data Types

type  cellpolytype
 

Functions/Subroutines

subroutine, public create_cell_poly (cell)
 Create a new polygonal cell. More...
 
subroutine destroy_cell_poly (this)
 Destroy the polygonal cell. More...
 

Function/Subroutine Documentation

◆ create_cell_poly()

subroutine, public cellpolymodule::create_cell_poly ( type(cellpolytype), pointer  cell)

Definition at line 19 of file CellPoly.f90.

20  type(CellPolyType), pointer :: cell
21  allocate (cell)
22  call create_defn(cell%defn)
23  allocate (cell%type)
24  cell%type = 'poly'
Here is the call graph for this function:
Here is the caller graph for this function:

◆ destroy_cell_poly()

subroutine cellpolymodule::destroy_cell_poly ( class(cellpolytype), intent(inout)  this)
private

Definition at line 28 of file CellPoly.f90.

29  class(CellPolyType), intent(inout) :: this
30  deallocate (this%defn)
31  deallocate (this%type)