This directory contains the following files:

SPIV.avgvel.noflow.x1.0.dat  SPIV.avgvel.suck.x1.2.dat    SPIV.suck.x1.0.dat
SPIV.avgvel.noflow.x1.1.dat  SPIV.avgvel.suck.x1.3.dat    SPIV.suck.x1.1.dat
SPIV.avgvel.noflow.x1.2.dat  SPIV.noflow.x1.0.dat         SPIV.suck.x1.2.dat
SPIV.avgvel.noflow.x1.3.dat  SPIV.noflow.x1.1.dat         SPIV.suck.x1.3.dat
SPIV.avgvel.suck.x1.0.dat    SPIV.noflow.x1.2.dat
SPIV.avgvel.suck.x1.1.dat    SPIV.noflow.x1.3.dat

These data are from stereo-PIV imaging at 4 stations for Case 3:
x/c=1.0, 1.1, 1.2, and 1.3.  The data include the velocity components u, v, and w.

Included are both the full plane of data (SPIV.noflow.* and SPIV.suck.*),
as well as AVERAGED profile data (the average was made by using the middle
1/3 of the plane) (SPIV.avgvel.noflow.* and SPIV.avgvel.suck.*).
The full plane of data give an indication of how "2-D" the flowfield was
at the x-stations of interest.  The AVERAGED data is more useful for the
purpose of plotting against CFD results.

The files SPIV.noflow.* and SPIV.suck.* are given in an z-y coordinate system, 
where z is spanwise and y is up.  The data files are all "Tecplot-format."  For
example, for:

 I=79, J=55, K=1, DATAPACKING=BLOCK

the data should be read from the files (ignoring title, zone,
variables, and other header lines) via:

      idim=79
      jdim=55
      read(2,*) ((z(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((y(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((w(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((v(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((u(i,j),i=1,idim),j=1,jdim)

The files SPIV.avgvel.noflow.* and SPIV.avgvel.suck.* are in simple
column format (as a function of y only).
