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

Data Types

type  cellrecttype
 

Functions/Subroutines

subroutine, public create_cell_rect (cell)
 Create a new rectangular cell. More...
 
subroutine destroy_rect (this)
 Destroy the rectangular cell. More...
 

Function/Subroutine Documentation

◆ create_cell_rect()

subroutine, public cellrectmodule::create_cell_rect ( type(cellrecttype), pointer  cell)

Definition at line 39 of file CellRect.f90.

40  type(CellRectType), pointer :: cell
41  allocate (cell)
42  call create_defn(cell%defn)
43  allocate (cell%type)
44  cell%type = 'rect'
Here is the call graph for this function:
Here is the caller graph for this function:

◆ destroy_rect()

subroutine cellrectmodule::destroy_rect ( class(cellrecttype), intent(inout)  this)
private

Definition at line 48 of file CellRect.f90.

49  class(CellRectType), intent(inout) :: this
50  deallocate (this%defn)
51  deallocate (this%type)