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

Contains information for a vector. More...

Public Attributes

integer(intg) id
 The ID of the vector. More...
 
logical vector_finished
 Is .TRUE. if the vector has finished being created, .FALSE. if not. More...
 
integer(intg) n
 The length of the vector. More...
 
integer(intg) data_type
 The data type of the vector. More...
 
integer(intg) size
 The size of the data array of the vector. More...
 
integer(intg), dimension(:), allocatable data_intg
 DATA_INTG(i). The integer data for an integer vector. The i'th component contains the data for the i'th component vector data on the domain. More...
 
real(sp), dimension(:), allocatable data_sp
 DATA_SP(i). The real data for a single precision real vector. The i'th component contains the data for the i'th component vector data on the domain. More...
 
real(dp), dimension(:), allocatable data_dp
 DATA_DP(i). The real data for a double precision real vector. The i'th component contains the data for the i'th component vector data on the domain. More...
 
logical, dimension(:), allocatable data_l
 DATA_L(i). The real for a logical vector. The i'th component contains the data for the i'th component vector data on the domain. More...
 

Detailed Description

Contains information for a vector.

Definition at line 846 of file types.f90.

Member Data Documentation

real(dp), dimension(:), allocatable types::vector_type::data_dp

DATA_DP(i). The real data for a double precision real vector. The i'th component contains the data for the i'th component vector data on the domain.

Definition at line 854 of file types.f90.

integer(intg), dimension(:), allocatable types::vector_type::data_intg

DATA_INTG(i). The integer data for an integer vector. The i'th component contains the data for the i'th component vector data on the domain.

Definition at line 852 of file types.f90.

logical, dimension(:), allocatable types::vector_type::data_l

DATA_L(i). The real for a logical vector. The i'th component contains the data for the i'th component vector data on the domain.

Definition at line 855 of file types.f90.

real(sp), dimension(:), allocatable types::vector_type::data_sp

DATA_SP(i). The real data for a single precision real vector. The i'th component contains the data for the i'th component vector data on the domain.

Definition at line 853 of file types.f90.

integer(intg) types::vector_type::data_type

The data type of the vector.

See also
MATRIX_VECTOR::DataTypes

Definition at line 850 of file types.f90.

integer(intg) types::vector_type::id

The ID of the vector.

Definition at line 847 of file types.f90.

integer(intg) types::vector_type::n

The length of the vector.

Definition at line 849 of file types.f90.

integer(intg) types::vector_type::size

The size of the data array of the vector.

Definition at line 851 of file types.f90.

logical types::vector_type::vector_finished

Is .TRUE. if the vector has finished being created, .FALSE. if not.

Definition at line 848 of file types.f90.