FE_EDGE Derived Type

type, public :: FE_EDGE


Inherited by

type~~fe_edge~~InheritedByGraph type~fe_edge FE_EDGE type~fe_mesh FE_MESH type~fe_mesh->type~fe_edge ed

Contents

Source Code


Components

TypeVisibility AttributesNameInitial
integer(kind=I4), public :: n

number of nodes

integer(kind=I4), public :: ne

number of elements

integer(kind=I4), public, dimension(:), allocatable:: nm

mesh node (numbers in the 2d mesh)

integer(kind=I4), public, dimension(:,:), allocatable:: con

connectivity table


Source Code

type FE_EDGE
   integer(kind=I4) :: n                                 !! *number of nodes*
   integer(kind=I4) :: ne                                !! *number of elements*
   integer(kind=I4), dimension(:),   allocatable :: nm   !! *mesh node (numbers in the 2d mesh)*
   integer(kind=I4), dimension(:,:), allocatable :: con  !! *connectivity table*
endtype FE_EDGE