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

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

Collaboration diagram for types::domain_elements_type:

Public Attributes

type(domain_type), pointer domain
 The pointer to the domain for this elements topology information. More...
 
integer(intg) number_of_elements
 The number of elements (excluding ghost elements) in this domain topology. More...
 
integer(intg) total_number_of_elements
 The total number of elements (including ghost elements) in this domain topology. More...
 
integer(intg) number_of_global_elements
 The number of global elements in this domain topology. More...
 
type(domain_element_type), dimension(:), pointer elements
 ELEMENTS(ne). The pointer to the array of topology information for the elements of this domain. ELEMENTS(ne) contains the topological information for the ne'th local elements of the domain. More...
 
integer(intg) maximum_number_of_element_parameters
 The maximum number of element parameters (ns) for all the elements in the domain. More...
 

Detailed Description

Contains the topology information for the elements of a domain.

Definition at line 677 of file types.f90.

Member Data Documentation

type(domain_type), pointer types::domain_elements_type::domain

The pointer to the domain for this elements topology information.

Definition at line 678 of file types.f90.

type(domain_element_type), dimension(:), pointer types::domain_elements_type::elements

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

Todo:
Change this to allocatable???

Definition at line 682 of file types.f90.

integer(intg) types::domain_elements_type::maximum_number_of_element_parameters

The maximum number of element parameters (ns) for all the elements in the domain.

Definition at line 683 of file types.f90.

integer(intg) types::domain_elements_type::number_of_elements

The number of elements (excluding ghost elements) in this domain topology.

Definition at line 679 of file types.f90.

integer(intg) types::domain_elements_type::number_of_global_elements

The number of global elements in this domain topology.

Definition at line 681 of file types.f90.

integer(intg) types::domain_elements_type::total_number_of_elements

The total number of elements (including ghost elements) in this domain topology.

Definition at line 680 of file types.f90.