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

Contains information for an element vector. More...

Public Attributes

integer(intg) number_of_rows
 The current number of rows in the element vector. More...
 
integer(intg) max_number_of_rows
 The maximum (allocated) number of rows in the element vecotr. More...
 
integer(intg), dimension(:), allocatable row_dofs
 ROW_DOFS(i). The equations row that the i'th row of the element vector belongs to. More...
 
real(dp), dimension(:), allocatable vector
 VECTOR(i). The value of the i'th row of the element vector. More...
 

Detailed Description

Contains information for an element vector.

Definition at line 1400 of file types.f90.

Member Data Documentation

integer(intg) types::element_vector_type::max_number_of_rows

The maximum (allocated) number of rows in the element vecotr.

Definition at line 1402 of file types.f90.

integer(intg) types::element_vector_type::number_of_rows

The current number of rows in the element vector.

Definition at line 1401 of file types.f90.

integer(intg), dimension(:), allocatable types::element_vector_type::row_dofs

ROW_DOFS(i). The equations row that the i'th row of the element vector belongs to.

Definition at line 1403 of file types.f90.

real(dp), dimension(:), allocatable types::element_vector_type::vector

VECTOR(i). The value of the i'th row of the element vector.

Definition at line 1404 of file types.f90.