
This directory contains experimental 2D-PIV mean data for CFDVAL Case 3,
no-flow-control condition.  This is a REPEAT of the no-flow-control
data, re-taken here with the "synthetic jet unit" in place instead of
the "suction unit".  Use of the different unit beneath the splitter
plate caused the blockage beneath the splitter plate to be different, 
which slightly affected the incoming flow field above the plate.

The data are all in the file:

baseline_synthunit.dat

which contains 3 zones corresponding to the regions 2,3, and 4 used for the
oscillatory condition.

The data include x/c, y/c, U, m/s, V, m/s, uu, m^2/s^2, vv, m^2/s^2, and uv, m^2/s^2

***Note for regions 2 and 3***
These regions include areas
that lie INSIDE of the hump body.  (The coordinates for the
hump body at its back end are given in the file Coords_backend.dat.)
The data that lie within the hump should be
discounted.  Also, data within a distance of .004c - .005c of the
wall is likely unreliable (due to wall reflection) and should also
be discounted!

Using a convergence analysis, a conservative estimate on the maximum error
of the turbulence data is 16%.  Therefore, the turbulence data given
here should not be taken as absolute levels, but rather should be used to
assist in qualitative evaluation of turbulence models.

The data file is "Tecplot-format" (Tecplot version 10).  For
example, for:

 I=96, J=70, K=1, ZONETYPE=Ordered
 DATAPACKING=BLOCK

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

      idim=96
      jdim=70
      read(2,*) ((x(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((y(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((u(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((v(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((uu(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((vv(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((uv(i,j),i=1,idim),j=1,jdim)

