REN R 690 Lab Geostatistics Lab

Size: px
Start display at page:

Download "REN R 690 Lab Geostatistics Lab"

Transcription

1 REN R 690 Lab Geostatistics Lab The objective of this lab is to try out some basic geostatistical tools with R. Geostatistics is used primarily in the resource and environmental areas for estimation, uncertainty quantification and integrating data with difference volumetric supports, precisions and sources. This lab will introduce you to variograms and kriging for spatial data using the R package gstat. These concepts will be introduced using a 2D data set from a West Texas oil deposit. This is a nice small data set consisting of 62 wells from a carbonate-siltstone reservoir in West Texas. It includes measurements of porosity (void fraction) and permeability (measure of how easily fluid flows through the rock). The X and Y coordinates in the data set correspond to Easting and Northing values (in ft), respectively. We are interested in mapping porosity for this reservoir since this directly correlates to the oil in place. If you have time at the end, you can try the same procedure with permeability since this directly correlates with our ability to extract the oil. Even better, you could apply this procedure to some of your own spatial data! 1. Getting Started Download the dataset 2dwelldata.csv. Load this data set into R and check that it imported correctly. welldata = read.csv("2dwelldata.csv") fix(welldata) attach(welldata) Let s have a look at a map of the well locations. We can plot a simple map of where the wells were drilled. plot(y~x, xlab="easting",ylab="northing") This isn t very interesting though. So we could colour this map by porosity. The porosity varies between about 4 and 12%. To make a plot coloured by porosity where the high porosity rock is coloured red and the low porosity rock is coloured yellow, a set of possible commands would be: mycol=seq(12,4,-0.01) mycol=heat.colors(length(mycol))[rank(mycol)] porcol=round((porosity-4.0)*100.) porcol=mycol[porcol] plot(y~x,pch=16,col=porcol,xlab="easting", ylab="northing") Jared Deutsch

2 Northing You can colour your map anyway you wish. A map of porosity colored with this scheme: Easting The high porosity rock is all in the East of the area and concentrated in the North-East of the reservoir now the cluster of wells in the North-East makes sense. A large number of wells were drilled in the high porosity region. 2. Variograms Download and install the package gstat. This is an R package with basic geostatistics functionality. Install then load the package in R. install.packages('gstat') library(gstat) This also loads the sp package which is a spatial data frame package. To run the gstat library with this data, the data needs to be coerced into a spatial data frame. This is done by first assigning the coordinates as a set of spatial points and then adding on the porosity data. R code to do this: xyspatial=spatialpoints(cbind(x,y)) porspatial=data.frame(porosity) spatialdata=spatialpointsdataframe(xyspatial,porspatial) Check the spatial data to make sure that it assembled the data correctly. The first few rows should look like: > spatialdata Jared Deutsch

3 coordinates Porosity 1 (9856, 5652) (9767, 4271) (8062, 9321) A variogram can be calculated with gstat using the command: porvario=variogram(porosity~1,spatialdata) This is an omnidirectional (isotropic) variogram. This means that we are assuming that the spatial variability is the same in all directions. This is fine for this exercise although we can tell by the map that this is not the case! The reservoir is much more continuous in the North-South direction than the East-West direction. A variogram plot should always include a line with the sill. The sill is the point at which there is no spatial correlation. This value corresponds to the data variance. Figure from University of Alberta MIN E 310 Lecture Notes We can now calculate the variogram sill (variance) and plot the variogram. One quick note: the terms variogram and semivariogram are used interchangeably. Technically the semivariogram (what we are calculating) is the variogram value divided by 2, but since we always divide by 2 to calculate the semivariogram they are used interchangeably. porsill=var(porosity) plot(porvario$dist,porvario$gamma,xlim=c(0,8000),ylim=c(0,porsill+1),xlab="distance (ft)",ylab="semivariogram") abline(h = porsill) text(6000,porsill+0.2,paste("sill =",round(porsill,3))) Jared Deutsch

4 Semivariogram The abline command with h tells R to plot a horizontal line at the sill value. We are adding text with the sill value above; the paste command tells R to concatenate the strings. Your plot should look like: Sill = Distance (ft) Right now we know experimental variogram values at a few specific distances but we need to model this variogram so that we know the variogram values at all distances. This means that we need to determine: The nugget effect The variogram shape The variogram contribution The variogram range For simple cases like this, it is a good idea to pick the nugget effect yourself based on your knowledge of the variable. Recall that the nugget effect can be thought of as the y-axis intercept. In this case, the nugget effect looks pretty low. We might estimate a nugget effect of about 0.3. There are a number of permissible variogram models the reason we need to pick a defined variogram model rather than fitting the curve with any function is that the calculated covariance matrix must be positive definite. With the defined variogram models (spherical, exponential, Gaussian) this is always true. If we were to use another function this might not be the case. Here we could choose the spherical variogram model. Jared Deutsch

5 The variogram contribution should sum with the nugget effect to the data variance (sill). Since we picked a nugget effect of 0.3, the variogram contribution would be = If you picked a different nugget effect then adjust your variogram contribution accordingly. The variogram range is the point at which the variogram reaches the sill. It looks like this occurs at around 8000 ft, but we can use the variogram fitting function in the gstat package to help us pick the range. The variogram range is determined by: porvm=fit.variogram(porvario, model = vgm(3.379, "Sph", 8000, 0.3), fit.sills=false) You can see the values we determined in the variogram model function is our guess for the range. This function will try and fit the range using 8000 as a starting point. We can look at the calculated range by: > porvm model psill range 1 Nug Sph So it fit a range of 8769 ft. This means that our variogram model equation is zero for a distance of zero (no variability at zero distance!) and is the nugget effect plus our spherical variogram model equation for distances larger than 0: ( ) { [ ( ) ( ) ] We can now plot the variogram model and the experimental points together to check if our fit is reasonable. There is a built in plotting capability in gstat, but the plots aren t that pretty so we can do this ourselves given the above function for the spherical variogram model. If you still have your variogram plot open you can add a plot of the model with: curve( *(1.5*(x/8769)-0.5*(x/8769)^3),add=true) You should now have a reasonable variogram model that looks like: Jared Deutsch

6 Semivariogram Sill = Distance (ft) 3. Kriging We can now use our variogram model to estimate porosity over the entire area by kriging. To do this we need a list of locations at which we are going to estimate. We can do this by creating a regular grid which paves the area. Look back at the area quickly. The area is could be summarized as spanning Easting (X) values of 0 to ft and Northing (Y) values of 0 to ft. We could consider estimating a grid where the cells were 250 ft by 250 ft. This would mean we would have 42 cells each in the X and Y directions. The procedure for generating this grid is then: gt = GridTopology(cellcentre.offset=c(125,125), cellsize=c(250,250), cells.dim=c(42,42)) grd=spatialgrid(gt) The generated grid can be checked: > summary(grd) Object of class SpatialGrid Coordinates: min max [1,] [2,] Is projected: NA proj4string : [NA] Jared Deutsch

7 Grid attributes: cellcentre.offset cellsize cells.dim We will use simple kriging. This means that we have to provide a mean (the normal procedure for doing this is declustering, but we will use a naïve mean here). The mean is: > mean(porosity) [1] To krige we provide the variable we are kriging, porosity data, the grid of points to estimate, the variogram model and the mean (beta parameter here). The results can be plotted using the spatial plotting utility. krigedpor=krige(formula=porosity~1, spatialdata, grd, model=vgm(3.379, "Sph", 8769, 0.3), beta=8.402) spplot(krigedpor["var1.pred"], cuts=length(mycol), col.regions=mycol) Kriging is exact so it reproduces the data points exactly. We should have a look and check that this is the case. To do this we first extract the kriged estimates: krigedpoints=cbind(coordinates(grd),krigedpor$var1.pred) Jared Deutsch

8 Northing We can use the same level plot from the lattice library to plot this (we did this in an earlier lab). Install and load the lattice library if you need to. install.packages('lattice') library(lattice) We can make a level plot using the same colors as before: levelplot(krigedpoints[,3]~krigedpoints[,1]*krigedpoints[,2], cuts=length(mycol), col.regions=mycol,xlab="easting", ylab="northing",groups=1) To add the points, we can use the lattice trellis method: trellis.focus("panel", 1, 1, highlight=false) panel.xyplot(x,y,pch=21,cex=1.3,fill=porcol) trellis.unfocus() Easting We see a transition from low to high porosity values moving to the East and all the data values are reproduced. You should see that in the far South East corner where there is very little data, the estimated values tend towards the mean. Now if you have time you could try the same procedure with the permeability data and see if you can estimate permeability over the area. Jared Deutsch

GRAD6/8104; INES 8090 Spatial Statistic Spring 2017

GRAD6/8104; INES 8090 Spatial Statistic Spring 2017 Lab #4 Semivariogram and Kriging (Due Date: 04/04/2017) PURPOSES 1. Learn to conduct semivariogram analysis and kriging for geostatistical data 2. Learn to use a spatial statistical library, gstat, in

More information

Practical 12: Geostatistics

Practical 12: Geostatistics Practical 12: Geostatistics This practical will introduce basic tools for geostatistics in R. You may need first to install and load a few packages. The packages sp and lattice contain useful function

More information

Data Break 8: Kriging the Meuse RiverBIOS 737 Spring 2004 p.1/27

Data Break 8: Kriging the Meuse RiverBIOS 737 Spring 2004 p.1/27 Data Break 8: Kriging the Meuse River BIOS 737 Spring 2004 Data Break 8: Kriging the Meuse RiverBIOS 737 Spring 2004 p.1/27 Meuse River: Reminder library(gstat) Data included in gstat library. data(meuse)

More information

Practical 12: Geostatistics

Practical 12: Geostatistics Practical 12: Geostatistics This practical will introduce basic tools for geostatistics in R. You may need first to install and load a few packages. The packages sp and lattice contain useful function

More information

Exploring the World of Ordinary Kriging. Dennis J. J. Walvoort. Wageningen University & Research Center Wageningen, The Netherlands

Exploring the World of Ordinary Kriging. Dennis J. J. Walvoort. Wageningen University & Research Center Wageningen, The Netherlands Exploring the World of Ordinary Kriging Wageningen University & Research Center Wageningen, The Netherlands July 2004 (version 0.2) What is? What is it about? Potential Users a computer program for exploring

More information

University of California, Los Angeles Department of Statistics. Universal kriging

University of California, Los Angeles Department of Statistics. Universal kriging University of California, Los Angeles Department of Statistics Statistics C173/C273 Instructor: Nicolas Christou Universal kriging The Ordinary Kriging (OK) that was discussed earlier is based on the constant

More information

A Short Note on the Proportional Effect and Direct Sequential Simulation

A Short Note on the Proportional Effect and Direct Sequential Simulation A Short Note on the Proportional Effect and Direct Sequential Simulation Abstract B. Oz (boz@ualberta.ca) and C. V. Deutsch (cdeutsch@ualberta.ca) University of Alberta, Edmonton, Alberta, CANADA Direct

More information

7 Geostatistics. Figure 7.1 Focus of geostatistics

7 Geostatistics. Figure 7.1 Focus of geostatistics 7 Geostatistics 7.1 Introduction Geostatistics is the part of statistics that is concerned with geo-referenced data, i.e. data that are linked to spatial coordinates. To describe the spatial variation

More information

Geostatistical Determination of Production Uncertainty: Application to Firebag Project

Geostatistical Determination of Production Uncertainty: Application to Firebag Project Geostatistical Determination of Production Uncertainty: Application to Firebag Project Abstract C. V. Deutsch, University of Alberta (cdeutsch@civil.ualberta.ca) E. Dembicki and K.C. Yeung, Suncor Energy

More information

University of California, Los Angeles Department of Statistics. Geostatistical data: variogram and kriging

University of California, Los Angeles Department of Statistics. Geostatistical data: variogram and kriging University of California, Los Angeles Department of Statistics Statistics 403 Instructor: Nicolas Christou Geostatistical data: variogram and kriging Let Z(s) and Z(s + h) two random variables at locations

More information

Correcting Variogram Reproduction of P-Field Simulation

Correcting Variogram Reproduction of P-Field Simulation Correcting Variogram Reproduction of P-Field Simulation Julián M. Ortiz (jmo1@ualberta.ca) Department of Civil & Environmental Engineering University of Alberta Abstract Probability field simulation is

More information

A MultiGaussian Approach to Assess Block Grade Uncertainty

A MultiGaussian Approach to Assess Block Grade Uncertainty A MultiGaussian Approach to Assess Block Grade Uncertainty Julián M. Ortiz 1, Oy Leuangthong 2, and Clayton V. Deutsch 2 1 Department of Mining Engineering, University of Chile 2 Department of Civil &

More information

11. Kriging. ACE 492 SA - Spatial Analysis Fall 2003

11. Kriging. ACE 492 SA - Spatial Analysis Fall 2003 11. Kriging ACE 492 SA - Spatial Analysis Fall 2003 c 2003 by Luc Anselin, All Rights Reserved 1 Objectives The goal of this lab is to further familiarize yourself with ESRI s Geostatistical Analyst, extending

More information

Combining geological surface data and geostatistical model for Enhanced Subsurface geological model

Combining geological surface data and geostatistical model for Enhanced Subsurface geological model Combining geological surface data and geostatistical model for Enhanced Subsurface geological model M. Kurniawan Alfadli, Nanda Natasia, Iyan Haryanto Faculty of Geological Engineering Jalan Raya Bandung

More information

What s for today. All about Variogram Nugget effect. Mikyoung Jun (Texas A&M) stat647 lecture 4 September 6, / 17

What s for today. All about Variogram Nugget effect. Mikyoung Jun (Texas A&M) stat647 lecture 4 September 6, / 17 What s for today All about Variogram Nugget effect Mikyoung Jun (Texas A&M) stat647 lecture 4 September 6, 2012 1 / 17 What is the variogram? Let us consider a stationary (or isotropic) random field Z

More information

Applied geostatistics Exercise 6 Assessing the quality of spatial predictions Geostatistical simulation

Applied geostatistics Exercise 6 Assessing the quality of spatial predictions Geostatistical simulation Applied geostatistics Exercise 6 Assessing the quality of spatial predictions Geostatistical simulation D G Rossiter University of Twente, Faculty of Geo-Information Science & Earth Observation (ITC) June

More information

Building Blocks for Direct Sequential Simulation on Unstructured Grids

Building Blocks for Direct Sequential Simulation on Unstructured Grids Building Blocks for Direct Sequential Simulation on Unstructured Grids Abstract M. J. Pyrcz (mpyrcz@ualberta.ca) and C. V. Deutsch (cdeutsch@ualberta.ca) University of Alberta, Edmonton, Alberta, CANADA

More information

Chapter 1. Summer School GEOSTAT 2014, Spatio-Temporal Geostatistics,

Chapter 1. Summer School GEOSTAT 2014, Spatio-Temporal Geostatistics, Chapter 1 Summer School GEOSTAT 2014, Geostatistics, 2014-06-19 sum- http://ifgi.de/graeler Institute for Geoinformatics University of Muenster 1.1 Spatial Data From a purely statistical perspective, spatial

More information

Quantifying uncertainty of geological 3D layer models, constructed with a-priori

Quantifying uncertainty of geological 3D layer models, constructed with a-priori Quantifying uncertainty of geological 3D layer models, constructed with a-priori geological expertise Jan Gunnink, Denise Maljers 2 and Jan Hummelman 2, TNO Built Environment and Geosciences Geological

More information

Traps for the Unwary Subsurface Geoscientist

Traps for the Unwary Subsurface Geoscientist Traps for the Unwary Subsurface Geoscientist ashley.francis@sorviodvnvm.co.uk http://www.sorviodvnvm.co.uk Presented at SEG Development & Production Forum, 24-29 th June 2001, Taos, New Mexico, USA 24-29

More information

Reservoir Uncertainty Calculation by Large Scale Modeling

Reservoir Uncertainty Calculation by Large Scale Modeling Reservoir Uncertainty Calculation by Large Scale Modeling Naeem Alshehri and Clayton V. Deutsch It is important to have a good estimate of the amount of oil or gas in a reservoir. The uncertainty in reserve

More information

PRODUCING PROBABILITY MAPS TO ASSESS RISK OF EXCEEDING CRITICAL THRESHOLD VALUE OF SOIL EC USING GEOSTATISTICAL APPROACH

PRODUCING PROBABILITY MAPS TO ASSESS RISK OF EXCEEDING CRITICAL THRESHOLD VALUE OF SOIL EC USING GEOSTATISTICAL APPROACH PRODUCING PROBABILITY MAPS TO ASSESS RISK OF EXCEEDING CRITICAL THRESHOLD VALUE OF SOIL EC USING GEOSTATISTICAL APPROACH SURESH TRIPATHI Geostatistical Society of India Assumptions and Geostatistical Variogram

More information

Subsurface Consultancy Services

Subsurface Consultancy Services Subsurface Consultancy Services Porosity from Reservoir Modeling Perspective Arnout Everts with contributions by Peter Friedinger and Laurent Alessio FESM June 2011 LEAP Energy Main Office: G-Tower, level

More information

Anomaly Density Estimation from Strip Transect Data: Pueblo of Isleta Example

Anomaly Density Estimation from Strip Transect Data: Pueblo of Isleta Example Anomaly Density Estimation from Strip Transect Data: Pueblo of Isleta Example Sean A. McKenna, Sandia National Laboratories Brent Pulsipher, Pacific Northwest National Laboratory May 5 Distribution Statement

More information

Point patterns. The average number of events (the intensity, (s)) is homogeneous

Point patterns. The average number of events (the intensity, (s)) is homogeneous Point patterns Consider the point process {Z(s) :s 2 D R 2 }.Arealization of this process consists of a pattern (arrangement) of points in D. (D is a random set.) These points are called the events of

More information

Types of Spatial Data

Types of Spatial Data Spatial Data Types of Spatial Data Point pattern Point referenced geostatistical Block referenced Raster / lattice / grid Vector / polygon Point Pattern Data Interested in the location of points, not their

More information

Introduction. Semivariogram Cloud

Introduction. Semivariogram Cloud Introduction Data: set of n attribute measurements {z(s i ), i = 1,, n}, available at n sample locations {s i, i = 1,, n} Objectives: Slide 1 quantify spatial auto-correlation, or attribute dissimilarity

More information

Advances in Locally Varying Anisotropy With MDS

Advances in Locally Varying Anisotropy With MDS Paper 102, CCG Annual Report 11, 2009 ( 2009) Advances in Locally Varying Anisotropy With MDS J.B. Boisvert and C. V. Deutsch Often, geology displays non-linear features such as veins, channels or folds/faults

More information

Improving Spatial Data Interoperability

Improving Spatial Data Interoperability Improving Spatial Data Interoperability A Framework for Geostatistical Support-To To-Support Interpolation Michael F. Goodchild, Phaedon C. Kyriakidis, Philipp Schneider, Matt Rice, Qingfeng Guan, Jordan

More information

Assessing Pillar Geometries in the Witbank and Highveld Coalfields Using Geostatistical Techniques

Assessing Pillar Geometries in the Witbank and Highveld Coalfields Using Geostatistical Techniques Assessing Pillar Geometries in the Witbank and Highveld Coalfields Using Geostatistical Techniques Gavin H Lind Department of Mining Engineering University of the Witwatersrand Private Bag X3, WITS, 2050

More information

Lecture 5 Geostatistics

Lecture 5 Geostatistics Lecture 5 Geostatistics Lecture Outline Spatial Estimation Spatial Interpolation Spatial Prediction Sampling Spatial Interpolation Methods Spatial Prediction Methods Interpolating Raster Surfaces with

More information

Gridding of precipitation and air temperature observations in Belgium. Michel Journée Royal Meteorological Institute of Belgium (RMI)

Gridding of precipitation and air temperature observations in Belgium. Michel Journée Royal Meteorological Institute of Belgium (RMI) Gridding of precipitation and air temperature observations in Belgium Michel Journée Royal Meteorological Institute of Belgium (RMI) Gridding of meteorological data A variety of hydrologic, ecological,

More information

Umeå University Sara Sjöstedt-de Luna Time series analysis and spatial statistics

Umeå University Sara Sjöstedt-de Luna Time series analysis and spatial statistics Umeå University 01-05-5 Sara Sjöstedt-de Luna Time series analysis and spatial statistics Laboration in ArcGIS Geostatistical Analyst These exercises are aiming at helping you understand ArcGIS Geostatistical

More information

Time to Depth Conversion and Uncertainty Characterization for SAGD Base of Pay in the McMurray Formation, Alberta, Canada*

Time to Depth Conversion and Uncertainty Characterization for SAGD Base of Pay in the McMurray Formation, Alberta, Canada* Time to Depth Conversion and Uncertainty Characterization for SAGD Base of Pay in the McMurray Formation, Alberta, Canada* Amir H. Hosseini 1, Hong Feng 1, Abu Yousuf 1, and Tony Kay 1 Search and Discovery

More information

Practical application of drill hole spacing analysis in coal resource estimation

Practical application of drill hole spacing analysis in coal resource estimation Practical application of drill hole spacing analysis in coal resource estimation C.M.Williams 1, K.Henderson 2 and S.Summers 2 1. HDR mining consultants, Level 23, 12 Creek Street, Brisbane, Qld, 4000

More information

Best Practice Reservoir Characterization for the Alberta Oil Sands

Best Practice Reservoir Characterization for the Alberta Oil Sands Best Practice Reservoir Characterization for the Alberta Oil Sands Jason A. McLennan and Clayton V. Deutsch Centre for Computational Geostatistics (CCG) Department of Civil and Environmental Engineering

More information

Biol 206/306 Advanced Biostatistics Lab 12 Bayesian Inference

Biol 206/306 Advanced Biostatistics Lab 12 Bayesian Inference Biol 206/306 Advanced Biostatistics Lab 12 Bayesian Inference By Philip J. Bergmann 0. Laboratory Objectives 1. Learn what Bayes Theorem and Bayesian Inference are 2. Reinforce the properties of Bayesian

More information

Modeling Data with Linear Combinations of Basis Functions. Read Chapter 3 in the text by Bishop

Modeling Data with Linear Combinations of Basis Functions. Read Chapter 3 in the text by Bishop Modeling Data with Linear Combinations of Basis Functions Read Chapter 3 in the text by Bishop A Type of Supervised Learning Problem We want to model data (x 1, t 1 ),..., (x N, t N ), where x i is a vector

More information

B008 COMPARISON OF METHODS FOR DOWNSCALING OF COARSE SCALE PERMEABILITY ESTIMATES

B008 COMPARISON OF METHODS FOR DOWNSCALING OF COARSE SCALE PERMEABILITY ESTIMATES 1 B8 COMPARISON OF METHODS FOR DOWNSCALING OF COARSE SCALE PERMEABILITY ESTIMATES Alv-Arne Grimstad 1 and Trond Mannseth 1,2 1 RF-Rogaland Research 2 Now with CIPR - Centre for Integrated Petroleum Research,

More information

Point-Referenced Data Models

Point-Referenced Data Models Point-Referenced Data Models Jamie Monogan University of Georgia Spring 2013 Jamie Monogan (UGA) Point-Referenced Data Models Spring 2013 1 / 19 Objectives By the end of these meetings, participants should

More information

Spatial Interpolation & Geostatistics

Spatial Interpolation & Geostatistics (Z i Z j ) 2 / 2 Spatial Interpolation & Geostatistics Lag Lag Mean Distance between pairs of points 1 y Kriging Step 1 Describe spatial variation with Semivariogram (Z i Z j ) 2 / 2 Point cloud Map 3

More information

University of California, Los Angeles Department of Statistics

University of California, Los Angeles Department of Statistics University of California, Los Angeles Department of Statistics Statistics C173/C273 Instructor: Nicolas Christou Working with gstat - An example We will use the data from the Meuse (Dutch Maas) river.

More information

The SPE Foundation through member donations and a contribution from Offshore Europe

The SPE Foundation through member donations and a contribution from Offshore Europe Primary funding is provided by The SPE Foundation through member donations and a contribution from Offshore Europe The Society is grateful to those companies that allow their professionals to serve as

More information

Spatial Data Analysis in Archaeology Anthropology 589b. Kriging Artifact Density Surfaces in ArcGIS

Spatial Data Analysis in Archaeology Anthropology 589b. Kriging Artifact Density Surfaces in ArcGIS Spatial Data Analysis in Archaeology Anthropology 589b Fraser D. Neiman University of Virginia 2.19.07 Spring 2007 Kriging Artifact Density Surfaces in ArcGIS 1. The ingredients. -A data file -- in.dbf

More information

Spatial Analysis II. Spatial data analysis Spatial analysis and inference

Spatial Analysis II. Spatial data analysis Spatial analysis and inference Spatial Analysis II Spatial data analysis Spatial analysis and inference Roadmap Spatial Analysis I Outline: What is spatial analysis? Spatial Joins Step 1: Analysis of attributes Step 2: Preparing for

More information

The Proportional Effect of Spatial Variables

The Proportional Effect of Spatial Variables The Proportional Effect of Spatial Variables J. G. Manchuk, O. Leuangthong and C. V. Deutsch Centre for Computational Geostatistics, Department of Civil and Environmental Engineering University of Alberta

More information

Acceptable Ergodic Fluctuations and Simulation of Skewed Distributions

Acceptable Ergodic Fluctuations and Simulation of Skewed Distributions Acceptable Ergodic Fluctuations and Simulation of Skewed Distributions Oy Leuangthong, Jason McLennan and Clayton V. Deutsch Centre for Computational Geostatistics Department of Civil & Environmental Engineering

More information

Geostatistical Determination of Production Uncertainty: Application to Pogo Gold Project

Geostatistical Determination of Production Uncertainty: Application to Pogo Gold Project Geostatistical Determination of Production Uncertainty: Application to Pogo Gold Project Jason A. McLennan 1, Clayton V. Deutsch 1, Jack DiMarchi 2 and Peter Rolley 2 1 University of Alberta 2 Teck Cominco

More information

EOSC 110 Reading Week Activity, February Visible Geology: Building structural geology skills by exploring 3D models online

EOSC 110 Reading Week Activity, February Visible Geology: Building structural geology skills by exploring 3D models online EOSC 110 Reading Week Activity, February 2015. Visible Geology: Building structural geology skills by exploring 3D models online Geological maps show where rocks of different ages occur on the Earth s

More information

Facies Modeling in Presence of High Resolution Surface-based Reservoir Models

Facies Modeling in Presence of High Resolution Surface-based Reservoir Models Facies Modeling in Presence of High Resolution Surface-based Reservoir Models Kevin Zhang Centre for Computational Geostatistics Department of Civil and Environmental Engineering University of Alberta

More information

Stepwise Conditional Transformation for Simulation of Multiple Variables 1

Stepwise Conditional Transformation for Simulation of Multiple Variables 1 Mathematical Geology, Vol. 35, No. 2, February 2003 ( C 2003) Stepwise Conditional Transformation for Simulation of Multiple Variables 1 Oy Leuangthong 2 and Clayton V. Deutsch 2 Most geostatistical studies

More information

Biol 206/306 Advanced Biostatistics Lab 12 Bayesian Inference Fall 2016

Biol 206/306 Advanced Biostatistics Lab 12 Bayesian Inference Fall 2016 Biol 206/306 Advanced Biostatistics Lab 12 Bayesian Inference Fall 2016 By Philip J. Bergmann 0. Laboratory Objectives 1. Learn what Bayes Theorem and Bayesian Inference are 2. Reinforce the properties

More information

The presentation is entitled ANISOTROPY OF THE ROCK QUALITY DESIGNATION & ITS GEOSTATISTICAL EVALUATION».

The presentation is entitled ANISOTROPY OF THE ROCK QUALITY DESIGNATION & ITS GEOSTATISTICAL EVALUATION». It is my pleasure to present the work done jointly by my collaborator Doctor Serge Séguret from France, and myself, on data provided by my team and by my colleague Claudio Rojas The presentation is entitled

More information

Lecture 9: Introduction to Kriging

Lecture 9: Introduction to Kriging Lecture 9: Introduction to Kriging Math 586 Beginning remarks Kriging is a commonly used method of interpolation (prediction) for spatial data. The data are a set of observations of some variable(s) of

More information

Experiment 1: Linear Regression

Experiment 1: Linear Regression Experiment 1: Linear Regression August 27, 2018 1 Description This first exercise will give you practice with linear regression. These exercises have been extensively tested with Matlab, but they should

More information

11/8/2018. Spatial Interpolation & Geostatistics. Kriging Step 1

11/8/2018. Spatial Interpolation & Geostatistics. Kriging Step 1 (Z i Z j ) 2 / 2 (Z i Zj) 2 / 2 Semivariance y 11/8/2018 Spatial Interpolation & Geostatistics Kriging Step 1 Describe spatial variation with Semivariogram Lag Distance between pairs of points Lag Mean

More information

A Review/Intro to some Principles of Astronomy

A Review/Intro to some Principles of Astronomy A Review/Intro to some Principles of Astronomy The game of astrophysics is using physical laws to explain astronomical observations There are many instances of interesting physics playing important role

More information

Application and evaluation of universal kriging for optimal contouring of groundwater levels

Application and evaluation of universal kriging for optimal contouring of groundwater levels Application and evaluation of universal kriging for optimal contouring of groundwater levels B V N P Kambhammettu 1,, Praveena Allena 2, and JamesPKing 1, 1 Civil Engineering Department, New Mexico State

More information

Conditional Distribution Fitting of High Dimensional Stationary Data

Conditional Distribution Fitting of High Dimensional Stationary Data Conditional Distribution Fitting of High Dimensional Stationary Data Miguel Cuba and Oy Leuangthong The second order stationary assumption implies the spatial variability defined by the variogram is constant

More information

Geostatistics: Kriging

Geostatistics: Kriging Geostatistics: Kriging 8.10.2015 Konetekniikka 1, Otakaari 4, 150 10-12 Rangsima Sunila, D.Sc. Background What is Geostatitics Concepts Variogram: experimental, theoretical Anisotropy, Isotropy Lag, Sill,

More information

Finding the Nearest Positive Definite Matrix for Input to Semiautomatic Variogram Fitting (varfit_lmc)

Finding the Nearest Positive Definite Matrix for Input to Semiautomatic Variogram Fitting (varfit_lmc) Finding the Nearest Positive Definite Matrix for Input to Semiautomatic Variogram Fitting (varfit_lmc) Arja Jewbali (arja.jewbali@riotinto.com) Resource Estimation Geologist Rio Tinto Iron Ore In resource

More information

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

Downloaded 10/25/16 to Redistribution subject to SEG license or copyright; see Terms of Use at Facies modeling in unconventional reservoirs using seismic derived facies probabilities Reinaldo J. Michelena*, Omar G. Angola, and Kevin S. Godbey, ireservoir.com, Inc. Summary We present in this paper

More information

Time-lapse filtering and improved repeatability with automatic factorial co-kriging. Thierry Coléou CGG Reservoir Services Massy

Time-lapse filtering and improved repeatability with automatic factorial co-kriging. Thierry Coléou CGG Reservoir Services Massy Time-lapse filtering and improved repeatability with automatic factorial co-kriging. Thierry Coléou CGG Reservoir Services Massy 1 Outline Introduction Variogram and Autocorrelation Factorial Kriging Factorial

More information

Applied Geostatisitcs Analysis for Reservoir Characterization Based on the SGeMS (Stanford

Applied Geostatisitcs Analysis for Reservoir Characterization Based on the SGeMS (Stanford Open Journal of Yangtze Gas and Oil, 2017, 2, 45-66 http://www.scirp.org/journal/ojogas ISSN Online: 2473-1900 ISSN Print: 2473-1889 Applied Geostatisitcs Analysis for Reservoir Characterization Based

More information

Optimizing Thresholds in Truncated Pluri-Gaussian Simulation

Optimizing Thresholds in Truncated Pluri-Gaussian Simulation Optimizing Thresholds in Truncated Pluri-Gaussian Simulation Samaneh Sadeghi and Jeff B. Boisvert Truncated pluri-gaussian simulation (TPGS) is an extension of truncated Gaussian simulation. This method

More information

Soil Moisture Modeling using Geostatistical Techniques at the O Neal Ecological Reserve, Idaho

Soil Moisture Modeling using Geostatistical Techniques at the O Neal Ecological Reserve, Idaho Final Report: Forecasting Rangeland Condition with GIS in Southeastern Idaho Soil Moisture Modeling using Geostatistical Techniques at the O Neal Ecological Reserve, Idaho Jacob T. Tibbitts, Idaho State

More information

ZONAL KRIGING. 5.1: Introduction and Previous Work CHAPTER 5

ZONAL KRIGING. 5.1: Introduction and Previous Work CHAPTER 5 CHAPTER 5 ZONAL KRIGING Kriging and conditional indicator simulation are valuable tools for evaluating uncertainty in the subsurface, but are limited by the assumption of stationarity (i.e. the mean and

More information

Data and Error Analysis

Data and Error Analysis Data and Error Analysis Introduction In this lab you will learn a bit about taking data and error analysis. The physics of the experiment itself is not the essential point. (Indeed, we have not completed

More information

Reservoir Modeling with GSLIB. Overview

Reservoir Modeling with GSLIB. Overview Reservoir Modeling with GSLIB Overview Objectives of the Course What is Geostatistics? Why Geostatistics / 3-D Modeling? Uncertainty Quantification and Decision Making Heterogeneous Reservoir Modeling

More information

I don t have much to say here: data are often sampled this way but we more typically model them in continuous space, or on a graph

I don t have much to say here: data are often sampled this way but we more typically model them in continuous space, or on a graph Spatial analysis Huge topic! Key references Diggle (point patterns); Cressie (everything); Diggle and Ribeiro (geostatistics); Dormann et al (GLMMs for species presence/abundance); Haining; (Pinheiro and

More information

LAB EXERCISE #3 Quantifying Point and Gradient Patterns

LAB EXERCISE #3 Quantifying Point and Gradient Patterns LAB EXERCISE #3 Quantifying Point and Gradient Patterns Instructor: K. McGarigal Overview: In this exercise, you will learn to appreciate the challenges of quantifying point and gradient patterns and gain

More information

Porosity prediction using cokriging with multiple secondary datasets

Porosity prediction using cokriging with multiple secondary datasets Cokriging with Multiple Attributes Porosity prediction using cokriging with multiple secondary datasets Hong Xu, Jian Sun, Brian Russell, Kris Innanen ABSTRACT The prediction of porosity is essential for

More information

NEW GEOLOGIC GRIDS FOR ROBUST GEOSTATISTICAL MODELING OF HYDROCARBON RESERVOIRS

NEW GEOLOGIC GRIDS FOR ROBUST GEOSTATISTICAL MODELING OF HYDROCARBON RESERVOIRS FOR ROBUST GEOSTATISTICAL MODELING OF HYDROCARBON RESERVOIRS EMMANUEL GRINGARTEN, BURC ARPAT, STANISLAS JAYR and JEAN- LAURENT MALLET Paradigm Houston, USA. ABSTRACT Geostatistical modeling of reservoir

More information

Introduction to Geostatistics

Introduction to Geostatistics Introduction to Geostatistics Abhi Datta 1, Sudipto Banerjee 2 and Andrew O. Finley 3 July 31, 2017 1 Department of Biostatistics, Bloomberg School of Public Health, Johns Hopkins University, Baltimore,

More information

PAPER 206 APPLIED STATISTICS

PAPER 206 APPLIED STATISTICS MATHEMATICAL TRIPOS Part III Thursday, 1 June, 2017 9:00 am to 12:00 pm PAPER 206 APPLIED STATISTICS Attempt no more than FOUR questions. There are SIX questions in total. The questions carry equal weight.

More information

To gain a working knowledge of unit cells, packing efficiency, coordination numbers and their relationship to each other.

To gain a working knowledge of unit cells, packing efficiency, coordination numbers and their relationship to each other. Solid State Modeling PURPOSE A B To explore some simple solid state structures. To explore unit cell stoichiometry. GOALS To visualize the three-dimensional arrangement of atoms and ions in common solid

More information

Mapping Precipitation in Switzerland with Ordinary and Indicator Kriging

Mapping Precipitation in Switzerland with Ordinary and Indicator Kriging Journal of Geographic Information and Decision Analysis, vol. 2, no. 2, pp. 65-76, 1998 Mapping Precipitation in Switzerland with Ordinary and Indicator Kriging Peter M. Atkinson Department of Geography,

More information

Regression Revisited (again) Isobel Clark Geostokos Limited, Scotland. Abstract

Regression Revisited (again) Isobel Clark Geostokos Limited, Scotland. Abstract Regression Revisited (again) Isobel Clark Geostokos Limited, Scotland Abstract One of the seminal pioneering papers in reserve evaluation was published by Danie Krige in 1951. In this paper he introduced

More information

Stochastic vs Deterministic Pre-stack Inversion Methods. Brian Russell

Stochastic vs Deterministic Pre-stack Inversion Methods. Brian Russell Stochastic vs Deterministic Pre-stack Inversion Methods Brian Russell Introduction Seismic reservoir analysis techniques utilize the fact that seismic amplitudes contain information about the geological

More information

Maximising the use of publicly available data: porosity and permeability mapping of the Rotliegend Leman Sandstone, Southern North Sea

Maximising the use of publicly available data: porosity and permeability mapping of the Rotliegend Leman Sandstone, Southern North Sea Maximising the use of publicly available data: porosity and permeability mapping of the Rotliegend Leman Sandstone, Southern North Sea Claire Imrie & Henk Kombrink 09 May 2018 Overview The Oil and Gas

More information

Tricks to Creating a Resource Block Model. St John s, Newfoundland and Labrador November 4, 2015

Tricks to Creating a Resource Block Model. St John s, Newfoundland and Labrador November 4, 2015 Tricks to Creating a Resource Block Model St John s, Newfoundland and Labrador November 4, 2015 Agenda 2 Domain Selection Top Cut (Grade Capping) Compositing Specific Gravity Variograms Block Size Search

More information

Stepwise Conditional Transformation in Estimation Mode. Clayton V. Deutsch

Stepwise Conditional Transformation in Estimation Mode. Clayton V. Deutsch Stepwise Conditional Transformation in Estimation Mode Clayton V. Deutsch Centre for Computational Geostatistics (CCG) Department of Civil and Environmental Engineering University of Alberta Stepwise Conditional

More information

Probability Methods in Civil Engineering Prof. Rajib Maity Department of Civil Engineering Indian Institute of Technology, Kharagpur

Probability Methods in Civil Engineering Prof. Rajib Maity Department of Civil Engineering Indian Institute of Technology, Kharagpur Probability Methods in Civil Engineering Prof. Rajib Maity Department of Civil Engineering Indian Institute of Technology, Kharagpur Lecture No. # 12 Probability Distribution of Continuous RVs (Contd.)

More information

Geog 210C Spring 2011 Lab 6. Geostatistics in ArcMap

Geog 210C Spring 2011 Lab 6. Geostatistics in ArcMap Geog 210C Spring 2011 Lab 6. Geostatistics in ArcMap Overview In this lab you will think critically about the functionality of spatial interpolation, improve your kriging skills, and learn how to use several

More information

Spatial statistics, addition to Part I. Parameter estimation and kriging for Gaussian random fields

Spatial statistics, addition to Part I. Parameter estimation and kriging for Gaussian random fields Spatial statistics, addition to Part I. Parameter estimation and kriging for Gaussian random fields 1 Introduction Jo Eidsvik Department of Mathematical Sciences, NTNU, Norway. (joeid@math.ntnu.no) February

More information

Reservoir characterization

Reservoir characterization 1/15 Reservoir characterization This paper gives an overview of the activities in geostatistics for the Petroleum industry in the domain of reservoir characterization. This description has been simplified

More information

Spatial Backfitting of Roller Measurement Values from a Florida Test Bed

Spatial Backfitting of Roller Measurement Values from a Florida Test Bed Spatial Backfitting of Roller Measurement Values from a Florida Test Bed Daniel K. Heersink 1, Reinhard Furrer 1, and Mike A. Mooney 2 1 Institute of Mathematics, University of Zurich, CH-8057 Zurich 2

More information

Sequential Simulations of Mixed Discrete-Continuous Properties: Sequential Gaussian Mixture Simulation

Sequential Simulations of Mixed Discrete-Continuous Properties: Sequential Gaussian Mixture Simulation Sequential Simulations of Mixed Discrete-Continuous Properties: Sequential Gaussian Mixture Simulation Dario Grana, Tapan Mukerji, Laura Dovera, and Ernesto Della Rossa Abstract We present here a method

More information

What s for today. Introduction to Space-time models. c Mikyoung Jun (Texas A&M) Stat647 Lecture 14 October 16, / 19

What s for today. Introduction to Space-time models. c Mikyoung Jun (Texas A&M) Stat647 Lecture 14 October 16, / 19 What s for today Introduction to Space-time models c Mikyoung Jun (Texas A&M) Stat647 Lecture 14 October 16, 2012 1 / 19 Space-time Data So far we looked at the data that vary over space Now we add another

More information

TRUNCATED GAUSSIAN AND PLURIGAUSSIAN SIMULATIONS OF LITHOLOGICAL UNITS IN MANSA MINA DEPOSIT

TRUNCATED GAUSSIAN AND PLURIGAUSSIAN SIMULATIONS OF LITHOLOGICAL UNITS IN MANSA MINA DEPOSIT TRUNCATED GAUSSIAN AND PLURIGAUSSIAN SIMULATIONS OF LITHOLOGICAL UNITS IN MANSA MINA DEPOSIT RODRIGO RIQUELME T, GAËLLE LE LOC H 2 and PEDRO CARRASCO C. CODELCO, Santiago, Chile 2 Geostatistics team, Geosciences

More information

Entropy of Gaussian Random Functions and Consequences in Geostatistics

Entropy of Gaussian Random Functions and Consequences in Geostatistics Entropy of Gaussian Random Functions and Consequences in Geostatistics Paula Larrondo (larrondo@ualberta.ca) Department of Civil & Environmental Engineering University of Alberta Abstract Sequential Gaussian

More information

Linear system of equations

Linear system of equations Solving linear systems of equations Renzo: MATH 369 1 Step 1: translation. We observe that finding the solutions of a linear systems of equations is equivalent to determining the inverse image of one vector

More information

Multiple realizations using standard inversion techniques a

Multiple realizations using standard inversion techniques a Multiple realizations using standard inversion techniques a a Published in SEP report, 105, 67-78, (2000) Robert G Clapp 1 INTRODUCTION When solving a missing data problem, geophysicists and geostatisticians

More information

Geostatistical Density Mapping

Geostatistical Density Mapping Geostatistical Density Mapping Sean A. McKenna and Barry Roberts (SNL) Brent Pulsipher & John Hathaway (PNNL) 2008 Partners in Environmental Technology Technical Symposium & Workshop Sandia is a multiprogram

More information

Monte Carlo Simulation. CWR 6536 Stochastic Subsurface Hydrology

Monte Carlo Simulation. CWR 6536 Stochastic Subsurface Hydrology Monte Carlo Simulation CWR 6536 Stochastic Subsurface Hydrology Steps in Monte Carlo Simulation Create input sample space with known distribution, e.g. ensemble of all possible combinations of v, D, q,

More information

Introduction to applied geostatistics. Short version. Overheads

Introduction to applied geostatistics. Short version. Overheads Introduction to applied geostatistics Short version Overheads Department of Earth Systems Analysis International Institute for Geo-information Science & Earth Observation (ITC)

More information

Constraining Uncertainty in Static Reservoir Modeling: A Case Study from Namorado Field, Brazil*

Constraining Uncertainty in Static Reservoir Modeling: A Case Study from Namorado Field, Brazil* Constraining Uncertainty in Static Reservoir Modeling: A Case Study from Namorado Field, Brazil* Juliana F. Bueno 1, Rodrigo D. Drummond 1, Alexandre C. Vidal 1, Emilson P. Leite 1, and Sérgio S. Sancevero

More information

Parallel Simulation of Subsurface Fluid Flow

Parallel Simulation of Subsurface Fluid Flow Parallel Simulation of Subsurface Fluid Flow Scientific Achievement A new mortar domain decomposition method was devised to compute accurate velocities of underground fluids efficiently using massively

More information

Reservoir connectivity uncertainty from stochastic seismic inversion Rémi Moyen* and Philippe M. Doyen (CGGVeritas)

Reservoir connectivity uncertainty from stochastic seismic inversion Rémi Moyen* and Philippe M. Doyen (CGGVeritas) Rémi Moyen* and Philippe M. Doyen (CGGVeritas) Summary Static reservoir connectivity analysis is sometimes based on 3D facies or geobody models defined by combining well data and inverted seismic impedances.

More information

Section 2.5 Absolute Value Functions

Section 2.5 Absolute Value Functions 16 Chapter Section.5 Absolute Value Functions So far in this chapter we have been studying the behavior of linear functions. The Absolute Value Function is a piecewise-defined function made up of two linear

More information