Step-by-step NMO correction

From SEG Wiki
Jump to navigation Jump to search

Open any textbook about seismic data processing and you will inevitably find a section about the normal moveout (NMO) correction. There you'll see that we can correct the measured traveltime of a reflected wave t at a given offset x to obtain the traveltime at normal incidence by applying the following equation:

in which is the NMO velocity. There are variants of this equation with different degrees of accuracy, but we'll use this one for simplicity.

When applied to a common-midpoint (CMP) section, the equation above is supposed to turn the hyperbola associated with a reflection into a straight horizontal line. What most textbooks won't tell you is how, exactly, to apply this equation to the data.

Read on and I'll explain step-by-step how the algorithm for NMO correction from Yilmaz (2001) works and how to implement it in Python.[1] The accompanying Jupyter notebook (Perez and Granger, 2007) contains the full source code, with documentation and tests for each function.[2] You can download the notebook at https://github.com/seg or at https://github.com/pinga-lab/nmo-tutorial.

What the equation doesn't tell us

Equation 1 relates traveltimes: the one we can measure (t) and the one we want to know (). But the data in our CMP gather are actually a matrix of amplitudes measured as a function of time (t) and offset. Our NMO-corrected gather will also be a matrix of amplitudes as a function of time () and offset. So what we really have to do is transform one matrix of amplitudes into the other. But the equation has no amplitudes!

This is a major divide between the formula we've all seen before and what actually goes on in the software that implements it. You have probably never thought about it — I certainly hadn't — so let's bridge this divide. Next, I'll explain an algorithm that maps the amplitudes in the CMP to amplitudes in an NMO-corrected gather.

Doing it backwards

It's surprisingly difficult to find a description of a method for calculating the amplitudes in the NMO correction. The only one I could find is a single paragraph in the book by Yilmaz:

“The idea is to find the amplitude value at A′ on the NMO-corrected gather from the amplitude value at A on the original CMP gather. Given quantities , x, , compute t from equation 1. […] The amplitude value at this time can be computed using the amplitudes at the neighboring integer sample values […] This is done by an interpolation scheme that involves the four samples.”

This paragraph is telling us to do the calculation backwards. Instead of mapping where each point in the CMP goes in the NMO-corrected gather, we should map where each point in the NMO gather comes from in the CMP. Figure 1 shows a sketch of the procedure to calculate the amplitude of a point (, x) in the NMO gather.

Figure 1. Sketch of the algorithm for a single trace and . To the left is a trace from the CMP and to the right the corresponding trace from the NMO-corrected gather. The green square in the NMO is the amplitude at that we want to calculate. We apply the equation to find time t in the CMP, then interpolate the amplitude using the four samples around t (orange triangles). This amplitude is then copied over to the NMO.

Here is the full algorithm:

  1. Start with an NMO gather filled with zeros.
  2. For each point (, x) in the NMO gather:
    1. Calculate the reflection traveltime (t) given using the equation in Figure 1.
    2. Go to the trace at offset x in the CMP and find the two samples before and the two samples after time t.
    3. If t is greater than the recording time or if it doesn't have two samples after it, skip the next two steps.
    4. Use the amplitude in these four samples to interpolate the amplitude at time t.
    5. Copy the interpolated amplitude to the NMO gather at (, x).

At the end of this algorithm, we will have a fully populated NMO gather with the amplitudes sampled from the CMP. Notice that we didn't actually use the equation for . Instead we calculate the reflection traveltime (t). Good luck guessing that from the equation alone.

The code for NMO

Now I'll show how to implement the above algorithm in Python using the NumPy and SciPy libraries.[3].

We'll split the algorithm into three functions. This is very important when programming any moderately complex code because it allows us to test each part of our code independently. It also reduces the amount of code we have to search through to find the bug that is messing up our results. Modular code is easier to understand and to reuse.

The first function I'll define performs the NMO correction on a given CMP gather. We'll assume that the CMP gather is a 2D array of amplitudes and that the velocities are a 1D array with for each time sample.

import numpy as np 

def nmo_correction(cmp, dt, offsets, velocities): 
    nmo = np.zeros_like(cmp) 
    nsamples = cmp.shape[0] 
    times = np.arange(0, nsamples*dt, dt) 
    for i, t0 in enumerate(times): 
        for j, x in enumerate(offsets): 
            t = reflection_time(t0, x, velocities[i]) amplitude = sample_trace(cmp[:, j], t, dt) if amplitude is not None: 
                nmo[i, j] = amplitude 
    return nmo

This function is essentially the algorithm above translated to Python with some of the details pushed into the reflection_time and sample_trace functions, which we will define below.

First, the function that calculates the reflection traveltime:

def reflection_time(t0, x, vnmo): 
    t = np.sqrt(t0**2 + x**2/vnmo**2) 
    return t

For the sample_trace function, we'll use cubic splines from the scipy.interpolate package. For more information on interpolation with scipy, see the tutorial by Matt Hall.[4]

from scipy.interpolate import CubicSpline 

def sample_trace(trace, time, dt): 
    before = int(np.floor(time/dt)) 
    N = trace.size 
    samples = np.arange(before − 1, before + 3) 
    if any(samples < 0) or any(samples >= N): 
        amplitude = None 
    else: 
        times = dt*samples 
        amps = trace[samples] 
        interpolator = CubicSpline(times, amps) 
        amplitude = interpolator(time) 
    return amplitude

The Jupyter notebook contains the full code for these functions, including documentation through Python documentation strings or “docstrings” and code that tests that the functions work as expected. Also included is an application of our nmo_correction function to a synthetic CMP (Figure 2).

Figure 2. (a) The profile passed to nmo_correction. The profile was interpolated on a line using the two picked velocities (black squares). (b) A synthetic CMP gather. (c) The output from our nmo_correction function.

References

  1. Yilmaz, Ö., 2001, Seismic data analysis: Processing, inversion, and interpretation of seismic data: Society of Exploration Geophysicists, http://dx.doi.org/10.1190/1.9781560801580
  2. Perez, F. H., and B. E. Granger, 2007, IPython: A system for interactive scientific computing: Computing in Science & Engineering, 9, no. 3, 21–29, http://dx.doi.org/10.1109/mcse.2007.53.
  3. van der Walt, S., S. C. Colbert, and G. Varoquaux, 2011, The NumPy array: A structure for efficient numerical computation: Computing in Science & Engineering, 13, no. 2, 22–30, http://dx.doi.org/10.1109/mcse.2011.37z
  4. Hall, M., 2016, Geophysical tutorial: The function of interpolation: The Leading Edge, 35, no. 4, 367–369, http://dx.doi.org/10.1190/tle35040367.1

Acknowledgements

My sincerest thanks to Evan Bianco, Gregorio Kawakami, Jesper Dramsch, and Matt Hall for comments and suggestions and to Öz Yilmaz for generously making the full text of the Seismic Data Analysis book available for free and in the open.

Corresponding author

External links

find literature about
Step-by-step NMO correction
SEG button search.png Datapages button.png GeoScienceWorld button.png OnePetro button.png Schlumberger button.png Google button.png AGI button.png