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

Contains information about the mapping from a solver matrix column to static equations matrices and variables. More...

Public Attributes

integer(intg) number_of_linear_equations_matrices
 The number of linear equations matrices the solver column is mapped to in this equations set. More...
 
integer(intg), dimension(:), allocatable equations_matrix_numbers
 EQUATIONS_MATRIX_NUMBERS(i). The i'th equations matrix number in theequations that the solver column is mapped to. More...
 
integer(intg), dimension(:), allocatable equations_col_numbers
 EQUATIONS_COL_NUMBERS(i). The i'th equations column number in the equation set the solver column is mapped to. More...
 
real(dp), dimension(:), allocatable coupling_coefficients
 COUPLING_COEFFICIENTS(i). The i'th coupling coefficient for solver column mapping TODO: Maybe split this into a linear and a nonlinear part? The only problem is that would probably use about the same memory??? More...
 
integer(intg) jacobian_col_number
 The Jacobian column number in the equations set that the solver column is mapped to. More...
 
real(dp) jacobian_coupling_coefficient
 The coupling coefficient for the solver column to Jacobian column mapping. More...
 

Detailed Description

Contains information about the mapping from a solver matrix column to static equations matrices and variables.

Definition at line 2988 of file types.f90.

Member Data Documentation

real(dp), dimension(:), allocatable types::solver_col_to_static_equations_map_type::coupling_coefficients

COUPLING_COEFFICIENTS(i). The i'th coupling coefficient for solver column mapping TODO: Maybe split this into a linear and a nonlinear part? The only problem is that would probably use about the same memory???

Definition at line 2992 of file types.f90.

integer(intg), dimension(:), allocatable types::solver_col_to_static_equations_map_type::equations_col_numbers

EQUATIONS_COL_NUMBERS(i). The i'th equations column number in the equation set the solver column is mapped to.

Definition at line 2991 of file types.f90.

integer(intg), dimension(:), allocatable types::solver_col_to_static_equations_map_type::equations_matrix_numbers

EQUATIONS_MATRIX_NUMBERS(i). The i'th equations matrix number in theequations that the solver column is mapped to.

Definition at line 2990 of file types.f90.

integer(intg) types::solver_col_to_static_equations_map_type::jacobian_col_number

The Jacobian column number in the equations set that the solver column is mapped to.

Definition at line 2994 of file types.f90.

real(dp) types::solver_col_to_static_equations_map_type::jacobian_coupling_coefficient

The coupling coefficient for the solver column to Jacobian column mapping.

Definition at line 2995 of file types.f90.

integer(intg) types::solver_col_to_static_equations_map_type::number_of_linear_equations_matrices

The number of linear equations matrices the solver column is mapped to in this equations set.

Definition at line 2989 of file types.f90.