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

Contains information for mapping an equations matrix to a field variable. More...

Collaboration diagram for types::equations_matrix_to_var_map_type:

Public Attributes

integer(intg) matrix_number
 The equations matrix number. More...
 
type(equations_matrix_type), pointer equations_matrix
 A pointer to the equations matrix. More...
 
integer(intg) variable_type
 The dependent variable type mapped to this equations matrix. More...
 
type(field_variable_type), pointer variable
 A pointer to the field variable that is mapped to this equations matrix. More...
 
integer(intg) number_of_columns
 The number of columns in this equations matrix. More...
 
real(dp) matrix_coefficient
 The multiplicative coefficent for the matrix in the equation set. More...
 
integer(intg), dimension(:), allocatable column_to_dof_map
 COLUMN_TO_DOF_MAP(column_idx). The variable DOF that the column_idx'th column of this equations matrix is mapped to. More...
 
type(domain_mapping_type), pointer column_dofs_mapping
 A pointer to the column dofs domain mapping for the matrix variable. More...
 

Detailed Description

Contains information for mapping an equations matrix to a field variable.

Definition at line 1559 of file types.f90.

Member Data Documentation

type(domain_mapping_type), pointer types::equations_matrix_to_var_map_type::column_dofs_mapping

A pointer to the column dofs domain mapping for the matrix variable.

Definition at line 1567 of file types.f90.

integer(intg), dimension(:), allocatable types::equations_matrix_to_var_map_type::column_to_dof_map

COLUMN_TO_DOF_MAP(column_idx). The variable DOF that the column_idx'th column of this equations matrix is mapped to.

Definition at line 1566 of file types.f90.

type(equations_matrix_type), pointer types::equations_matrix_to_var_map_type::equations_matrix

A pointer to the equations matrix.

Definition at line 1561 of file types.f90.

real(dp) types::equations_matrix_to_var_map_type::matrix_coefficient

The multiplicative coefficent for the matrix in the equation set.

Definition at line 1565 of file types.f90.

integer(intg) types::equations_matrix_to_var_map_type::matrix_number

The equations matrix number.

Definition at line 1560 of file types.f90.

integer(intg) types::equations_matrix_to_var_map_type::number_of_columns

The number of columns in this equations matrix.

Definition at line 1564 of file types.f90.

type(field_variable_type), pointer types::equations_matrix_to_var_map_type::variable

A pointer to the field variable that is mapped to this equations matrix.

Definition at line 1563 of file types.f90.

integer(intg) types::equations_matrix_to_var_map_type::variable_type

The dependent variable type mapped to this equations matrix.

Definition at line 1562 of file types.f90.