Contains information for a vector.
More...
|
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...
|
|
Contains information for a vector.
Definition at line 846 of file types.f90.
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 |
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.