next up previous [pdf]

Next: Kirchhoff versus phase-shift migration Up: PHASE-SHIFT MIGRATION Previous: PHASE-SHIFT MIGRATION

Pseudocode to working code

Next is the task of imaging. Conceptually, at each depth an inverse Fourier transform is followed by selection of its value at $t=0$. (Reflectors explode at $t=0$). Since only the Fourier transform at one point, $t=0$, is needed, other times need not be be computed. We know the $\omega =0$ Fourier component is found by the sum over all time, analogously, the $t=0$ component is found as the sum over all $\omega$. (This is easily shown by substituting $t=0$ into the inverse Fourier integral.) Finally, inverse Fourier transform $ k_x $ to $x$. The migration process, computing the image from the upcoming wave $u$, may be summarized in the following pseudo code:


\begin{displaymath}\vbox{
\begin{tabbing}
$U(\omega, k_x, \tau = 0) = FT[u(t, x...
...\> image$(x, \tau) = FT[$Image$(k_x, \tau)]$ \\
\end{tabbing}}\end{displaymath}

This pseudo code Fourier transforms a wavefield observed at the earth's surface $\tau =0$, and then it marches that wavefield down into the earth ($\tau>0$) filling up a three-dimensional function, $U(\omega, k_x, \tau)$. Then it selects $t=0$, the time of the exploding reflectors by summing over all frequencies $\omega$. (Mathematically, this is like finding the signal at $\omega =0$ by summing over all $t$).

Turning from pseudocode to real code, an important practical reality is that computer memories are not big enough for the three-dimensional function $U(\omega, k_x, \tau)$. But it is easy to intertwine the downward continuation with the summation over $\omega$ so a three-dimensional function need not be kept in memory.

Conjugate migration (modeling) proceeds in much the same way. Beginning from an upcoming wave that is zero at great depth, the wave is marched upward in steps by multiplication with $\exp ( i k_z \Delta z )$. As each level in the earth is passed, exploding reflectors from that level are added into the upcoming wave. Pseudo code for modeling the upcoming wave $u$ is


\begin{displaymath}\vbox{
\begin{tabbing}
Image$(k_x, z) = FT[$image$(x, z)]$ \\...
... \} \} \} \\
$u(t, x) = FT[U(\omega, k_x)]$ \\
\end{tabbing}}\end{displaymath}

The positive sign in the complex exponential is a combination of two negatives, the up coming wave and the upward extrapolation. In principle, the three loops on $\omega$, $ k_x $, and $z$ are interchangeable, however, since this tutorial program uses a velocity $v$ that is a constant function of depth, I speeded it by a large factor by putting the $z$-loop on the inside and pulling the complex exponential out of the inner loop.


next up previous [pdf]

Next: Kirchhoff versus phase-shift migration Up: PHASE-SHIFT MIGRATION Previous: PHASE-SHIFT MIGRATION

2009-03-16