OpenCMISS-Iron Internal API Documentation
types::decomposition_element_type Type Reference

Contains the information for an element in a decomposition. More...

Collaboration diagram for types::decomposition_element_type:

Public Attributes

integer(intg) local_number
 The local element number in the decomposition. More...
 
integer(intg) global_number
 The corresponding global element number in the mesh of the local element number in the decomposition. More...
 
integer(intg) user_number
 The corresponding user number for the element. More...
 
type(decomposition_adjacent_element_type), dimension(:), allocatable adjacent_elements
 ADJACENT_ELEMENTS(-nic:nic). The adjacent elements information in the nic'th xi coordinate direction. Note that -nic gives the adjacent element before the element in the nic'th direction and +nic gives the adjacent element after the element in the nic'th direction. The ni=0 index will give the information on the current element. Old CMISS name NXI(-ni:ni,0:nei,ne). More...
 
integer(intg), dimension(:), allocatable element_lines
 ELEMENT_LINES(nae). The local decomposition line number corresponding to the nae'th local line of the element. Old CMISS name NLL(nae,ne). More...
 
integer(intg), dimension(:), allocatable element_faces
 ELEMENT_FACES(nae). The local decomposition face number corresponding to the nae'th local face of the element. Old CMISS name NLL(nae,ne). More...
 
logical boundary_element
 Is .TRUE. if the element is on the boundary of the mesh for the domain, .FALSE. if not. More...
 

Detailed Description

Contains the information for an element in a decomposition.

Definition at line 1004 of file types.f90.

Member Data Documentation

type(decomposition_adjacent_element_type), dimension(:), allocatable types::decomposition_element_type::adjacent_elements

ADJACENT_ELEMENTS(-nic:nic). The adjacent elements information in the nic'th xi coordinate direction. Note that -nic gives the adjacent element before the element in the nic'th direction and +nic gives the adjacent element after the element in the nic'th direction. The ni=0 index will give the information on the current element. Old CMISS name NXI(-ni:ni,0:nei,ne).

Definition at line 1008 of file types.f90.

logical types::decomposition_element_type::boundary_element

Is .TRUE. if the element is on the boundary of the mesh for the domain, .FALSE. if not.

Definition at line 1013 of file types.f90.

integer(intg), dimension(:), allocatable types::decomposition_element_type::element_faces

ELEMENT_FACES(nae). The local decomposition face number corresponding to the nae'th local face of the element. Old CMISS name NLL(nae,ne).

Definition at line 1012 of file types.f90.

integer(intg), dimension(:), allocatable types::decomposition_element_type::element_lines

ELEMENT_LINES(nae). The local decomposition line number corresponding to the nae'th local line of the element. Old CMISS name NLL(nae,ne).

Definition at line 1011 of file types.f90.

integer(intg) types::decomposition_element_type::global_number

The corresponding global element number in the mesh of the local element number in the decomposition.

Definition at line 1006 of file types.f90.

integer(intg) types::decomposition_element_type::local_number

The local element number in the decomposition.

Definition at line 1005 of file types.f90.

integer(intg) types::decomposition_element_type::user_number

The corresponding user number for the element.

Definition at line 1007 of file types.f90.