GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

20
GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION

Transcript of GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

Page 1: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

GG450 March 20, 2008

Introduction to

SEISMIC EXPLORATION

Page 2: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

Introduction

As more than 90% of geophysical exploration utilizes seismic methods, it’s appropriate to spend at least half of this course on seismic methods.

Seismology utilizes variations in elastic waves to determine structures inside the earth. Important variables include elastic constants and density.

For example, the shear modulus of liquids is zero, and they cannot propagate shear waves. The lack of shear waves traveling through the outer core is how we know that the earth’s outer core is liquid.

Page 3: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

There are two principle methods of seismic exploration, seismic refraction and seismic reflection. Both are important, but reflection is by far the most important.

Reflection is used extensively in oil exploration and marine exploration, while refraction is used in engineering applications and crustal studies. In both cases, the energy is supplied by the experimenter.

About 90% of what we know about the earth’s interior is based in seismic data. For very deep studies - below the crust, we need to use earthquakes (or nuclear explosions) for sources.

Page 4: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

Refraction utilizes the fact that seismic waves bend as they encounter materials with different velocities.

Page 5: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

The primary data in refraction are the times it takes for the seismic waves to get back to the surface. When the waves pass through materials with higher velocities, the travel times are less than if the material was slower.

Page 6: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

This figure shows a cross section showing seismic velocities and a resistivity profile (top). Both show the presence of a basin. With low velocity and high resistivity overlying high velocity and low resistivity.

Page 7: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

Explosive sources are used to get deep-crustal data. Often delineating the depth to mantle.

Page 8: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

QuickTime™ and aTIFF (Uncompressed) decompressor

are needed to see this picture.

Page 9: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

QuickTime™ and aTIFF (Uncompressed) decompressor

are needed to see this picture.

On land seismic data are obtained from explosive or vibrating sources and long lines of geophones. Each vertical line is one “seismogram”.

Page 10: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

QuickTime™ and aTIFF (Uncompressed) decompressor

are needed to see this picture.

At sea, the ship tows sound sources and long seismic streamers containing hydrophones to record data as the ship moves.

Page 11: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

QuickTime™ and aTIFF (Uncompressed) decompressor

are needed to see this picture.

Seismic boat shooting large air gun arrays.

Page 12: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

QuickTime™ and aTIFF (Uncompressed) decompressor

are needed to see this picture.

Seismic reflection profiles provide pictures that reflect the structures below the profile when conditions are good.

The unconformity in these data is very obvious.

Page 13: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

Before getting into the methods of exploration, we need to understand some of the theory and jargon of seismology.

Since we’re dealing with waves, it would be a good idea to understand wave terminology:

Page 14: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

-1

-0.5

0

0.5

1

0 0.5 1 1.5 2

Time, sec

Amplitude

The figure below shows a wave as seen on an instrument. This wave has an amplitude of 0.5 – the height from the flat (zero) to the peak of the wave. This wave has a frequency of 2 Hz, the number of cycles there are in one second. This is the inverse of period, which is the number of seconds per cycle (0.5 s).

Page 15: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

The figure below shows the same wave, but now we look at how it looks along a line on the ground in the direction that the wave is traveling in. The wavelength of this wave is given by the distance traveled in one cycle, (0.8 km).

-0.6

-0.4

-0.2

0

0.2

0.4

0.6

0 0.2 0.4 0.6 0.8 1 1.2

Distance along the ground, km

Amplitude

Page 16: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

How fast is this wave moving along the ground?

We can figure this out using some very simple relationships:

Frequency = cycles/ timeWavelength = distance/ cycleVelocity = distance/time

Notice that if we multiply frequency by wavelength, we get:Frequency * wavelength = cycles/time * distance / cycle = distance / time = velocity

So the velocity of the wave above is 0.5*0.8= 0.4 km/s.

Page 17: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

10

20

30

40

50

5

10

15

20

25

30

35

40

45

50

-5

0

5

Distance

Time

Looking at this wave in 3-D, you can see that the velocity is how fast the peak of the wave sweeps over the ground:

Page 18: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

The formula for the wave above is:

y = A ⋅Sin 2π ft − x / λ( )[ ]

where A is the amplitude

f is the frequency

t is the time

x is the distance along the path

and λ is the wavelength.

Write this equation using velocity instead of wavelength.

Page 19: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

In MatLab:

% 3-d plot of sin waveclear all;bign=50; % points in the seriesperiod=25; % period of wavelambda=20; % wavelengthamp=5; %amplitudefor k=[1:bign];

for l=[1:bign];x(k,l)=k;t(k,l)=l;

a(k,l)=amp*sin(2*pi*(t(k,l)/period-x(k,l)/lambda));end; end;plot3(x,t,a,'r');grid onaxis equalxlabel ('Distance')ylabel('Time')

Page 20: GG450 March 20, 2008 Introduction to SEISMIC EXPLORATION.

10

20

30

40

50

5

10

15

20

25

30

35

40

45

50

-5

0

5

Distance

Time

What is the period of the wave in the above plot? What is it’s wavelength? What is it’s velocity?