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

Contains the information for the elements of a mesh. More...

Collaboration diagram for types::meshelementstype:

Public Attributes

type(meshcomponenttopologytype), pointer meshcomponenttopology
 The pointer to the mesh component topology for the elements information. More...
 
integer(intg) number_of_elements
 The number of elements in the mesh. More...
 
logical elements_finished
 Is .TRUE. if the mesh elements have finished being created, .FALSE. if not. More...
 
type(mesh_element_type), dimension(:), pointer elements
 ELEMENTS(ne). The pointer to the array of information for the elements of this mesh. ELEMENTS(ne) contains the information for the ne'th global element of the mesh. More...
 
type(tree_type), pointer elements_tree
 A tree mapping the mesh global element number to the mesh user element number. More...
 

Detailed Description

Contains the information for the elements of a mesh.

Definition at line 403 of file types.f90.

Member Data Documentation

type(mesh_element_type), dimension(:), pointer types::meshelementstype::elements

ELEMENTS(ne). The pointer to the array of information for the elements of this mesh. ELEMENTS(ne) contains the information for the ne'th global element of the mesh.

Todo:
Should this be allocatable.

Definition at line 407 of file types.f90.

logical types::meshelementstype::elements_finished

Is .TRUE. if the mesh elements have finished being created, .FALSE. if not.

Definition at line 406 of file types.f90.

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

A tree mapping the mesh global element number to the mesh user element number.

Definition at line 408 of file types.f90.

type(meshcomponenttopologytype), pointer types::meshelementstype::meshcomponenttopology

The pointer to the mesh component topology for the elements information.

Definition at line 404 of file types.f90.

integer(intg) types::meshelementstype::number_of_elements

The number of elements in the mesh.

Definition at line 405 of file types.f90.