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

Contains information on the coupling between meshes in an interface. More...

Collaboration diagram for types::interface_mesh_connectivity_type:

Public Attributes

type(interface_type), pointer interface
 A pointer back to the interface for the coupled mesh connectivity. More...
 
type(mesh_type), pointer interface_mesh
 A pointer to the inteface mesh. More...
 
type(basis_type), pointer basis
 A pointer to the inteface mesh basis. More...
 
logical mesh_connectivity_finished
 Is .TRUE. if the coupled mesh connectivity has finished being created, .FALSE. if not. More...
 
integer(intg) number_of_interface_elements
 The number of elements in the interface. More...
 
integer(intg) number_of_coupled_meshes
 The number of coupled meshes in the interface. More...
 
type(interface_element_connectivity_type), dimension(:,:), allocatable element_connectivity
 ELEMENT_CONNECTIVITY(element_idx,coupled_mesh_idx) !<The mesh connectivity for a given interface mesh element. More...
 

Detailed Description

Contains information on the coupling between meshes in an interface.

Definition at line 2193 of file types.f90.

Member Data Documentation

type(basis_type), pointer types::interface_mesh_connectivity_type::basis

A pointer to the inteface mesh basis.

Definition at line 2196 of file types.f90.

type(interface_element_connectivity_type), dimension(:,:), allocatable types::interface_mesh_connectivity_type::element_connectivity

ELEMENT_CONNECTIVITY(element_idx,coupled_mesh_idx) !<The mesh connectivity for a given interface mesh element.

Definition at line 2200 of file types.f90.

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

A pointer back to the interface for the coupled mesh connectivity.

Definition at line 2194 of file types.f90.

type(mesh_type), pointer types::interface_mesh_connectivity_type::interface_mesh

A pointer to the inteface mesh.

Definition at line 2195 of file types.f90.

logical types::interface_mesh_connectivity_type::mesh_connectivity_finished

Is .TRUE. if the coupled mesh connectivity has finished being created, .FALSE. if not.

Definition at line 2197 of file types.f90.

integer(intg) types::interface_mesh_connectivity_type::number_of_coupled_meshes

The number of coupled meshes in the interface.

Definition at line 2199 of file types.f90.

integer(intg) types::interface_mesh_connectivity_type::number_of_interface_elements

The number of elements in the interface.

Definition at line 2198 of file types.f90.