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

Data Types

type  subcelltritype
 

Functions/Subroutines

subroutine, public create_subcell_tri (subcell)
 Create a new triangular subcell. More...
 
subroutine destroy_subcell_tri (this)
 Destructor for a triangular subcell. More...
 
subroutine init_subcell_tri (this)
 Initialize a triangular subcell. More...
 

Function/Subroutine Documentation

◆ create_subcell_tri()

subroutine, public subcelltrimodule::create_subcell_tri ( type(subcelltritype), pointer  subcell)

Definition at line 25 of file SubcellTri.f90.

26  type(SubcellTriType), pointer :: subcell
27  allocate (subcell)
28  allocate (subcell%type)
29  subcell%type = 'subcelltri'
Here is the caller graph for this function:

◆ destroy_subcell_tri()

subroutine subcelltrimodule::destroy_subcell_tri ( class(subcelltritype), intent(inout)  this)
private

Definition at line 33 of file SubcellTri.f90.

34  class(SubcellTriType), intent(inout) :: this
35  deallocate (this%type)

◆ init_subcell_tri()

subroutine subcelltrimodule::init_subcell_tri ( class(subcelltritype), intent(inout)  this)
private

Definition at line 39 of file SubcellTri.f90.

40  class(SubcellTriType), intent(inout) :: this