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

Contains information on the nodes defined on a region. More...

Collaboration diagram for types::nodes_type:

Public Attributes

type(region_type), pointer region
 A pointer to the region containing the nodes. If the nodes are in an interface rather than a region then this pointer will be NULL and the interface pointer should be used. More...
 
type(interface_type), pointer interface
 A pointer to the interface containing the nodes. If the nodes are in a region rather than an interface then this pointer will be NULL and the region pointer should be used. More...
 
logical nodes_finished
 Is .TRUE. if the nodes have finished being created, .FALSE. if not. More...
 
integer(intg) number_of_nodes
 The number of nodes defined on the region. More...
 
type(node_type), dimension(:), allocatable nodes
 NODES(nodes_idx). The nodal information for the nodes_idx'th global node. More...
 
integer(intg), dimension(:,:), allocatable coupled_nodes
 Coupled meshes nodes numbers. More...
 
type(tree_type), pointer nodes_tree
 The tree for user to global node mapping. More...
 

Detailed Description

Contains information on the nodes defined on a region.

See also
OPENCMISS::CMISSNodesType

Definition at line 359 of file types.f90.

Member Data Documentation

integer(intg), dimension(:,:), allocatable types::nodes_type::coupled_nodes

Coupled meshes nodes numbers.

Definition at line 365 of file types.f90.

type(interface_type), pointer types::nodes_type::interface

A pointer to the interface containing the nodes. If the nodes are in a region rather than an interface then this pointer will be NULL and the region pointer should be used.

Definition at line 361 of file types.f90.

type(node_type), dimension(:), allocatable types::nodes_type::nodes

NODES(nodes_idx). The nodal information for the nodes_idx'th global node.

Definition at line 364 of file types.f90.

logical types::nodes_type::nodes_finished

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

Definition at line 362 of file types.f90.

type(tree_type), pointer types::nodes_type::nodes_tree

The tree for user to global node mapping.

Definition at line 366 of file types.f90.

integer(intg) types::nodes_type::number_of_nodes

The number of nodes defined on the region.

Definition at line 363 of file types.f90.

type(region_type), pointer types::nodes_type::region

A pointer to the region containing the nodes. If the nodes are in an interface rather than a region then this pointer will be NULL and the interface pointer should be used.

Definition at line 360 of file types.f90.