
Displacement.dat  - phase vs. displacement of (center of) piezo-electric diaphragm
Pressure.dat      - phase vs. pressure in cavity
Voltage.dat       - phase vs. voltage applied
***.dat           - variables="x, mm","y, mm","u, m/s","v, m/s","uprime, m/s",
                    "vprime, m/s","uv, m^2/s^2"... (all flowfield quantities are
                    phase-averaged)  The phase corresponds with the *** in the 
                    name of the file (e.g., 005.dat indicates data at phase=5 deg)
PIV_new_mean.dat  - long-time-averaged u and v values

The data files are all "Tecplot-format."  For
example, for:
                                                                                            
 I=67, J=84, K=1,F=BLOCK
                                                                                            
the data should be read from the XXX.dat files (ignoring title, zone,
variables, and other header lines) via:
                                                                                            
      idim=67
      jdim=84
      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,*) ((uprime(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((vprime(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((uv(i,j),i=1,idim),j=1,jdim)

and from the PIV_new_mean.dat file via:
 
      idim=67
      jdim=84
      read(2,*) ((x(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((y(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((umean(i,j),i=1,idim),j=1,jdim)
      read(2,*) ((vmean(i,j),i=1,idim),j=1,jdim)

