different types of fields to describe the earth. anisotropy, heterogeneity sem of shale (josh et...

7
Different Types of Fields to Describe the Earth

Upload: dwight-bradford

Post on 16-Jan-2016

214 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Different Types of Fields to Describe the Earth. Anisotropy, heterogeneity SEM of shale (Josh et al., 2012)

Different Types of Fields to Describe the Earth

Page 2: Different Types of Fields to Describe the Earth. Anisotropy, heterogeneity SEM of shale (Josh et al., 2012)

Anisotropy, heterogeneity

SEM of shale (Josh et al., 2012)

Page 3: Different Types of Fields to Describe the Earth. Anisotropy, heterogeneity SEM of shale (Josh et al., 2012)

Right-handed systems

3-component geophones are often right-handed

Page 4: Different Types of Fields to Describe the Earth. Anisotropy, heterogeneity SEM of shale (Josh et al., 2012)

Rotations

Page 5: Different Types of Fields to Describe the Earth. Anisotropy, heterogeneity SEM of shale (Josh et al., 2012)

Matrix Multiplication

•Multiplication of two matrices consists of multiplying over the columns and adding over the rows

•For A*B, the number of rows in B must equal the number of columns in A

C

Page 6: Different Types of Fields to Describe the Earth. Anisotropy, heterogeneity SEM of shale (Josh et al., 2012)

Matrix Multiplication

k kk

ni ij j

j

C

Bk

A B

Aik

For example

1 0 10 0 0

A

2 0 31 3 31 2 2

B

2 2 21 1 2 21 1 1 1323C A B A B A B

Page 7: Different Types of Fields to Describe the Earth. Anisotropy, heterogeneity SEM of shale (Josh et al., 2012)

Matrix Multiplication: In Matlab

C

>> A = [1 0 1; 0 0 0]A = 1 0 1 0 0 0>> B = [ 2 0 3; 1 3 3; 1 2 2]B = 2 0 3 1 3 3 1 2 2>> A * Bans = 3 2 5 0 0 0>>