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

Contains the topology information for the elements of a decomposition. More...

Collaboration diagram for types::decomposition_elements_type:

Public Attributes

type(decomposition_type), pointer decomposition
 The pointer to the decomposition for this elements topology information. More...
 
integer(intg) number_of_elements
 The number of elements excluding ghost elements in this decomposition topology. More...
 
integer(intg) total_number_of_elements
 The total number of elements in this decomposition topology. More...
 
integer(intg) number_of_global_elements
 The number of global elements in this decomposition topology. More...
 
type(decomposition_element_type), dimension(:), pointer elements
 ELEMENTS(ne). The pointer to the array of topology information for the elements of this decomposition. ELEMENTS(ne) contains the topological information for the ne'th local element of the decomposition. More...
 
type(tree_type), pointer elements_tree
 A tree mapping the decomposition local element number to the decomposition user element number. More...
 

Detailed Description

Contains the topology information for the elements of a decomposition.

Definition at line 1017 of file types.f90.

Member Data Documentation

type(decomposition_type), pointer types::decomposition_elements_type::decomposition

The pointer to the decomposition for this elements topology information.

Definition at line 1018 of file types.f90.

type(decomposition_element_type), dimension(:), pointer types::decomposition_elements_type::elements

ELEMENTS(ne). The pointer to the array of topology information for the elements of this decomposition. ELEMENTS(ne) contains the topological information for the ne'th local element of the decomposition.

Todo:
Change this to allocatable???

Definition at line 1022 of file types.f90.

type(tree_type), pointer types::decomposition_elements_type::elements_tree

A tree mapping the decomposition local element number to the decomposition user element number.

Definition at line 1023 of file types.f90.

integer(intg) types::decomposition_elements_type::number_of_elements

The number of elements excluding ghost elements in this decomposition topology.

Definition at line 1019 of file types.f90.

integer(intg) types::decomposition_elements_type::number_of_global_elements

The number of global elements in this decomposition topology.

Definition at line 1021 of file types.f90.

integer(intg) types::decomposition_elements_type::total_number_of_elements

The total number of elements in this decomposition topology.

Definition at line 1020 of file types.f90.