XMDF  2.2
4.15.7. Reading vector time steps

The function for reading vector time steps is similar to the function for scalar time steps. The only difference is the number of components of the vector needs to be designated. The function is listed below:

C
int xfReadVectorValuesTimestepPar(xid a_Id, int a_Time, int a_StartIndex, int a_NumValues, int a_NumComponents, float *a_Values, int a_Stride);
FORTRAN
SUBROUTINE XF_READ_VECTOR_VALUES_TS_PAR(a_Id, a_Time, a_StartIndex,
a_NumVals, a_NumComponents,
a_Values, a_Stride, error)
INTEGER(HID_T), INTENT(IN) :: a_Id
INTEGER, INTENT(IN) :: a_Time, a_NumVals
INTEGER, INTENT(IN) :: a_NumComponents, a_StartIndex
REAL*8, DIMENSION(*), INTENT(OUT) :: a_Values
INTEGER, INTENT(IN) :: a_Stride
INTEGER, INTENT(OUT) :: error