Processing your ADCP data using structure function techniques

From Atomix
Revision as of 17:58, 9 November 2021 by Brian scannell (talk | contribs)
  1. Extract or compute the along-beam bin center separation [r0] based on the instrument geometry
  2. Calculate the along-beam velocity fluctuation time-series in each bin, [v’(n, t)] from the Level 1 along-beam velocity data that has met the QC criteria
    1. If using burst sampling, calculations are done over the length of the burst or some sub-period over which the turbulent flow statistics can assumed to be stationary
    2. If using continuous sampling, calculations are dome over segments with a duration over which the turbulent flow statistics can assumed to be stationary
    3. For each data segment consisting of N profiles, the turbulent fluctuations are calculated separately for each beam and bin around either:
      • The mean over the data segment
      • A linear detrend of the segment
      • A low pass filtered signal
  3. Select the maximum distance over which to compute the structure function based on conditions of the flow (e.g., expected max overturn) [rmax] in bin separation distances [nmax = rmax / r0]
  4. The structure function for a data segment can be calculated using either a bin-centred difference or a forward-difference scheme
  5. For a bin-centred difference scheme
    1. start at bin n = (nmax / 2) + 1
      1. start with [math]\displaystyle{ \delta }[/math] = 1
      2. if [math]\displaystyle{ \delta }[/math] is even compute the second order structure function D(n,[math]\displaystyle{ \delta }[/math]) as the segment mean of the square of the velocity difference between the bins separated by distance [math]\displaystyle{ \delta }[/math]r0 centered around bin n:

        D(n, [math]\displaystyle{ \delta }[/math]) = [math]\displaystyle{ \langle }[/math] [v’(n+([math]\displaystyle{ \delta }[/math] / 2), t) - v’(n-([math]\displaystyle{ \delta }[/math] / 2), t)]2 [math]\displaystyle{ \rangle }[/math]

        where the angled brackets indicate the mean across all t for the data segment yielding a velocity difference after the application of the Level 1 QC criteria
      3. if [math]\displaystyle{ \delta }[/math] is odd compute the second order structure function D(n,[math]\displaystyle{ \delta }[/math]) as the segment mean of the mean of the square of the velocity difference between the bins separated by distance [math]\displaystyle{ \delta }[/math]r0 centered on the upper and lower extent of bin n:

        dv'lo(n, [math]\displaystyle{ \delta }[/math], t) = v’(n+floor([math]\displaystyle{ \delta }[/math] / 2), t) - v’(n-ceil([math]\displaystyle{ \delta }[/math] / 2), t)
        dv'hi(n, [math]\displaystyle{ \delta }[/math], t) = v’(n+ceil([math]\displaystyle{ \delta }[/math] / 2), t) - v’(n-floor([math]\displaystyle{ \delta }[/math] / 2), t)

        where ceil and floor indicate the upper and lower integer value respectively, then

        D(n, [math]\displaystyle{ \delta }[/math]) = [math]\displaystyle{ \langle }[/math] [dv'lo(n, [math]\displaystyle{ \delta }[/math], t)2 + dv'hi(n, [math]\displaystyle{ \delta }[/math], t)2] / 2 [math]\displaystyle{ \rangle }[/math]

        the angled brackets again indicating the mean across all t in the data segment yielding a velocity difference after the application of the Level 1 QC criteria
      4. increment [math]\displaystyle{ \delta }[/math] and repeat steps until [math]\displaystyle{ \delta }[/math] = nmax
    2. increment n and repeat steps until n + (nmax / 2) exceeds the bin number for which valid v’ are available
  6. For a forward-difference scheme
    1. start with n being the lowest number bin of the range over which the structure function is to be evaluated (number of bins in range must exceed nmax
      1. start with [math]\displaystyle{ \delta }[/math] = 1
      2. compute the second order structure function D(n,[math]\displaystyle{ \delta }[/math]) as the segment mean of the square of the velocity difference between the bin n and bin n + [math]\displaystyle{ \delta }[/math]:

        D(n, [math]\displaystyle{ \delta }[/math]) = [math]\displaystyle{ \langle }[/math] [v’(n, t) - v’(n+[math]\displaystyle{ \delta }[/math], t)]2 [math]\displaystyle{ \rangle }[/math]

        where the angled brackets indicate the mean across all t for the data segment yielding a velocity difference after the application of the Level 1 QC criteria
      3. increment [math]\displaystyle{ \delta }[/math] and repeat steps until [math]\displaystyle{ \delta }[/math] = nmax or n + [math]\displaystyle{ \delta }[/math] exceeds the last bin of the range over which the structure function is to be evaluated
    2. increment n and repeat steps until n + 1 is the last bin of the range over which the structure function is to be evaluated
  7. Including D(n, [math]\displaystyle{ \delta }[/math]) for [math]\displaystyle{ \delta }[/math] = 1 may be inappropriate since the velocity estimates from adjacent bins are not wholly independent, therefore the impact of its inclusion should be evaluated
  8. The number of instances when the squared velocity difference is evaluated for each bin n and separation distance [math]\displaystyle{ \delta }[/math]r0 and their distribution are potential quality control metrics

[IN PROGRESS]

    1. Compute the second order structure function D(z,r) = mean-square of the velocity fluctuation difference: D(z,2*r0) = mean(v’(z+r0)-v’(z-r0))2
    2. Repeat steps 5-6 for all pairs of bins where the separation distance between bins r <= rmax
  1. Check if all points involved in the differencing to contain good data, e.g. If I were starting from bin=2, with a maximum separation distance of 5, I required all data in bins 2 to 7 to meet QC requirements (usually just use correlation threshold). If yes, continue with the next step. If not, exclude this profile.
  2. With valid, contiguous data points, fit a line to the form D(z,r) = N + Ar2/3 to estimate values for A and N where A = Cv2ε2/3 and N is an estimate of the uncertainty due to noise.
  3. Solve for ε using Cv2 = 2.1
  4. Repeat the steps in (5) – (9) for each bin until zb + rmax/2 >= end of profile

Return to ADCP Flow Chart front page