Large-scale workflows for wave-equation based inversion in Julia

Size: px
Start display at page:

Download "Large-scale workflows for wave-equation based inversion in Julia"

Transcription

1 Large-scale workflows for wave-equation based inversion in Julia Philipp A. Witte, Mathias Louboutin and Felix J. Herrmann SLIM University of British Columbia

2 Motivation Use Geophysics to understand the earth obtain information about the earth from surface seismic experiments source receivers model

3 Motivation Use Geophysics to understand the earth invert for subsurface parameters, e.g. velocity, density, porosity Depth [z] Velocity [km/s] Lateral position [km].5

4 Motivation Use Geophysics to understand the earth image geological interfaces (perturbations of earth parameters) Depth [z] Lateral position [km] 5 2 Perturbation [km/s] 3

5 Motivation Formulate inverse problems and use numerical optimization invert for velocity nonlinear least squares optimization problem minimize m 2 A(m) q d 2 2 (Virieux and Operto, 29) image the subsurface linear least squares optimization problem minimize m 2 J m d 2 2 (Dong et al., 22) Need: access to objective function values and gradients matrices A(m) J,, or actions of these matrices on vectors

6 Motivation Challenges: problem sizes are huge: - seismic surveys consist of tens of thousands of individual experiments - model wave propagation over thousands of time steps in large domains - typical size of modeling matrix: A(m) 2 R n n,n=e6 model physical system data is irregular, has coordinates and meta data inverse problems are difficult to solve (ill- posed, non- convex, non- unique) software to solve seismic inverse problems: - needs to be fast and handle large amounts of data - often tailored towards a specific application - difficult to maintain and modify, often slow adaptation of new concepts - iterative imaging algorithms rely on using all the data in each iteration

7 Motivation Our goal: flexible framework for solving seismic inverse problems abstract matrices and vectors to easily formulate algorithms data containers for irregular seismic data robust parallel framework that scales on HPC environments/the cloud interface Devito (finite difference DSL) to solve PDEs framework that can handle actual 3D industry- sized problems - lower computational costs using stochastic optimization

8 The forward problem Solve (acoustic) wave equation for a given model continuous 2 u r2 u = s m: model parameters (slowness squared) u : wave fields s : source wave fields discretize and rewrite as linear system A u = s A is lower triangular, solve with forward elimination

9 The forward problem Model surface recorded seismic data d = P r F P > s q F := A(m) P r : receiver restriction P > s q : source injection : source wavelet P > s q P r u amplitude time [s]

10 The forward problem Model surface recorded seismic data (2 experiments) d = P r F P > s q F P > s d P r q = * * * d 2 q 2 P r2 F 2 P > s2 can barely store d (e ) cannot store P > s q (e6 ) cannot form F, P r, P s explicitly (e6 e6)

11 The forward problem Adapt idea of matrix- free linear operators SPOT - a linear operator toolbox in Matlab (van den Berg and Friedlander, 22) operators look and behave like explicit matrices matrix knows how to apply itself to vectors forward, adjoint matrix- matrix, matrix- vector products etc.

12 The forward problem Implement abstract linear operators and vectors in Julia JOLI - Julia Operator Library d P r F P > s q = * * * d 2 q 2 P r2 F 2 P > s2

13 The forward problem Solve forward wave equation: Solve adjoint wave equation: JIT compilation

14 Software design What happens after executing the modeling command? check that dimensions are correct check that geometries match call serial/parallel modeling function set function arguments with parameters from linear operators

15 Software design linear operators, data containers, objective functions Julia parallel modeling function parallelization: distribute sources, data serial modeling function interface to Devito (Python) call code return results set up PDEs, discretization generate code + JIT compilation generate code solve PDE Python C

16 Software design linear operators, data containers, objective functions Julia parallel modeling function parallelization: distribute sources, data completely automatic: no manual discretization no implementation of long stencils optimal stencils for current hardware interface to Devito (Python) serial modeling function call code return results set up PDEs, discretization generate code + JIT compilation generate code solve PDE C

17 The inverse problem Inverse problem invert model for given data how does a perturbation in the model relate to a perturbation in the wave field? u = @m A(m) q := J (Jacobian) (Virieux and Operto, 29) including source/receiver projections: J = P A(m) P > s q

18 The inverse problem Depth [km]. -. J m Time [s] m Lateral position [km] Perturbation w.r.t background model d Receiver number Surface recorded seismic data

19 The inverse problem Depth [km]. J m m modeling d Time [s] Lateral position [km] Receiver number Depth [km].5 > J d c m Lateral position [km] -4 imaging Time [s] d Receiver number 2 4

20 Linear inverse problems: seismic imaging Seismic imaging as a linear least squares problem (Dong et al., 22) objective function: minimize m 2 J m d 2 2 (J 2 R m n,m>e,n>e9) easy to implement a solver using JOLI operators:

21 Seismic least squares imaging Seismic imaging as a linear least squares problem J is ill- conditioned and very large, can only afford s of iterations, need to save ü[t] (~TB) reduce computational cost using techniques from stochastic optimization linearized Bregman method (Yin, 2) minimize m subject to: A x x + 2 x 2 2 b 2 apple : thresholding parameter : noise level designed for compressive sensing problems with A 2 R m n,m<<n related to sparse (block- ) Kaczmarz solver for problems w/ any A 2 R m n (Lorenz et al., 24)

22 Seismic least squares imaging Linearized Bregman method for least squares imaging: minimize m subject to: J m C m + 2 C m 2 2 d 2 apple C: Curvelet transform : thresholding parameter : noise level in each iteration possible to work w/ subset of rows of J, d J x = d J sub x = d sub only subsets of experiments in each iteration

23 Seismic least squares imaging Linearized Bregman method for least squares imaging: Algorithm (Lorenz et al., 24). for k =,, 2. z k+ = z k t k J > r(k) (J r(k)x k d r(k) ) max(, Ĵ r(k) x k ) b r(k) 2 3. x k+ = C S (Cz k+ ) 4. end for r(k) is sequence of subsampled experiments (cyclic or random) instead of touching full data set in each iteration, only touch every data sample one or twice calculate gradients on a few large nodes (TB RAM) rather than many small ones

24 Seismic least squares imaging Example with model from the introduction: large 2D model ( 4e6 grid points) surface seismic experiments ( 2.5e9 data points) 2 iterations w/ experiments per iteration (4 PDE solves)

25 Nonlinear inverse problems Objective functions for nonlinear inverse problems functions that spin off function values and gradients can be passed to black- box optimization libraries (e.g. NLopt, JuMP) Example: invert for velocity model (full waveform inversion) nonlinear least squares problem gradient given by minimize m 2 P r A(m) P > s q d 2 2 g = J > P r A(m) P s > q d

26 Nonlinear inverse problems Some final words about scaling: so far only large 2D example ( 4e6 model parameters, 2.5e9 data points) large 3D problems have 2e8 model parameters, e2 data points (or more) For large- scale 3D inverse problems: bounded by RAM, need to store the forward wavefields for all experiments with stochastic optimization methods (linearized Bregman etc.), reduce number of experiments per iteration 3D becomes feasible, if working with few, but large nodes (RAM > TB)

27 Conclusions Julia framework for seismic modeling and inversion modular software structure matrix- free linear operators and seismic data containers efficient and fast PDE solves through Devito scales to very large and realistic problem sizes parallel framework, resilience to hardware failures easy to formulate algorithms, objective functions + gradients, etc. easy to interface optimization libraries

28 Outlook In the future we plan to: test our framework in the cloud add IO functions for seismic data (automatic set up of data containers + geometry) application to 3D seismic field data sets (requires nodes with ~ TB RAM)

29 Acknowledgements This research was carried out as part of the SINBAD project with the support of the member organizahons of the SINBAD Consorhum.

Extending the search space of time-domain adjoint-state FWI with randomized implicit time shifts

Extending the search space of time-domain adjoint-state FWI with randomized implicit time shifts Extending the search space of time-domain adjoint-state FWI with randomized implicit time shifts Mathias Louboutin * and Felix J. Herrmann Seismic Laboratory for Imaging and Modeling (SLIM), The University

More information

Source Estimation for Wavefield Reconstruction Inversion

Source Estimation for Wavefield Reconstruction Inversion Source Estimation for Wavefield Reconstruction Inversion Zhilong Fang * and Felix J. Herrmann * * Seismic Laboratory for Imaging and Modeling SLIM), University of British Columbia Abstract Wavefield reconstruction

More information

SUMMARY. Pursuit De-Noise (BPDN) problem, Chen et al., 2001; van den Berg and Friedlander, 2008):

SUMMARY. Pursuit De-Noise (BPDN) problem, Chen et al., 2001; van den Berg and Friedlander, 2008): Controlling linearization errors in l 1 regularized inversion by rerandomization Ning Tu, Xiang Li and Felix J. Herrmann, Earth and Ocean Sciences, University of British Columbia SUMMARY Linearized inversion

More information

A Unified 2D/3D Software Environment for Large Scale Time-Harmonic Full Waveform Inversion

A Unified 2D/3D Software Environment for Large Scale Time-Harmonic Full Waveform Inversion A Unified 2D/3D Software Environment for Large Scale Time-Harmonic Full Waveform Inversion Curt Da Silva & Felix J. Herrmann SLIM University of British Columbia 3D Full Waveform Inversion Complicated process

More information

Compressive least-squares migration with source estimation

Compressive least-squares migration with source estimation Compressive least-squares migration with source estimation Philipp A. Witte*, Mengmeng Yang* and Felix J. Herrmann Seismic Laboratory for Imaging and Modeling (SLIM), University of British Columbia Email:

More information

SUMMARY. min. m f (m) s.t. m C 1

SUMMARY. min. m f (m) s.t. m C 1 Regularizing waveform inversion by projections onto convex sets application to the D Chevron synthetic blind-test dataset Bas Peters *, Zhilong Fang *, Brendan Smithyman #, Felix J. Herrmann * * Seismic

More information

Time-jittered ocean bottom seismic acquisition Haneet Wason and Felix J. Herrmann

Time-jittered ocean bottom seismic acquisition Haneet Wason and Felix J. Herrmann Time-jittered ocean bottom seismic acquisition Haneet Wason and Felix J. Herrmann SLIM University of British Columbia Challenges Need for full sampling - wave-equation based inversion (RTM & FWI) - SRME/EPSI

More information

A projected Hessian matrix for full waveform inversion Yong Ma and Dave Hale, Center for Wave Phenomena, Colorado School of Mines

A projected Hessian matrix for full waveform inversion Yong Ma and Dave Hale, Center for Wave Phenomena, Colorado School of Mines A projected Hessian matrix for full waveform inversion Yong Ma and Dave Hale, Center for Wave Phenomena, Colorado School of Mines SUMMARY A Hessian matrix in full waveform inversion (FWI) is difficult

More information

SUMMARY INTRODUCTION SOFTWARE ORGANIZATION. The standard adjoint-state method of full-waveform inversion problems involves solving

SUMMARY INTRODUCTION SOFTWARE ORGANIZATION. The standard adjoint-state method of full-waveform inversion problems involves solving A Unified 2D/3D Software Environment for Large Scale Time-Harmonic Full Waveform Inversion Curt Da Silva*, Felix Herrmann Seismic Laboratory for Imaging and Modeling (SLIM), University of British Columbia

More information

Deconvolution with curvelet-domain sparsity Vishal Kumar, EOS-UBC and Felix J. Herrmann, EOS-UBC

Deconvolution with curvelet-domain sparsity Vishal Kumar, EOS-UBC and Felix J. Herrmann, EOS-UBC Deconvolution with curvelet-domain sparsity Vishal Kumar, EOS-UBC and Felix J. Herrmann, EOS-UBC SUMMARY We use the recently introduced multiscale and multidirectional curvelet transform to exploit the

More information

U043 3D Prestack Time Domain Full Waveform Inversion

U043 3D Prestack Time Domain Full Waveform Inversion U043 3D Prestack Time Domain Full Waveform Inversion D.V. Vigh* (WesternGeco), W.E.S. Starr (WesternGeco) & K.D. Kenneth Dingwall (WesternGeco) SUMMARY Despite the relatively high computational demand,

More information

Downloaded 09/16/13 to Redistribution subject to SEG license or copyright; see Terms of Use at

Downloaded 09/16/13 to Redistribution subject to SEG license or copyright; see Terms of Use at Time-domain incomplete Gauss-Newton full-waveform inversion of Gulf of Mexico data Abdullah AlTheyab*, Xin Wang, Gerard T. Schuster, King Abdullah University of Science and Technology Downloaded 9// to

More information

Full-waveform inversion with randomized L1 recovery for the model updates

Full-waveform inversion with randomized L1 recovery for the model updates Full-waveform inversion with randomized L1 recovery for the model updates Xiang Li, Aleksandr Aravkin, Tristan van Leeuwen, Felix Herrmann March 5, 11 Abstract Full-waveform inversion (FWI) is a data fitting

More information

Randomized sampling strategies

Randomized sampling strategies Randomized sampling strategies Felix J. Herrmann SLIM Seismic Laboratory for Imaging and Modeling the University of British Columbia SLIM Drivers & Acquisition costs impediments Full-waveform inversion

More information

Full-waveform inversion using seislet regularization a

Full-waveform inversion using seislet regularization a 1 Full-waveform inversion using seislet regularization a a Published in Geophysics, 82, no. 5, A43-A49, (2017) Zhiguang Xue 1, Hejun Zhu 2 and Sergey Fomel 1 ABSTRACT Because of inaccurate, incomplete

More information

Fast "online" migration with Compressive Sensing Felix J. Herrmann

Fast online migration with Compressive Sensing Felix J. Herrmann Fast "online" migration with Compressive Sensing Felix J. Herrmann SLIM University of British Columbia Fast "online" migration with Compressive Sensing Felix J. Herrmann, Ning Tu, and Ernie Esser with

More information

A new take on FWI: Wavefield Reconstruction Inversion

A new take on FWI: Wavefield Reconstruction Inversion A new take on FWI: Wavefield Reconstruction Inversion T. van Leeuwen 1, F.J. Herrmann and B. Peters 1 Centrum Wiskunde & Informatica, Amsterdam, The Netherlands University of British Columbia, dept. of

More information

# of PDE solves flops conventional 2N s N s N hx N hy N hz this paper 2N x N r N s

# of PDE solves flops conventional 2N s N s N hx N hy N hz this paper 2N x N r N s AVA analysis and geological dip estimation via two-way wave-equation based extended images Rajiv Kumar, Tristan van Leeuwen and Felix J. Herrmann University of British Columbia, Department of Earth, Ocean

More information

Target-oriented wavefield tomography: A field data example

Target-oriented wavefield tomography: A field data example Target-oriented wavefield tomography: A field data example Yaxun Tang and Biondo Biondi ABSTRACT We present a strategy for efficient migration velocity analysis in complex geological settings. The proposed

More information

Sub-Nyquist sampling and sparsity: getting more information from fewer samples

Sub-Nyquist sampling and sparsity: getting more information from fewer samples Sub-Nyquist sampling and sparsity: getting more information from fewer samples Felix J. Herrmann SLIM Seismic Laboratory for Imaging and Modeling the University of British Columbia SLIM Drivers Our incessant

More information

Strategies for elastic full waveform inversion Espen Birger Raknes and Børge Arntsen, Norwegian University of Science and Technology

Strategies for elastic full waveform inversion Espen Birger Raknes and Børge Arntsen, Norwegian University of Science and Technology Strategies for elastic full waveform inversion Espen Birger Raknes and Børge Arntsen, Norwegian University of Science and Technology SUMMARY Ocean-bottom cables (OBC) have become common in reservoir monitoring

More information

Writing Kirchhoff migration/modelling in a matrix form

Writing Kirchhoff migration/modelling in a matrix form Writing Kirchhoff migration/modelling in a matrix form Abdolnaser Yousefzadeh and John C. Bancroft Kirchhoff migration matrix ABSTRACT Kirchhoff prestack migration and modelling are linear operators. Therefore,

More information

Approximate Constant Density Acoustic Inverse Scattering Using Dip-Dependent Scaling Rami Nammour and William Symes, Rice University

Approximate Constant Density Acoustic Inverse Scattering Using Dip-Dependent Scaling Rami Nammour and William Symes, Rice University Approximate Constant Density Acoustic Inverse Scattering Using Dip-Dependent Scaling Rami Nammour and William Symes, Rice University SUMMARY This abstract presents a computationally efficient method to

More information

Inversion after depth imaging

Inversion after depth imaging Robin P. Fletcher *, Stewart Archer, Dave Nichols, and Weijian Mao, WesternGeco Summary In many areas, depth imaging of seismic data is required to construct an accurate view of the reservoir structure.

More information

Sparse wavelet expansions for seismic tomography: Methods and algorithms

Sparse wavelet expansions for seismic tomography: Methods and algorithms Sparse wavelet expansions for seismic tomography: Methods and algorithms Ignace Loris Université Libre de Bruxelles International symposium on geophysical imaging with localized waves 24 28 July 2011 (Joint

More information

Model-space vs. data-space normalization for recursive depth migration

Model-space vs. data-space normalization for recursive depth migration Stanford Exploration Project, Report 108, April 29, 2001, pages 1?? Model-space vs. data-space normalization for recursive depth migration James Rickett 1 ABSTRACT Illumination problems caused by finite-recording

More information

Full-waveform inversion for reservoir characterization: A synthetic study

Full-waveform inversion for reservoir characterization: A synthetic study CWP-889 Full-waveform inversion for reservoir characterization: A synthetic study Nishant Kamath, Ilya Tsvankin & Ehsan Zabihi Naeini ABSTRACT Most current reservoir-characterization workflows are based

More information

Sparsity-promoting migration accelerated by message passing Xiang LI and Felix J.Herrmann EOS-UBC

Sparsity-promoting migration accelerated by message passing Xiang LI and Felix J.Herrmann EOS-UBC Sparsity-promoting migration accelerated by message passing Xiang LI and Feli J.Herrmann EOS-UBC SUMMARY Seismic imaging via linearized inversion requires multiple iterations to the least-squares misfit

More information

An Efficient 3D Elastic Full Waveform Inversion of Time-Lapse seismic data using Grid Injection Method

An Efficient 3D Elastic Full Waveform Inversion of Time-Lapse seismic data using Grid Injection Method 10 th Biennial International Conference & Exposition P 032 Summary An Efficient 3D Elastic Full Waveform Inversion of Time-Lapse seismic data using Grid Injection Method Dmitry Borisov (IPG Paris) and

More information

Optimised finite difference computation from symbolic equations

Optimised finite difference computation from symbolic equations Optimised finite difference computation from symbolic equations M. Lange 1 N. Kukreja 1 F. Luporini 1 M. Louboutin 2 C. Yount 3 J. Hückelheim 1 G. Gorman 1 June 13, 2017 1 Department of Earth Science and

More information

Downloaded 09/09/15 to Redistribution subject to SEG license or copyright; see Terms of Use at

Downloaded 09/09/15 to Redistribution subject to SEG license or copyright; see Terms of Use at Recovering the Reflectivity Matrix and Angle-dependent Plane-wave Reflection Coefficients from Imaging of Multiples Alba Ordoñez PGS/UiO*, Walter Söllner PGS, Tilman Klüver PGS and Leiv J. Gelius UiO Summary

More information

Seismic Data Interpolation With Symmetry

Seismic Data Interpolation With Symmetry Seismic Data Interpolation With Symmetry James Johnson joint work with Gilles Hennenfent 8 Consortium Meeting Outline Introduction Reciprocity Real Data Example Data Interpolation Problem Statement CRSI

More information

Low-rank representation of extended image volumes applications to imaging and velocity continuation

Low-rank representation of extended image volumes applications to imaging and velocity continuation Low-rank representation of extended image volumes applications to imaging and velocity continuation Rajiv Kumar 1, Marie Graff-Kray 2, Tristan van Leeuwen 3, and Felix J. Herrmann 1 1 Georgia Institute

More information

AVA analysis and geological dip estimation via twoway wave-equation based extended images

AVA analysis and geological dip estimation via twoway wave-equation based extended images AVA analysis and geological dip estimation via twoway wave-equation based extended images Rajiv Kumar, Tristan van Leeuwen and Felix J. Herrmann SLIM University of British Columbia Motivation Computation

More information

SUMMARY INTRODUCTION THEORY. Objective function of ERWI

SUMMARY INTRODUCTION THEORY. Objective function of ERWI Extended Reflection Waveform Inversion via Differential Semblance Optimization Yujin Liu, William W. Symes and Zhenchun Li, China University of Petroleum (Huadong), Rice University SUMMARY Reflection-based

More information

A least-squares shot-profile application of time-lapse inverse scattering theory

A least-squares shot-profile application of time-lapse inverse scattering theory A least-squares shot-profile application of time-lapse inverse scattering theory Mostafa Naghizadeh and Kris Innanen ABSTRACT The time-lapse imaging problem is addressed using least-squares shot-profile

More information

Model parametrization strategies for Newton-based acoustic full waveform

Model parametrization strategies for Newton-based acoustic full waveform Model parametrization strategies for Newton-based acoustic full waveform inversion Amsalu Y. Anagaw, University of Alberta, Edmonton, Canada, aanagaw@ualberta.ca Summary This paper studies the effects

More information

Lecture 2: Seismic Inversion and Imaging

Lecture 2: Seismic Inversion and Imaging Lecture 2: Seismic Inversion and Imaging Youzuo Lin 1 Joint work with: Lianjie Huang 1 Monica Maceira 2 Ellen M. Syracuse 1 Carene Larmat 1 1: Los Alamos National Laboratory 2: Oak Ridge National Laboratory

More information

SUMMARY INTRODUCTION THEORY

SUMMARY INTRODUCTION THEORY Illumination compensation for subsalt image-domain wavefield tomography Tongning Yang, Center for Wave Phenomena, Colorado School of Mines, Jeffrey Shragge, School of Earth and Environment, University

More information

Compressed sensing based land simultaneous acquisition using encoded sweeps

Compressed sensing based land simultaneous acquisition using encoded sweeps Compressed sensing based land simultaneous acquisition using encoded sweeps Rajiv Kumar 1, Shashin Sharan 1, Nick Moldoveanu 2, and Felix J. Herrmann 3 1 University of British Columbia, Vancouver 2 WesternGeco,

More information

Using multifrontal hierarchically solver and HPC systems for 3D Helmholtz problem

Using multifrontal hierarchically solver and HPC systems for 3D Helmholtz problem Using multifrontal hierarchically solver and HPC systems for 3D Helmholtz problem Sergey Solovyev 1, Dmitry Vishnevsky 1, Hongwei Liu 2 Institute of Petroleum Geology and Geophysics SB RAS 1 EXPEC ARC,

More information

Inexact Full Newton Method for Full Waveform Inversion using Simultaneous encoded sources

Inexact Full Newton Method for Full Waveform Inversion using Simultaneous encoded sources Inexact Full Newton Method for Full Waveform Inversion using Simultaneous encoded sources Summary Amsalu Y. Anagaw, University of Alberta, Edmonton, Canada aanagaw@ualberta.ca and Mauricio D. Sacchi, University

More information

Least squares Kirchhoff depth migration: important details

Least squares Kirchhoff depth migration: important details Least squares Kirchhoff depth migration: important details Daniel Trad CREWES-University of Calgary Summary Least squares migration has been an important research topic in the academia for about two decades,

More information

3D Finite Difference Time-Domain Modeling of Acoustic Wave Propagation based on Domain Decomposition

3D Finite Difference Time-Domain Modeling of Acoustic Wave Propagation based on Domain Decomposition 3D Finite Difference Time-Domain Modeling of Acoustic Wave Propagation based on Domain Decomposition UMR Géosciences Azur CNRS-IRD-UNSA-OCA Villefranche-sur-mer Supervised by: Dr. Stéphane Operto Jade

More information

SUMMARY. method to synthetic datasets is discussed in the present paper.

SUMMARY. method to synthetic datasets is discussed in the present paper. Geophysical modeling through simultaneous Joint Inversion of Seismic, Gravity and Magnetotelluric data Michele De Stefano (1), Daniele Colombo (1) WesternGeco EM - Geosystem, via Clericetti 42/A, 20133

More information

G009 Scale and Direction-guided Interpolation of Aliased Seismic Data in the Curvelet Domain

G009 Scale and Direction-guided Interpolation of Aliased Seismic Data in the Curvelet Domain G009 Scale and Direction-guided Interpolation of Aliased Seismic Data in the Curvelet Domain M. Naghizadeh* (University of Alberta) & M. Sacchi (University of Alberta) SUMMARY We propose a robust interpolation

More information

Main Menu. Summary. sampled) f has a sparse representation transform domain S with. in certain. f S x, the relation becomes

Main Menu. Summary. sampled) f has a sparse representation transform domain S with. in certain. f S x, the relation becomes Preliminary study on Dreamlet based compressive sensing data recovery Ru-Shan Wu*, Yu Geng 1 and Lingling Ye, Modeling and Imaging Lab, Earth & Planetary Sciences/IGPP, University of California, Santa

More information

SUMMARY. In this paper, we present a methodology to improve trace interpolation

SUMMARY. In this paper, we present a methodology to improve trace interpolation Reconstruction of seismic wavefields via low-rank matrix factorization in the hierarchical-separable matrix representation Rajiv Kumar, Hassan Mansour, Aleksandr Y. Aravkin, and Felix J. Herrmann University

More information

SUMMARY. earth is characterized by strong (poro)elasticity.

SUMMARY. earth is characterized by strong (poro)elasticity. with illumination compensation Tongning Yang, Center for Wave Phenomena, Colorado School of Mines, Jeffrey Shragge, School of Earth and Environment, University of Western Australia, and Paul Sava, Center

More information

We B3 12 Full Waveform Inversion for Reservoir Characterization - A Synthetic Study

We B3 12 Full Waveform Inversion for Reservoir Characterization - A Synthetic Study We B3 12 Full Waveform Inversion for Reservoir Characterization - A Synthetic Study E. Zabihi Naeini* (Ikon Science), N. Kamath (Colorado School of Mines), I. Tsvankin (Colorado School of Mines), T. Alkhalifah

More information

We N Converted-phase Seismic Imaging - Amplitudebalancing Source-independent Imaging Conditions

We N Converted-phase Seismic Imaging - Amplitudebalancing Source-independent Imaging Conditions We N106 02 Converted-phase Seismic Imaging - Amplitudebalancing -independent Imaging Conditions A.H. Shabelansky* (Massachusetts Institute of Technology), A.E. Malcolm (Memorial University of Newfoundland)

More information

Adaptive Waveform Inversion: Theory Mike Warner*, Imperial College London, and Lluís Guasch, Sub Salt Solutions Limited

Adaptive Waveform Inversion: Theory Mike Warner*, Imperial College London, and Lluís Guasch, Sub Salt Solutions Limited Adaptive Waveform Inversion: Theory Mike Warner*, Imperial College London, and Lluís Guasch, Sub Salt Solutions Limited Summary We present a new method for performing full-waveform inversion that appears

More information

Modelling, migration, and inversion using Linear Algebra

Modelling, migration, and inversion using Linear Algebra Modelling, mid., and inv. using Linear Algebra Modelling, migration, and inversion using Linear Algebra John C. Bancroft and Rod Blais ABSRAC Modelling migration and inversion can all be accomplished using

More information

Randomized sampling without repetition in timelapse seismic surveys

Randomized sampling without repetition in timelapse seismic surveys Randomized sampling without repetition in timelapse seismic surveys Felix Oghenekohwo SLIM University of British Columbia Randomized sampling without repetition in timelapse seismic surveys Felix Oghenekohwo

More information

Headwave Stacking in Terms of Partial Derivative Wavefield

Headwave Stacking in Terms of Partial Derivative Wavefield Geosystem Engineering, 7(1), 21-26 (March 2004) Headwave Stacking in Terms of Partial Derivative Wavefield Changsoo Shin School of Civil, Urban and Geosystem Engineering, Seoul National University, San

More information

Tu P13 08 A MATLAB Package for Frequency Domain Modeling of Elastic Waves

Tu P13 08 A MATLAB Package for Frequency Domain Modeling of Elastic Waves Tu P13 8 A MATLAB Package for Frequency Domain Modeling of Elastic Waves E. Jamali Hondori* (Kyoto University), H. Mikada (Kyoto University), T.N. Goto (Kyoto University) & J. Takekawa (Kyoto University)

More information

We G Time and Frequency-domain FWI Implementations Based on Time Solver - Analysis of Computational Complexities

We G Time and Frequency-domain FWI Implementations Based on Time Solver - Analysis of Computational Complexities We G102 05 Time and Frequency-domain FWI Implementations Based on Time Solver - Analysis of Computational Complexities R. Brossier* (ISTerre, Universite Grenoble Alpes), B. Pajot (ISTerre, Universite Grenoble

More information

DEVITO AUTOMATED HIGH-PERFORMANCE FINITE DIFFERENCES FOR GEOPHYSICAL EXPLORATION

DEVITO AUTOMATED HIGH-PERFORMANCE FINITE DIFFERENCES FOR GEOPHYSICAL EXPLORATION DEVITO AUTOMATED HIGH-PERFORMANCE FINITE DIFFERENCES FOR GEOPHYSICAL EXPLORATION F. Luporini 1, C. Yount 4, M. Louboutin 3, N. Kukreja 1, P. Witte 2, M. Lange 5, P. Kelly 1, F. Herrmann 3, G.Gorman 1 1Imperial

More information

Recovering the Reflectivity Matrix and Angledependent Plane-wave Reflection Coefficients from Imaging of Multiples

Recovering the Reflectivity Matrix and Angledependent Plane-wave Reflection Coefficients from Imaging of Multiples Recovering the Reflectivity Matrix and Angledependent Plane-wave Reflection Coefficients from Imaging of Multiples A. Ordoñez* (PGS), W.F. Sollner (PGS), T. Klüver (PGS) & L.G. Gelius (UiO) SUMMARY A joint

More information

Extended images in action -efficient WEMVA via randomized probing

Extended images in action -efficient WEMVA via randomized probing Extended images in action -efficient WEMVA via randomized probing Rajiv Kumar, Tristan van Leeuwen and Felix J. Herrmann SLIM University*of*British*Columbia Motivation Subsurface image gathers are beneficial

More information

Stochastic conjugate gradient method for least-square seismic inversion problems Wei Huang*, Hua-Wei Zhou, University of Houston

Stochastic conjugate gradient method for least-square seismic inversion problems Wei Huang*, Hua-Wei Zhou, University of Houston Stochastic conjugate gradient method for least-square seismic inversion problems Wei Huang*, Hua-Wei Zhou, University of Houston Summary With the development of computational power, there has been an increased

More information

A Framework for Online Inversion-Based 3D Site Characterization

A Framework for Online Inversion-Based 3D Site Characterization A Framework for Online Inversion-Based 3D Site Characterization Volkan Akcelik, Jacobo Bielak, Ioannis Epanomeritakis,, Omar Ghattas Carnegie Mellon University George Biros University of Pennsylvania Loukas

More information

Progress Report on: Interferometric Interpolation of 3D SSP Data

Progress Report on: Interferometric Interpolation of 3D SSP Data Progress Report on: Interferometric Interpolation of 3D SSP Data Sherif M. Hanafy ABSTRACT We present the theory and numerical results for interferometrically interpolating and extrapolating 3D marine

More information

G004 Robust Frequency-domain Multi-parameter Elastic Full Waveform Inversion

G004 Robust Frequency-domain Multi-parameter Elastic Full Waveform Inversion G004 Robust Frequency-domain Multi-parameter Elastic Full Waveform Inversion R. Brossier* (Joseph Fourier University), S. Operto (CNRS/University of Nice-Sophia-Antipolis/Géoazur) & J. Virieux (Joseph

More information

One-norm regularized inversion: learning from the Pareto curve

One-norm regularized inversion: learning from the Pareto curve One-norm regularized inversion: learning from the Pareto curve Gilles Hennenfent and Felix J. Herrmann, Earth & Ocean Sciences Dept., the University of British Columbia ABSTRACT Geophysical inverse problems

More information

Full waveform inversion of physical model data Jian Cai*, Jie Zhang, University of Science and Technology of China (USTC)

Full waveform inversion of physical model data Jian Cai*, Jie Zhang, University of Science and Technology of China (USTC) of physical model data Jian Cai*, Jie Zhang, University of Science and Technology of China (USTC) Summary (FWI) is a promising technology for next generation model building. However, it faces with many

More information

Accelerating the Hessian-free Gauss-Newton Full-waveform Inversion via Preconditioned Conjugate Gradient Method

Accelerating the Hessian-free Gauss-Newton Full-waveform Inversion via Preconditioned Conjugate Gradient Method Accelerating the Hessian-free Gauss-Newton Full-waveform Inversion via Preconditioned Conjugate Gradient Method Wenyong Pan 1, Kris Innanen 1 and Wenyuan Liao 2 1. CREWES Project, Department of Geoscience,

More information

Effects of multi-scale velocity heterogeneities on wave-equation migration Yong Ma and Paul Sava, Center for Wave Phenomena, Colorado School of Mines

Effects of multi-scale velocity heterogeneities on wave-equation migration Yong Ma and Paul Sava, Center for Wave Phenomena, Colorado School of Mines Effects of multi-scale velocity heterogeneities on wave-equation migration Yong Ma and Paul Sava, Center for Wave Phenomena, Colorado School of Mines SUMMARY Velocity models used for wavefield-based seismic

More information

Data dependent parameterization and covariance calculation for inversion of focusing operators

Data dependent parameterization and covariance calculation for inversion of focusing operators Stanford Exploration Project, Report 11, September 18, 21, pages 1 91 Data dependent parameterization and covariance calculation for inversion of focusing operators Barbara E. Cox 1 ABSTRACT The Common

More information

Elastic full waveform Inversion for land walkaway VSP data

Elastic full waveform Inversion for land walkaway VSP data Elastic full waveform Inversion for land walkaway VSP data Olga Podgornova, Scott Leaney, arwan Charara, Schlumberger; Eric von Lunen, Nexen Energy ULC Summary Full waveform inversion (FWI) is capable

More information

Least-squares migration/inversion of blended data

Least-squares migration/inversion of blended data Least-squares migration/inversion of blended data Yaxun Tang and Biondo Biondi ABSTRACT We present a method based on least-squares migration/inversion to directly image data collected from recently developed

More information

SUMMARY THEORY INTRODUCTION

SUMMARY THEORY INTRODUCTION Double-Difference Waveform Inversion of 4D Ocean Bottom Cable Data: Application to Valhall, North Sea Di Yang, Michael Fehler and Alison Malcolm, MIT, Faqi Liu and Scott Morton, Hess Corporation SUMMARY

More information

WS10-A03 Alternative Multicomponent Observables for Robust Full-waveform Inversion - Application to a Near-surface Example

WS10-A03 Alternative Multicomponent Observables for Robust Full-waveform Inversion - Application to a Near-surface Example 1-4 June IFEMA Madrid WS-A3 Alternative Multicomponent Observables for Robust Full-waveform Inversion - Application to a Near-surface Example R. Valensi* (formerly IFSTTAR), R. Brossier (Univ. Grenoble

More information

High definition tomography brings velocities to light Summary Introduction Figure 1:

High definition tomography brings velocities to light Summary Introduction Figure 1: Saverio Sioni, Patrice Guillaume*, Gilles Lambaré, Anthony Prescott, Xiaoming Zhang, Gregory Culianez, and Jean- Philippe Montel (CGGVeritas) Summary Velocity model building remains a crucial step in seismic

More information

F031 Application of Time Domain and Single Frequency Waveform Inversion to Real Data

F031 Application of Time Domain and Single Frequency Waveform Inversion to Real Data F031 Application of Time Domain and Single Frequency Waveform Inversion to Real Data D Yingst (ION Geophysical), C. Wang* (ION Geophysical), J. Park (ION Geophysical), R. Bloor (ION Geophysical), J. Leveille

More information

Target-oriented wave-equation inversion

Target-oriented wave-equation inversion Stanford Exploration Project, Report 120, May 3, 2005, pages 23 40 Target-oriented wave-equation inversion Alejandro A. Valenciano, Biondo Biondi, and Antoine Guitton 1 ABSTRACT A target-oriented strategy

More information

Reflectivity modeling for stratified anelastic media

Reflectivity modeling for stratified anelastic media Reflectivity modeling for stratified anelastic media Peng Cheng and Gary F. Margrave Reflectivity modeling ABSTRACT The reflectivity method is widely used for the computation of synthetic seismograms for

More information

H003 Deriving 3D Q Models from Surface Seismic Data Using Attenuated Traveltime Tomography

H003 Deriving 3D Q Models from Surface Seismic Data Using Attenuated Traveltime Tomography H003 Deriving 3D Q Models from Surface Seismic Data Using Attenuated Traveltime Tomography M. Cavalca* (Schlumberger - Westerngeco) & R.P. Fletcher (Schlumberger - Westerngeco) SUMMARY Estimation of the

More information

Efficient 3D Gravity and Magnetic Modeling

Efficient 3D Gravity and Magnetic Modeling Efficient 3D Gravity and Magnetic Modeling X. Li Fugro Gravity & Magnetic Services Inc., Houston, Texas, USA Summary There are many different spatial-domain algorithms for 3D gravity and magnetic forward

More information

The Immersed Interface Method

The Immersed Interface Method The Immersed Interface Method Numerical Solutions of PDEs Involving Interfaces and Irregular Domains Zhiiin Li Kazufumi Ito North Carolina State University Raleigh, North Carolina Society for Industrial

More information

Target-oriented wave-equation inversion with regularization in the subsurface-offset domain

Target-oriented wave-equation inversion with regularization in the subsurface-offset domain Stanford Exploration Project, Report 124, April 4, 2006, pages 1?? Target-oriented wave-equation inversion with regularization in the subsurface-offset domain Alejandro A. Valenciano ABSTRACT A complex

More information

Refraction Full-waveform Inversion in a Shallow Water Environment

Refraction Full-waveform Inversion in a Shallow Water Environment Refraction Full-waveform Inversion in a Shallow Water Environment Z. Zou* (PGS), J. Ramos-Martínez (PGS), S. Kelly (PGS), G. Ronholt (PGS), L.T. Langlo (PGS), A. Valenciano Mavilio (PGS), N. Chemingui

More information

Lab 3: Depth imaging using Reverse Time Migration

Lab 3: Depth imaging using Reverse Time Migration Due Wednesday, May 1, 2013 TA: Yunyue (Elita) Li Lab 3: Depth imaging using Reverse Time Migration Your Name: Anne of Cleves ABSTRACT In this exercise you will familiarize yourself with full wave-equation

More information

The Conventional and Non-conventional Seismic Differencing

The Conventional and Non-conventional Seismic Differencing Summary The Conventional and Non-conventional Seismic Differencing Vanja Vracar* University of Calgary, CREWES Project, Alberta, Canada vmilicev@ucalgary.ca and Robert J. Ferguson University of Calgary,

More information

Robust Seismic Image Amplitude Recovery Using Curvelets

Robust Seismic Image Amplitude Recovery Using Curvelets Robust Seismic Image Amplitude Recovery Using Curvelets Peyman P. Moghaddam Joint work with Felix J. Herrmann and Christiaan C. Stolk UNIVERSITY OF BRITISH COLUMBIA University of Twente References Curvelets

More information

An imaging technique for subsurface faults using Teleseismic-Wave Records II Improvement in the detectability of subsurface faults

An imaging technique for subsurface faults using Teleseismic-Wave Records II Improvement in the detectability of subsurface faults Earth Planets Space, 52, 3 11, 2000 An imaging technique for subsurface faults using Teleseismic-Wave Records II Improvement in the detectability of subsurface faults Takumi Murakoshi 1, Hiroshi Takenaka

More information

Target-oriented computation of the wave-equation imaging Hessian

Target-oriented computation of the wave-equation imaging Hessian Stanford Exploration Project, Report 117, October 23, 2004, pages 63 77 Target-oriented computation of the wave-equation imaging Hessian Alejandro A. Valenciano and Biondo Biondi 1 ABSTRACT A target-oriented

More information

Machine-learning Based Automated Fault Detection in Seismic Traces

Machine-learning Based Automated Fault Detection in Seismic Traces Machine-learning Based Automated Fault Detection in Seismic Traces Chiyuan Zhang and Charlie Frogner (MIT), Mauricio Araya-Polo and Detlef Hohl (Shell International E & P Inc.) June 9, 24 Introduction

More information

Imaging and Full Waveform Inversion of seismic data from the CO 2 gas cloud at Sleipner

Imaging and Full Waveform Inversion of seismic data from the CO 2 gas cloud at Sleipner Imaging and Full Waveform Inversion of seismic data from the CO 2 gas cloud at Sleipner Espen Birger Raknes, Børge Arntsen, and Wiktor Weibull Norwegian University of Science and Technology (NTNU) Department

More information

A hybrid tomography method for crosswell seismic inversion

A hybrid tomography method for crosswell seismic inversion hybrid tomography method A hybrid tomography method for crosswell seismic inversion Danping Cao and Wenyuan Liao SUMMARY The waveform tomography, or full waveform inversion (FWI), is in general better

More information

Least Squares Kirchhoff Depth Migration: potentials, challenges and its relation to interpolation

Least Squares Kirchhoff Depth Migration: potentials, challenges and its relation to interpolation Least Squares Kirchhoff Depth Migration: potentials, challenges and its relation to interpolation Daniel Trad CGG Summary Least Squares Migration (LSM), like interpolation, has the potential to address

More information

Multi-source Least-squares Migration of Gulf of Mexico Data

Multi-source Least-squares Migration of Gulf of Mexico Data Multi-source Least-squares Migration of Gulf of Mexico Data Xin Wang. King Abdullah University of Science and Technology, Thuwal 955-69, Kingdom of Saudi Arabia Corresponding author is Xin Wang. E-mail

More information

Iterative Methods for Solving Linear Problems

Iterative Methods for Solving Linear Problems Iterative Methods for Solving Linear Problems When problems become too large (too many data points, too many model parameters), SVD and related approaches become impractical. Iterative Methods for Solving

More information

Iterative resolution estimation in Kirchhoff imaging

Iterative resolution estimation in Kirchhoff imaging Stanford Exploration Project, Report SERGEY, November 9, 2000, pages 369?? Iterative resolution estimation in Kirchhoff imaging Robert G. Clapp, Sergey Fomel, and Marie Prucha 1 ABSTRACT We apply iterative

More information

The determination of the correct

The determination of the correct SPECIAL High-performance SECTION: H i gh-performance computing computing MARK NOBLE, Mines ParisTech PHILIPPE THIERRY, Intel CEDRIC TAILLANDIER, CGGVeritas (formerly Mines ParisTech) HENRI CALANDRA, Total

More information

Three-dimensional inversion of borehole, time-domain, electromagnetic data for highly conductive ore-bodies.

Three-dimensional inversion of borehole, time-domain, electromagnetic data for highly conductive ore-bodies. Three-dimensional inversion of borehole, time-domain, electromagnetic data for highly conductive ore-bodies. Nigel Phillips, Doug Oldenburg, Eldad Haber, Roman Shekhtman. UBC-Geophysical Inversion Facility

More information

Ultrasonic Multi-Skip Tomography for Pipe Inspection

Ultrasonic Multi-Skip Tomography for Pipe Inspection 18 th World Conference on Non destructive Testing, 16-2 April 212, Durban, South Africa Ultrasonic Multi-Skip Tomography for Pipe Inspection Arno VOLKER 1, Rik VOS 1 Alan HUNTER 1 1 TNO, Stieltjesweg 1,

More information

Least-squares Wave-Equation Migration for Broadband Imaging

Least-squares Wave-Equation Migration for Broadband Imaging Least-squares Wave-Equation Migration for Broadband Imaging S. Lu (Petroleum Geo-Services), X. Li (Petroleum Geo-Services), A. Valenciano (Petroleum Geo-Services), N. Chemingui* (Petroleum Geo-Services),

More information

SEG/New Orleans 2006 Annual Meeting

SEG/New Orleans 2006 Annual Meeting D frequency-domain finite-difference modeling of acoustic wave propagation using a massively parallel direct solver: a feasibility study S. Operto, J. Virieux, Géosciences Azur, P. Amestoy, L. Giraud ENSEEIHT-IRIT,

More information

arxiv: v2 [cs.ms] 14 Dec 2016

arxiv: v2 [cs.ms] 14 Dec 2016 JINV A FLEXIBLE JULIA PACKAGE FOR PDE PARAMETER ESTIMATION LARS RUTHOTTO, ERAN TREISTER, AND ELDAD HABER arxiv:1606.07399v2 [cs.ms] 14 Dec 2016 Abstract. Estimating parameters of Partial Differential Equations

More information