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

Data Types

type  subcellrecttype
 

Functions/Subroutines

subroutine, public create_subcell_rect (subcell)
 Create a new rectangular subcell. More...
 
subroutine destroy_subcell_rect (this)
 Destructor for a rectangular subcell. More...
 
subroutine init_subcell_rect (this)
 Initialize a rectangular subcell. More...
 

Function/Subroutine Documentation

◆ create_subcell_rect()

subroutine, public subcellrectmodule::create_subcell_rect ( type(subcellrecttype), pointer  subcell)

Definition at line 27 of file SubcellRect.f90.

28  type(SubcellRectType), pointer :: subcell
29  allocate (subcell)
30  allocate (subcell%type)
31  subcell%type = 'subcellrect'
Here is the caller graph for this function:

◆ destroy_subcell_rect()

subroutine subcellrectmodule::destroy_subcell_rect ( class(subcellrecttype), intent(inout)  this)
private

Definition at line 35 of file SubcellRect.f90.

36  class(SubcellRectType), intent(inout) :: this
37  deallocate (this%type)

◆ init_subcell_rect()

subroutine subcellrectmodule::init_subcell_rect ( class(subcellrecttype), intent(inout)  this)
private

Definition at line 41 of file SubcellRect.f90.

42  class(SubcellRectType), intent(inout) :: this