Introduction. Matlab output for Problems 1 2. SOLUTIONS (Carl Tape) Ge111, Assignment #3: Gravity April 25, 2006

Size: px
Start display at page:

Download "Introduction. Matlab output for Problems 1 2. SOLUTIONS (Carl Tape) Ge111, Assignment #3: Gravity April 25, 2006"

Transcription

1 SOLUTIONS (Carl Tape) Ge111, Assignment #3: Gravity April 25, 26 Introduction The point of this solution set is merely to plot the gravity data and show the basic computations. This document contains a Matlab source code that generated Figures 1 and 2, as well as the output below. In practice, various interpolations are much easier using a computer, which also allows for more complex interpolating schemes (e.g., using a cubic function instead of a line). Note that 1 5 mgal = 1 Gal = 1 m s 2. The standard free-air gravity correction is g fa / h =.386 mgal/m =.386 Gal/m = s 2. Matlab output for Problems 1 2 We have measurements of relative gravity, from which we can compute predicted heights. And we have measurements of heights, from which we can computed predicted relative gravity. Using both the gravity and the heights measurements, we can compute the local free-air correction. Plots related to this problem are shown in Figure 1, and the Matlab output is here (see source code): Predicted and measured heights (m): h_pred h_meas Predicted and measured gravity (mgal): g_pred g_meas Predicted and known free-air correction (mgal/m): Note that the measured gravity has been corrected for drift using a linear interpolation (Figure 1), and it has also been referenced to the base station, which is taken to be the ground floor. Similarly, the height measurements are relative to the base station as well. 1

2 Matlab output for Problem 3 The earth is approximated by an ellipsoid. The gravitational field for the reference ellipsoid is that of the World Geodetic System 1984 (WGS84), which is given by (Blakely, 1995, p. 136) g (λ) = sin2 λ sin 2 λ. (1) Another option is from Reynolds (1997): g (λ) = ( sin 2 λ sin 4 λ ). (2) This function is plotted in Figure 2, along with the interpolated points for Pasadena and Chalfant Valley. Note that this is not the geoid: the reference ellipsoid is the equipotential surface of a uniform earth, whereas the geoid is the actual equipotential surface at mean sea level, which takes into account heterogeneous distributions of mass within the earth s interior (Blakely, 1995, p. 136). The observed gravity is modeled by the reference ellipsoid gravity, plus various corrections. Considering the free-air correction, g fa = h, and the Bouguer correction due to an infinite mass slab, g sb = 2πGρh, we can write the estimated gravity as g est (λ, h, ρ) = g (λ) + g fa (h) + g sb (ρ, h), (3) where we have emphasized the key parameters by showing the functional dependence. Here is the Matlab output (see source code), assuming no Bouguer correction 1 : Reference gravities, considering latitudes: PAS : m s^-2 CHV : m s^-2 PAS - CHV : -3.91e-3 m s^-2 = mgal Reference gravities, considering latitudes and elevations: PAS : m s^-2 CHV : m s^-2 PAS - CHV : 1.75e-3 m s^-2 = 17.5 mgal --> So the gravity at PAS should be higher, since the elevation effect outweighs the latitude effect. Reference gravities, considering latitudes, elevations, and Bouguer (rho =. kg m^-3): PAS : m s^-2 CHV : m s^-2 PAS - CHV : 1.75e-3 m s^-2 = 17.5 mgal --> So gravity at either place might be higher, depending on rho. In this case (ρ = ), the gravity at Pasadena is greater than that at Chalfant Valley. 1 Mathematically, we assume the density of the infinite slab to be zero, i.e., ρ = kg m 3. 2

3 Now we consider the case where the infinite slab has a density of ρ = 267 kg m 3, something closer to typical values for rock: Reference gravities, considering latitudes: PAS : m s^-2 CHV : m s^-2 PAS - CHV : -3.91e-3 m s^-2 = mgal Reference gravities, considering latitudes and elevations: PAS : m s^-2 CHV : m s^-2 PAS - CHV : 1.75e-3 m s^-2 = 17.5 mgal --> So the gravity at PAS should be higher, since the elevation effect outweighs the latitude effect. Reference gravities, considering latitudes, elevations, and Bouguer (rho = 267. kg m^-3): PAS : m s^-2 CHV : m s^-2 PAS - CHV : -4.36e-4 m s^-2 = mgal --> So gravity at either place might be higher, depending on rho. In this case (ρ = 267), the gravity at Chalfant Valley is greater than that at Pasadena. Thus, we see that if we use the Bouguer correction, the choice of ρ is crucial. References Blakely, R., Potential Theory in Gravity & Magnetic Applications, Cambridge U. Press, Reynolds, J., An Introduction to Applied and Environmental Geophysics, John Wiley, Chichester, New York,

4 Matlab code close all clear earthr = 6371e3; earthm = 5.97e24; G = 6.673e-11; g = earthm*g/earthr^2; a = earthr; deg = 18/pi; % radius of earth (m) % mass of the earth (kg) % gravitational constant (N m^2 kg^-2) % gravitational acceleration at the surface (m s^-2) % % Problems 1 and 2 fa_known = -.386; % standard free-air correction (mgal/m) % data for S Mudd % N = DATENUM(Y,MO,D,H,MI,S) mins = [ ]; t_meas = datenum(26,4,11,1,mins,); g_meas = [ ]; t_base = t_meas([1 5]); g_base = g_meas([1 5]); % assume linear function for interpolation tbase_smooth = linspace(t_base(1),t_base(2),1); gbase_smooth = linspace(g_base(1),g_base(2),1); % gravity relative to base station measurement g_corr = g_meas - interp1(tbase_smooth,gbase_smooth,t_meas); % height computed from free air anomaly (see notes) h_pred = g_corr / fa_known; % measured heights d_meas = [ ]; h_meas = cumsum(d_meas); disp( Predicted and measured heights (m): ); disp( h_pred h_meas ); disp([h_pred(1:4) h_meas(1:4) ]); % predicted gravity from measured heights using known free-air correction g_pred = fa_known * h_meas; disp( Predicted and measured gravity (mgal): ); disp( g_pred g_meas ); disp([g_pred(1:4) g_corr(1:4) ]); % predicted free air correction from measured heights and measured gravity fa_meas = diff(g_corr(1:4))./ diff(h_meas(1:4)); 4

5 fa_pred = mean(fa_meas); disp( Predicted and known free-air correction (mgal/m): ); disp([fa_pred fa_known]); % figure; nr=3; nc=2; msize = 2; ticks = datenum(26,4,11,1,[:1:3],); subplot(nr,nc,1); hold on; grid on; plot(tbase_smooth, gbase_smooth, b ); plot(t_base, g_base, b., markersize,msize); xlabel( Time ); ylabel( Relative gravity at base station (mgal) ); title({ Correction for drift at base station,, datestr(t_meas(1),)}); set(gca, xtick,ticks, xticklabel,datestr(ticks,15)); subplot(nr,nc,2); hold on; grid on; plot(t_meas, g_meas, b., markersize,msize); xlabel( Time ); ylabel( Relative gravity (mgal) ); title( Gravity data for S. Mudd ); set(gca, xtick,ticks, xticklabel,datestr(ticks,15)); subplot(nr,nc,3); hold on; grid on; plot(t_meas, g_corr, b., markersize,msize); xlabel( Time ); ylabel( Gravity relative to base station (mgal) ); title( Gravity data for S. Mudd ); set(gca, xtick,ticks, xticklabel,datestr(ticks,15)); subplot(nr,nc,4); hold on; grid on; plot(t_meas, h_pred, b., markersize,msize); xlabel( Time ); ylabel( Height relative to base station (m) ); set(gca, xtick,ticks, xticklabel,datestr(ticks,15)); subplot(nr,nc,5); hold on; grid on; ax1 = [ ]; plot(ax1(1:2),ax1(1:2), r-- ); plot(h_pred(1:4), h_meas(1:4), b., markersize,msize); xlabel( Predicted height (m) ); ylabel( Measured height (m) ); title( Gravity --> heights ); axis equal, axis(ax1); subplot(nr,nc,6); hold on; grid on; ax1 = [ ]; plot(ax1(1:2),ax1(1:2), r-- ); plot(g_pred(1:4),g_corr(1:4), b., markersize,msize); xlabel( Predicted free-air gravity (mgal) ); ylabel( Measured free-air gravity (mgal) ); title( Heights --> gravity ); axis equal, axis(ax1); 5

6 %fontsize(1), orient tall, wysiwyg; % % Problem 3 % latitudes of two observation points latpas = /6; latchv = /6; % evenly spaced latitude points latsmooth = linspace(,9,1); iwgs = ; if iwgs==1 % World Geodetic System, 1984 (WGS84) % Reference: Blakely, Potential Theory in Gravity and Magnetic Applications (1995), p.136 glatsmooth = * ( *sin(latsmooth/deg).^2)./ sqrt( else glatsmooth = * ( *sin(latsmooth/deg).^ *sin(latsmoot end % interpolate to determine the reference gravities (latitude correction) gpas = interp1(latsmooth,glatsmooth,latpas); gchv = interp1(latsmooth,glatsmooth,latchv); figure; hold on; grid on; plot(latsmooth, glatsmooth); plot(latpas,gpas, ro ); plot(latchv,gchv, ro ); text(latpas,gpas-.1, PAS ); text(latchv,gchv-.1, CHV ); xlabel( Latitude ); ylabel( Reference gravity (m s^{-2}) ); title( Reference gravity for WGS84 (see Blakely, 1995, p. 136) ); % incorporate the elevations (free-air anomaly) and compute the gravities hpas = 25; hchv = 16; %g1pas = gpas - 2*hPAS*gPAS/a; %g1chv = gchv - 2*hCHV*gCHV/a; g1pas = gpas + fa_known*hpas*1e-5; g1chv = gchv + fa_known*hchv*1e-5; % incorporate the effects of the infinite mass sheet (Bouguer) % Assume that the slab bottom is at the height of Pasadena, % and the slab top is at sea level %rho = ; % density of slab kg/m^3 rho = 267; % density of slab kg/m^3 hslab = ; % bottom of slab g2pas = g1pas + 2*pi*G*rho*(hPAS-hslab); g2chv = g1chv + 2*pi*G*rho*(hCHV-hslab); 6

7 disp( Reference gravities, considering latitudes: ); disp([ PAS : num2str(sprintf( %.6f, gpas)) m s^-2 ]); disp([ CHV : num2str(sprintf( %.6f, gchv)) m s^-2 ]); disp([ PAS - CHV : num2str(sprintf( %.3e, gpas-gchv)) m s^-2 =... num2str(sprintf( %.1f, (gpas-gchv)*1e5)) mgal ]); disp( Reference gravities, considering latitudes and elevations: ); disp([ PAS : num2str(sprintf( %.6f, g1pas)) m s^-2 ]); disp([ CHV : num2str(sprintf( %.6f, g1chv)) m s^-2 ]); disp([ PAS - CHV : num2str(sprintf( %.3e, g1pas-g1chv)) m s^-2 =... num2str(sprintf( %.1f, (g1pas-g1chv)*1e5)) mgal ]); disp( --> So the gravity at PAS should be higher, ); disp( since the elevation effect outweighs the latitude effect. ); disp([ Reference gravities, considering latitudes, elevations, and Bouguer (rho =... num2str(sprintf( %.1f, rho)) kg m^-3): ]); disp([ PAS : num2str(sprintf( %.6f, g2pas)) m s^-2 ]); disp([ CHV : num2str(sprintf( %.6f, g2chv)) m s^-2 ]); disp([ PAS - CHV : num2str(sprintf( %.3e, g2pas-g2chv)) m s^-2 =... num2str(sprintf( %.1f, (g2pas-g2chv)*1e5)) mgal ]); disp( --> So gravity at either place might be higher, depending on rho. ); 7

8 Relative gravity at base station (mgal) Correction for drift at base station, 11 Apr 26 1:2: 1: 1:1 1:2 1:3 Time Relative gravity (mgal) Gravity data for S. Mudd : 1:1 1:2 1:3 Time Gravity relative to base station (mgal) Gravity data for S. Mudd : 1:1 1:2 1:3 Time Height relative to base station (m) : 1:1 1:2 1:3 Time Measured height (m) Gravity > heights 5 1 Predicted height (m) Measured free air gravity (mgal) Heights > gravity Predicted free air gravity (mgal) Figure 1: Various plots for Problems 1 and 2. 8

9 9.84 Gravity for reference earth ellipsoid 9.83 Reference gravity (m s 2 ) CHV PAS Latitude Figure 2: Reference gravity as a function of latitude, based on the WGS84 reference system. The curve is a plot of Equation (2). Gravity is weaker at the Equator, where the surface is farther from the earth s center of mass, due to the bulge of the earth. 9

GRAVITY EXPLORATION (Gph 301) Chokri Jallouli 2014/2015

GRAVITY EXPLORATION (Gph 301) Chokri Jallouli 2014/2015 KING SAUD UNIVERSITY FACULTY OF SCIENCES Department of Geology and Geophysics GRAVITY EXPLORATION (Gph 301) Chokri Jallouli 2014/2015 INTRODUCTION Definition Gravity method consists of measuring, studying

More information

Gravity data reduction

Gravity data reduction Gravity data reduction REDUCTION: raw data à gravity anomaly data Temporal corrections tides and instrument drift Spatial corrections latitude and elevation GRS67 = gravity variation with latitude at sea

More information

Note that gravity exploration is different to seismic exploration in the following way:

Note that gravity exploration is different to seismic exploration in the following way: 224B3 Other factors that cause changes in g and need to be corrected Note that gravity exploration is different to seismic exploration in the following way: In a seismic survey, the travel time depends

More information

Last week we obtained a general solution: 1 cos αdv

Last week we obtained a general solution: 1 cos αdv GRAVITY II Surface Gravity Anomalies Due to Buried Bodies Simple analytical solution may be derived for bodies with uniform density contrast simple shape, such as: Sphere Horizontal/vertical cylinders

More information

Lab 8: Gravity and Isostasy (35 points)

Lab 8: Gravity and Isostasy (35 points) it's not the most important thing in your life right now. But what is important is gravity. Arnold Schwarzenegger as Colonel John Matrix, Commando (Check out this classic of American cinema!) Lab 8: Gravity

More information

2.2 Gravity surveys. Gravity survey

2.2 Gravity surveys. Gravity survey 2.2 Gravity surveys Gravity survey The effect of latitude The effect of elevation The Bouguer effect Topographic effect The effect of tides Summary of corrections Gravity in boreholes Gravity survey In

More information

Gravity Measurements Making Corrections and Calculating Anomalies

Gravity Measurements Making Corrections and Calculating Anomalies Gravity Measurements Making Corrections and Calculating Anomalies After completing this practical you should be able to: Use Excel to perform basic calculations using formulae. Use formulae to automatically

More information

Determination of Subsurface Bulk Density Distribution for Geotechnical Investigation using Gravity Technique

Determination of Subsurface Bulk Density Distribution for Geotechnical Investigation using Gravity Technique Journal of Earth Sciences and Geotechnical Engineering, vol. 7, no.2, 2017, 63-69 ISSN: 1792-9040 (print), 1792-9660 (online) Scienpress Ltd, 2017 Determination of Subsurface Bulk Density Distribution

More information

Gravity 3. Gravity 3. Gravitational Potential and the Geoid. Chuck Connor, Laura Connor. Potential Fields Geophysics: Week 2.

Gravity 3. Gravity 3. Gravitational Potential and the Geoid. Chuck Connor, Laura Connor. Potential Fields Geophysics: Week 2. Gravitational Potential and the Geoid Chuck Connor, Laura Connor Potential Fields Geophysics: Week 2 Objectives for Week 1 Gravity as a vector Gravitational Potential The Geoid Gravity as a vector We can

More information

Introduction to the use of gravity measurements in Ge111A

Introduction to the use of gravity measurements in Ge111A Introduction to the use of gravity measurements in Ge111A Background & basic intuition Data reduction Use of the instrument See Reynolds for detailed quantitative discussion What and Why Gravity measures

More information

Total gravitational field is sum of contributions from all masses.

Total gravitational field is sum of contributions from all masses. Gravity force (acceleration) vs potential (energy) acceleration (g) => GM/r 2 Potential => - GM/r G is Newton s gravitational constant 6.67x10-11 (S.I. units) you should determine what the S.I. units are

More information

mdu G = Fdr = mgdr Dr. Clint Conrad POST 804 Gravity, the Geoid, and Mantle Dynamics Lecture: Gravity and the Geoid U G = G M r

mdu G = Fdr = mgdr Dr. Clint Conrad POST 804 Gravity, the Geoid, and Mantle Dynamics Lecture: Gravity and the Geoid U G = G M r GG 611 Big Gulp Fall 2014 Gravity, the Geoid, and Mantle Dynamics Lecture: Gravity and the Geoid Dr. Clint Conrad POST 804 clintc@hawaii.edu Gravitational Potential For a point mass: Newton s law of gravitation:

More information

Magnetic and Gravity Methods for Geothermal Exploration

Magnetic and Gravity Methods for Geothermal Exploration Magnetic and Gravity Methods for Geothermal Exploration Dr. Hendra Grandis Geophysics - ITB method and survey procedure Aero- or ground magnetic (covers a large area) Schlumberger resistivity mapping and

More information

r( θ) = cos2 θ ω rotation rate θ g geographic latitude - - θ geocentric latitude - - Reference Earth Model - WGS84 (Copyright 2002, David T.

r( θ) = cos2 θ ω rotation rate θ g geographic latitude - - θ geocentric latitude - - Reference Earth Model - WGS84 (Copyright 2002, David T. 1 Reference Earth Model - WGS84 (Copyright 22, David T. Sandwell) ω spheroid c θ θ g a parameter description formula value/unit GM e (WGS84) 3.9864418 x 1 14 m 3 s 2 M e mass of earth - 5.98 x 1 24 kg

More information

Introduction to the use of gravity measurements

Introduction to the use of gravity measurements Introduction to the use of gravity measurements Background & basic intuition Data reduction Use of the instrument See Reynolds, Chpt 2, for detailed quantitative discussion What and Why Gravity measures

More information

r 1 r 2 r 3 Dr is what matters!

r 1 r 2 r 3 Dr is what matters! Today s Agenda Gravity - Background & basic intuition - Data reduction - Use of the instrument - See textbook for detailed quantitative discussion - Measure height of Millikan or S. Mudd What and Why Gravity

More information

http://foundation.aapg.org/students/undergraduate/weeks.cfm Tim Carr - West Virginia University 3 Potential Fields Indirect Visualization Density and Magnetization Gravity and Magnetic Exploration Locate

More information

Mean Vertical Gradient of Gravity

Mean Vertical Gradient of Gravity Mean Vertical Gradient of Gravity P. Vaníek, J. Janák Department of Geodesy and Geomatics Engineering, University of New Brunswick, P.O.Box 4400, Fredericton, New Brunswick, Canada, E3B 2M8 J. Huang Geodetic

More information

CHAPTER X. Second Half Review 2017

CHAPTER X. Second Half Review 2017 CHAPTER X Second Half Review 217 Here is a quick overview of what we covered in the second half of the class. Remember that the final covers the whole course but there will naturally be a bias towards

More information

GRAVITY EXPLORATION. subsurface density. (material property) Gravity anomalies of some simple shapes

GRAVITY EXPLORATION. subsurface density. (material property) Gravity anomalies of some simple shapes GRAVITY EXPLORATION g at surface (observation) subsurface density (material property) subsurface geology Gravity anomalies of some simple shapes Reminder: we are working with values about... 0.01-0.001

More information

Last Time. Today s s Agenda. Geophysics. Geophysics. Geophysics. MAS 603: Geological Oceanography. Lecture 21: Geophysics 1: Gravity

Last Time. Today s s Agenda. Geophysics. Geophysics. Geophysics. MAS 603: Geological Oceanography. Lecture 21: Geophysics 1: Gravity UNIVERSITY OF SOUTH ALABAMA Last Time MAS 603: Geological Oceanography Extinctions Lecture 21: 1: http://www.cartoonstock.com/newscartoons/cartoonists/for/lowres/forn441l.jpg Today s s Agenda Introduction

More information

Physics and Chemistry of the Earth and Terrestrial Planets

Physics and Chemistry of the Earth and Terrestrial Planets MIT OpenCourseWare http://ocw.mit.edu 12.002 Physics and Chemistry of the Earth and Terrestrial Planets Fall 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

Precise Hong Kong Geoid HKGEOID-2000

Precise Hong Kong Geoid HKGEOID-2000 Yong-Qi Chen 1, Zhicai Luo 1 and Simon Kwok 2 1.Department of Land Surveying and Geo-Informatics, The Hong Kong olytechnic University 2 Geodetic Survey Section, Lands Department, HKSAR Abstract: This paper

More information

GRAVITY AND GRAVITY ANOMALIES Newtonian Gravitation

GRAVITY AND GRAVITY ANOMALIES Newtonian Gravitation Gravity Exploration GRAVITY AND GRAVITY ANOMALIES Newtonian Gravitation Gravity: force of attraction between objects with mass Consider two objects with mass m 1 and m 2 : m 1 m 2 F g F g distance (r)

More information

LAB 10: GRAVITY ANOMALIES AND CORRECTIONS

LAB 10: GRAVITY ANOMALIES AND CORRECTIONS NAME: LAB TIME: LAB 10: GRAVITY ANOMALIES AND CORRECTIONS The following lab will introduce you to the basic concepts of gravitational forces, accelerations, and using variations in gravity to understand

More information

Determination of the relative soil compactness in the foundation condition by microgravity data

Determination of the relative soil compactness in the foundation condition by microgravity data Bollettino di Geofisica Teorica ed Applicata Vol. 54, n. 2, pp. 129-143; June 2013 DOI 10.4430/bgta0088 Determination of the relative soil compactness in the foundation condition by microgravity data V.E.

More information

Gravity Methods (IV)

Gravity Methods (IV) Environmental and Exploration Geophysics II Gravity Methods (IV) tom.h.wilson tom.wilson@mail.wvu.edu Department of Geology and Geography West Virginia University Morgantown, WV Possible employment opportunities

More information

Height systems. Rudi Gens Alaska Satellite Facility

Height systems. Rudi Gens Alaska Satellite Facility Rudi Gens Alaska Satellite Facility Outline Why bother about height systems? Relevant terms Coordinate systems Reference surfaces Geopotential number 2 Why bother about height systems? give a meaning to

More information

ENV-5004B/ENVK5005B. Figure 6. Student Registration No. ENV-5004B/ENVK5005B Version 2

ENV-5004B/ENVK5005B. Figure 6. Student Registration No. ENV-5004B/ENVK5005B Version 2 ENV-5004B/ENVK5005B Figure 6 Student Registration No UNIVERSITY OF EAST ANGLIA School of Environmental Sciences Main Series UG Examination 014-15 SOLID EARTH GEOPHYSICS SOLID EARTH GEOPHYSICS WITH FIELDCOURSE

More information

GPS Surveying Dr. Jayanta Kumar Ghosh Department of Civil Engineering Indian Institute of Technology, Roorkee. Lecture 06 GPS Position

GPS Surveying Dr. Jayanta Kumar Ghosh Department of Civil Engineering Indian Institute of Technology, Roorkee. Lecture 06 GPS Position GPS Surveying Dr. Jayanta Kumar Ghosh Department of Civil Engineering Indian Institute of Technology, Roorkee Lecture 06 GPS Position Friends! Welcome you to sixth class on GPS surveying. Today, I am going

More information

Geog Lecture 29 Mapping and GIS Continued

Geog Lecture 29 Mapping and GIS Continued Geog 1000 - Lecture 29 Mapping and GIS Continued http://scholar.ulethbridge.ca/chasmer/classes/ Today s Lecture (Pgs 13-25, 28-29) 1. Hand back Assignment 3 2. Review of Dr. Peddle s lecture last week

More information

Gravity reduction spreadsheet to calculate the Bouguer anomaly using standardized methods and constants

Gravity reduction spreadsheet to calculate the Bouguer anomaly using standardized methods and constants Gravity reduction spreadsheet to calculate the Bouguer anomaly using standardized methods and constants Derek I. Holom John S. Oldow Department of Geological Sciences, University of Idaho, Moscow, Idaho

More information

GEOIDS FAQ. November

GEOIDS FAQ. November GEOIDS FAQ 1. What is a geoid? A geoid is a representation of the equipotential surface of the Earth s gravity field. It can be thought of as a surface coinciding with the undisturbed mean sea level extended

More information

Navigation Mathematics: Kinematics (Earth Surface & Gravity Models) EE 570: Location and Navigation

Navigation Mathematics: Kinematics (Earth Surface & Gravity Models) EE 570: Location and Navigation Lecture Navigation Mathematics: Kinematics (Earth Surface & ) EE 570: Location and Navigation Lecture Notes Update on March 10, 2016 Aly El-Osery and Kevin Wedeward, Electrical Engineering Dept., New Mexico

More information

On Ambiguities in Definitions and Applications of Bouguer Gravity Anomaly

On Ambiguities in Definitions and Applications of Bouguer Gravity Anomaly Chapter 3 On Ambiguities in Definitions and Applications of Bouguer Gravity Anomaly P. Vajda, P. Vaníček, P. Novák, R. Tenzer, A. Ellmann, and B. Meurers Abstract Over decades diverse definitions and use

More information

GEOID UNDULATION DIFFERENCES BETWEEN GEOPOTENTIAL. RICHARD H. RAPP and YAN MING WANG

GEOID UNDULATION DIFFERENCES BETWEEN GEOPOTENTIAL. RICHARD H. RAPP and YAN MING WANG GEOID UNDULATION DIFFERENCES BETWEEN GEOPOTENTIAL MODELS RICHARD H. RAPP and YAN MING WANG Department of Geodetic Science and Surveying, The Ohio State University, Columbus, Ohio, U.S.A. (Received 15 September,

More information

GEOID UNDULATIONS OF SUDAN USING ORTHOMETRIC HEIGHTS COMPARED WITH THE EGM96 ANG EGM2008

GEOID UNDULATIONS OF SUDAN USING ORTHOMETRIC HEIGHTS COMPARED WITH THE EGM96 ANG EGM2008 GEOID UNDULATIONS OF SUDAN USING ORTHOMETRIC HEIGHTS COMPARED Dr. Abdelrahim Elgizouli Mohamed Ahmed* WITH THE EGM96 ANG EGM2008 Abstract: Positioning by satellite system determine the normal height above

More information

ENGR Spring Exam 2

ENGR Spring Exam 2 ENGR 1300 Spring 013 Exam INSTRUCTIONS: Duration: 60 minutes Keep your eyes on your own work! Keep your work covered at all times! 1. Each student is responsible for following directions. Read carefully..

More information

ENVI.2030L - Plate Tectonics - Geomagnetism, Earthquakes, and Gravity

ENVI.2030L - Plate Tectonics - Geomagnetism, Earthquakes, and Gravity I. Geomagnetism Name ENVI.2030L - Plate Tectonics - Geomagnetism, Earthquakes, and Gravity The earth's magnetic field can be viewed as a simple bar magnet located near the center of the earth and inclined

More information

Gravitational constraints

Gravitational constraints Gravitational constraints Reading: Fowler p172 187 Gravity anomalies Free-air anomaly: g F = g g( λ ) + δg obs F Corrected for expected variations due to the spheroid elevation above the spheroid Bouguer

More information

Height systems. Rüdiger Gens

Height systems. Rüdiger Gens Rüdiger Gens 2 Outline! Why bother about height systems?! Relevant terms! Coordinate systems! Reference surfaces! Geopotential number! Why bother about height systems?! give a meaning to a value defined

More information

EE 570: Location and Navigation

EE 570: Location and Navigation EE 570: Location and Navigation Navigation Mathematics: Kinematics (Earth Surface & Gravity Models) Aly El-Osery Kevin Wedeward Electrical Engineering Department, New Mexico Tech Socorro, New Mexico, USA

More information

5. Gravity. 5.1 Geoid Variations. The Australian Continent: A Geophysical Synthesis Gravity

5. Gravity. 5.1 Geoid Variations. The Australian Continent: A Geophysical Synthesis Gravity 34 The Australian Continent: A Geophysical Synthesis Gravity 5. Gravity Gravity data map subtle changes in the Earth s gravitational field caused by variations in the density of the underlying materials.

More information

Getting Started: Using and Understanding Gravity Data

Getting Started: Using and Understanding Gravity Data The University of Texas at El Paso Pan-American Center for Earth and Environmental Studies Thu 13-Sep-2007 ABOUT PACES Mission Newsletter Sponsors RESEARCH Geoinformatics Remote Sensing Geoscience GIS

More information

Universal Gravitation Student Guide

Universal Gravitation Student Guide Universal Gravitation Student Guide Activity 1 - Earth Gravity Exploration Using Pasco s ball drop apparatus and various size steel ball bearings, determine the acceleration due to the Earth s gravity:

More information

HIMALAYAN AIRBORNE GRAVITY AND GEOID OF NEPAL

HIMALAYAN AIRBORNE GRAVITY AND GEOID OF NEPAL Mt. Everest HIMALAYAN AIRBORNE GRAVITY AND GEOID OF NEPAL -Niraj Manandhar Head, Geodetic Survey Branch Survey Department, Geodetic Survey Branch Project Background Air Borne Gravity Survey Project was

More information

GRACE Gravity Model GGM02

GRACE Gravity Model GGM02 GRACE Gravity Model GGM02 The GGM02S gravity model was estimated with 363 days (spanning April 2002 through December 2003) of GRACE K-band range-rate, attitude, and accelerometer data. No Kaula constraint,

More information

The GOCE Geoid in Support to Sea Level Analysis

The GOCE Geoid in Support to Sea Level Analysis The GOCE Geoid in Support to Sea Level Analysis The geoid is a very useful quantity for oceanographers Thomas Gruber Astronomical & Physical Geodesy (IAPG) Technische Universität München 1. Characteristics

More information

TERRAIN (BOUGUER) DENSITY. One of the largest effects on gravity is the attraction of the topography near the

TERRAIN (BOUGUER) DENSITY. One of the largest effects on gravity is the attraction of the topography near the TERRAIN (BOUGUER) DENSITY One of the largest effects on gravity is the attraction of the topography near the gravity station. This is distinct from the Bouguer correction, which corrects for the attraction

More information

GRAVITY AND ISOSTASY

GRAVITY AND ISOSTASY GRAVITY AND ISOSTASY Gravity The Geoid is the oblate spheroid -- the sea level surface over the entire Earth's surface Physically, the Geoid is an equipotential surface for gravity (i.e. the surface for

More information

Lesson 5: Map Scale and Projections

Lesson 5: Map Scale and Projections Organizing Data and Information Lesson 5: Map Scale and Projections Map Scales Projections Information can be organized as lists, numbers, tables, text, pictures, maps, or indexes. Clusters of information

More information

Environmental and Exploration Geophysics I Gravity I tom.h.wilson

Environmental and Exploration Geophysics I Gravity I tom.h.wilson Environmental and Exploration Geophysics I Gravity I tom.h.wilson tom.wilson@mail.wvu.edu Department of Geology and Geography West Virginia University Morgantown, WV Discuss mid term exam Objectives for

More information

Map Projections. What does the world look like? AITOFF AZIMUTHAL EQUIDISTANT BEHRMANN EQUAL AREA CYLINDRICAL

Map Projections. What does the world look like? AITOFF AZIMUTHAL EQUIDISTANT BEHRMANN EQUAL AREA CYLINDRICAL Map Projections What does the world look like? AITOFF AZIMUTHAL EQUIDISTANT BEHRMANN EQUAL AREA CYLINDRICAL 1 CYLINDRICAL EQUAL AREA BONNE CRASTER PARABOLIC 2 ECKERT I ECKERT III ECKERT V There are many

More information

The earth s gravitational field

The earth s gravitational field The earth s gravitational field T. Ramprasad National Institute of Oceanography, Dona Paula, Goa-403 004 rprasad@nio.org Gravity Gravity is a force that for us is always directed downwards. But to say

More information

Solutions for examination in TSRT78 Digital Signal Processing,

Solutions for examination in TSRT78 Digital Signal Processing, Solutions for examination in TSRT78 Digital Signal Processing, 2014-04-14 1. s(t) is generated by s(t) = 1 w(t), 1 + 0.3q 1 Var(w(t)) = σ 2 w = 2. It is measured as y(t) = s(t) + n(t) where n(t) is white

More information

GRAVITY MEASUREMENTS IN THE BEAUFORT SEA AREA*

GRAVITY MEASUREMENTS IN THE BEAUFORT SEA AREA* 50 Papers GRAVITY MEASUREMENTS IN THE BEAUFORT SEA AREA* Donald Plouff G Introduction RAVITY and other geophysical measurements (Plouff et al. 96) were made on Fletcher s Ice Island (T-) as part of studies

More information

Measuring Changes in Ice Flow Speeds

Measuring Changes in Ice Flow Speeds Measuring Changes in Ice Flow Speeds Ice flow speeds are commonly measured using a technique called Interferometric Synthetic Aperture Radar (InSAR). This is an active imaging technique the instrument

More information

The Newtonian Synthesis. Conceptual Physics 11 th Edition. The Universal Law of Gravity. The Universal Law of Gravity. The Newtonian Synthesis

The Newtonian Synthesis. Conceptual Physics 11 th Edition. The Universal Law of Gravity. The Universal Law of Gravity. The Newtonian Synthesis Conceptual Physics 11 th Edition Chapter 9: GRAVITY The Newtonian Synthesis In Aristotle s time, motion of planets and stars was natural not governed by the same laws as objects on Earth. Newton recognized

More information

Journal of Applied Science and Agriculture. Euler deconvolution of 3D gravity data interpretation: New approach

Journal of Applied Science and Agriculture. Euler deconvolution of 3D gravity data interpretation: New approach AENSI Journals Journal of Applied Science and Agriculture Journal home page: www.aensiweb.com/jasa/index.html Euler deconvolution of 3D gravity data interpretation: New approach 1 Reza Toushmalani and

More information

δh AB = l 1 l 2. (4 1)

δh AB = l 1 l 2. (4 1) 4 Heights 4.1 Spirit leveling The principle of spirit leveling is well known. To measure the height difference δh between two points and, vertical rods are set up at each of these two points and a level

More information

10 Least-squares collocation

10 Least-squares collocation 10 Least-squares collocation 10.1 Principles of least-squares collocation The principle of collocation is very simple. The anomalous potential T outside the earth is a harmonic function, that is, it satisfies

More information

determination of the geoid, interpolation and extrapolation of gravity, investigation of the earth s crust.

determination of the geoid, interpolation and extrapolation of gravity, investigation of the earth s crust. 3 Gravity reduction 3.1 Introduction Gravity g measured on the physical surface of the earth must be distinguished from normal gravity γ referring to the surface of the ellipsoid. To refer g to sea level,

More information

CENTIMETRE LEVEL OF ACCURACY OF QUASIGEOID MODEL IN POLAND

CENTIMETRE LEVEL OF ACCURACY OF QUASIGEOID MODEL IN POLAND CENTIMETRE LEVEL OF ACCURACY OF QUASIGEOID MODEL IN POLAND Jan Krynski Institute of Geodesy and Cartography, Poland krynski@igik.edu.pl Adam Lyszkowicz University of Warmia and Mazury in Olsztyn, Poland

More information

KINETIC AND POTENTIAL ENERGY. Chapter 6 (cont.)

KINETIC AND POTENTIAL ENERGY. Chapter 6 (cont.) KINETIC AND POTENTIAL ENERGY Chapter 6 (cont.) The Two Types of Mechanical Energy Energy- the ability to do work- measured in joules Potential Energy- energy that arises because of an object s position

More information

New Mexico Tech Hyd 510

New Mexico Tech Hyd 510 Vectors vector - has magnitude and direction (e.g. velocity, specific discharge, hydraulic gradient) scalar - has magnitude only (e.g. porosity, specific yield, storage coefficient) unit vector - a unit

More information

Electrostatics Notes 2 Electric Field on a Single Charge

Electrostatics Notes 2 Electric Field on a Single Charge Electrostatics Notes 2 Electric Field on a Single Charge There are many similarities between gravitational and electrostatic forces. One such similarity is that both forces can be exerted on objects that

More information

Chapter 7 Applications of Integration

Chapter 7 Applications of Integration Chapter 7 Applications of Integration 7.1 Area of a Region Between Two Curves 7.2 Volume: The Disk Method 7.3 Volume: The Shell Method 7.4 Arc Length and Surfaces of Revolution 7.5 Work 7.6 Moments, Centers

More information

PHYSICS 12 NAME: Electrostatics Review

PHYSICS 12 NAME: Electrostatics Review NAME: Electrostatics Review 1. The diagram below shows two positive charges of magnitude Q and 2Q. Which vector best represents the direction of the electric field at point P, which is equidistant from

More information

WHERE ARE YOU? Maps & Geospatial Concepts Fall 2015

WHERE ARE YOU? Maps & Geospatial Concepts Fall 2015 WHERE ARE YOU? Maps & Geospatial Concepts Fall 2015 Where are you? Relative location I m at school Absolute Location 45 26 18.07 122 43 50.78 Where is Boston? Introducing Geodesy, Ellipsoids & Geoids Geodesy

More information

Shape of the Earth. Data Output by the Receiver

Shape of the Earth. Data Output by the Receiver It is quite common for confusion to arise about the process used during a hydrographic survey when GPS-derived water surface elevation is incorporated into the data as an RTK Tide correction. This article

More information

Fundamentals of Surveying (LE/ESSE )

Fundamentals of Surveying (LE/ESSE ) Fundamentals of Surveying (LE/ESSE 2620 3.0) Lecture 2 Basics of Surveying Dr.-Ing. Jian-Guo Wang Geomatics Engineering York University Fall 2017 1 2-1. Overview Part 1: Basics - The Earth s Shape & Size.

More information

Difference between geoid undulation and quasigeoid height in Hungary

Difference between geoid undulation and quasigeoid height in Hungary BOLLETTINO DI GEOFISICA TEORICA ED APPLICATA VOL. 40, N. 3-4, pp. 571-575; SEP.-DEC. 1999 Difference between geoid undulation and quasigeoid height in Hungary J. ÁDÁM Department of Geodesy, Technical University

More information

1/28/16. EGM101 Skills Toolbox. Oblate spheroid. The shape of the earth Co-ordinate systems Map projections. Geoid

1/28/16. EGM101 Skills Toolbox. Oblate spheroid. The shape of the earth Co-ordinate systems Map projections. Geoid EGM101 Skills Toolbox Oblate spheroid The shape of the earth Co-ordinate systems Map projections The geoid is the shape that the surface of the oceans would take under the influence of Earth's gravitation

More information

Chapter 3: Force, Work and Energy

Chapter 3: Force, Work and Energy Chapter 3: Force and Force Equilibrium Chapter 3: Force, Work and Energy Chapter 3: Force, Work and Energy 3.1 Mass and Weight 3.2 Newton's Law of Gravitation 3.3 Force and Newton's 3 Laws of Motion 3.4

More information

FORWARD MODELING OF THE GEOID ANOMALY USING SPHERICAL HARMONICS: APPLICATIONS IN THE SIERRA NEVADA. Alissa C Scire

FORWARD MODELING OF THE GEOID ANOMALY USING SPHERICAL HARMONICS: APPLICATIONS IN THE SIERRA NEVADA. Alissa C Scire FORWARD MODELING OF THE GEOID ANOMALY USING SPHERICAL HARMONICS: APPLICATIONS IN THE SIERRA NEVADA by Alissa C Scire A Prepublication Manuscript Submitted to the Faculty of the DEPARTMENT OF GEOSCIENCES

More information

Phonon dispersion relation and density of states of a simple cubic lattice

Phonon dispersion relation and density of states of a simple cubic lattice Phonon dispersion relation and density of states of a simple cubic lattice Student project for the course Molecular and Solid State Physics by Eva Meisterhofer Contents 1 The linear spring model 3 1.1

More information

Chapter 1: Introduction

Chapter 1: Introduction Chapter 1: Introduction Definition: A differential equation is an equation involving the derivative of a function. If the function depends on a single variable, then only ordinary derivatives appear and

More information

TECH NOTE. New Mean Sea Surface for the CryoSat-2 L2 SAR Chain. Andy Ridout, CPOM, University College London

TECH NOTE. New Mean Sea Surface for the CryoSat-2 L2 SAR Chain. Andy Ridout, CPOM, University College London TECH NOTE Subject : From : To : New Mean Sea Surface for the CryoSat-2 L2 SAR Chain Andy Ridout, CPOM, University College London Tommaso Parrinello, CryoSat Mission Manager, ESRIN Date : 30 th June 2014

More information

C3: Magnetic anomalies produced by simple geological structures. Remember that objects can acquire both induced and remnant magnetization.

C3: Magnetic anomalies produced by simple geological structures. Remember that objects can acquire both induced and remnant magnetization. Geophysics 3 February 009 C3: Magnetic anomalies produced by simple geological structures Remember that objects can acquire both induced and remnant magnetization. Induced magnetization will disappear

More information

MATH 235/W08: Orthogonality; Least-Squares; & Best Approximation SOLUTIONS to Assignment 6

MATH 235/W08: Orthogonality; Least-Squares; & Best Approximation SOLUTIONS to Assignment 6 MATH 235/W08: Orthogonality; Least-Squares; & Best Approximation SOLUTIONS to Assignment 6 Solutions to questions 1,2,6,8. Contents 1 Least Squares and the Normal Equations*** 2 1.1 Solution...........................................

More information

Gravity Methods (VII) more wrap up

Gravity Methods (VII) more wrap up Environmental and Exploration Geophysics II Gravity Methods (VII) more wrap up tom.h.wilson tom.wilson@mail.wvu.edu Department of Geology and Geography West Virginia University Morgantown, WV 0.4 0.35

More information

What is Geodesy? Types of Geodesy terrestrial or classical geodesy space geodesy theoretical geodesy

What is Geodesy? Types of Geodesy terrestrial or classical geodesy space geodesy theoretical geodesy What is Geodesy? Geodesy is the study of: The size, shape and motion of the earth The measurement of the position and motion of points on the earth's surface, and The study of the earth's gravity field

More information

Session 1 : Fundamental concepts

Session 1 : Fundamental concepts BRUFACE Vibrations and Acoustics MA1 Academic year 17-18 Cédric Dumoulin (cedumoul@ulb.ac.be) Arnaud Deraemaeker (aderaema@ulb.ac.be) Exercise 1 Session 1 : Fundamental concepts Consider the following

More information

GRAVITY AND MAGNETIC METHODS

GRAVITY AND MAGNETIC METHODS Presented at Short Course IX on Exploration for Geothermal Resources, organized by UNU-GTP, GDC and KenGen, at Lake Bogoria and Lake Naivasha, Kenya, Nov. 2-24, 2014. Kenya Electricity Generating Co.,

More information

GRAVITY AND MAGNETIC SURVEY NECHAKO BASIN STUDY ACQUISITION AND PROCESSING PHASE

GRAVITY AND MAGNETIC SURVEY NECHAKO BASIN STUDY ACQUISITION AND PROCESSING PHASE GRAVITY AND MAGNETIC SURVEY NECHAKO BASIN STUDY ACQUISITION AND PROCESSING PHASE Report prepared for the B.C. Ministry of Energy and Mines Resource Development Division New Ventures Branch by Bemex Consulting

More information

Gravity-Magnetic & Magneto-Telluric surveys in Purnea Onland Basin, India - A case history.

Gravity-Magnetic & Magneto-Telluric surveys in Purnea Onland Basin, India - A case history. P-281 Gravity-Magnetic & Magneto-Telluric surveys in Purnea Onland Basin, India - A case history. Summary A.K. Roy, D.P. Paine*, S. Sett, and H.N. Bhattacharya, ONGC This paper describes a case history

More information

GRAVITY SURVEY TEELS MARSH PROSPECT

GRAVITY SURVEY TEELS MARSH PROSPECT GRAVITY SURVEY over the TEELS MARSH PROSPECT MINERAL COUNTY, NV for Dajin Resources (US) Corp. March 2015 SUBMITTED BY Magee Geophysical Services LLC 465 Leventina Canyon Road Reno, Nevada 89523 USA TEL

More information

Boolean Operators and Topological OVERLAY FUNCTIONS IN GIS

Boolean Operators and Topological OVERLAY FUNCTIONS IN GIS Boolean Operators and Topological OVERLAY FUNCTIONS IN GIS Query asking a question of the attribute data Standard Query Language (SQL) is used to query the data There are 4 basic statements used to get

More information

PGM2016: A new geoid model for the. Philippines

PGM2016: A new geoid model for the. Philippines PGM2016: A new geoid model for the Philippines United Nations/Nepal Workshop on the Applications of Global Navigation Satellite Systems Kathmandu, Nepal December 12-16, 2016 Ronaldo Gatchalian, Chief Geodesy

More information

Determination of crustal density at the atmosphere-crust interface of western Anatolia by using the fractal method

Determination of crustal density at the atmosphere-crust interface of western Anatolia by using the fractal method JOURNAL OF THE BALKAN GEOPHYSICAL SOCIETY, Vol. 5, No 1, February 2002, p. 3-8, 7 figs. Determination of crustal density at the atmosphere-crust interface of western Anatolia by using the fractal method

More information

Presented at the FIG Congress 2018, May 6-11, 2018 in Istanbul, Turkey

Presented at the FIG Congress 2018, May 6-11, 2018 in Istanbul, Turkey Presented at the FIG Congress 2018, May 6-11, 2018 in Istanbul, Turkey A Geoid model of northern Chile from airborne and surface gravity Geographic Description of Chile. Total Surface: 2,006,096 Km 2.

More information

Control Surveys and Coordinate Systems

Control Surveys and Coordinate Systems Control Surveys and Coordinate Systems The Earth is Round Basic Shape of the Earth: Oblate Spheroid of Revolution The length of the equatorial axis is approximately 27 miles greater than the polar axis.

More information

A Mission to Planet Mars Gravity Field Determination

A Mission to Planet Mars Gravity Field Determination A Mission to Planet Mars Gravity Field Determination Department for Theoretical Geodesy Graz University of Technology and Space Research Institute Austrian Academy of Sciences Gravity field CHAMP GRACE

More information

International Journal of Computer Science and Telecommunications [Volume 3, Issue 7, July 2012] 109. Levelling with GPS. Dr. Nagi Zomrawi Mohammed

International Journal of Computer Science and Telecommunications [Volume 3, Issue 7, July 2012] 109. Levelling with GPS. Dr. Nagi Zomrawi Mohammed International Journal of Computer Science and Telecommunications [Volume 3, Issue 7, July 2012] 109 ling with ISSN 2047-3338 Dr. Nagi Zomrawi Mohammed Associate Professor, College of Engineering, Sudan

More information

a z41. COMMONWEALTH OF AUSTRALIA DEPARTMENT OF NATIONAL DEVELOPMENT BUREAU OF MINERAL RESOURCES, GEOLOGY AND GEOPHYSICS RECORD 1961 No.

a z41. COMMONWEALTH OF AUSTRALIA DEPARTMENT OF NATIONAL DEVELOPMENT BUREAU OF MINERAL RESOURCES, GEOLOGY AND GEOPHYSICS RECORD 1961 No. a z41. COMMONWEALTH OF AUSTRALIA ff..4 *.re /Veis DEPARTMENT OF NATIONAL DEVELOPMENT BUREAU OF MINERAL RESOURCES, GEOLOGY AND GEOPHYSICS RECORD 1961 No. 66 RED TANK BORE GRAVITY SURVEY, PLENTY RIVER, N.T.

More information

What is a Map Projection?

What is a Map Projection? What is a Map Projection? It is how we represent a three dimensional Earth on a flat piece of paper However The process of transferring information from the Earth to a map causes every projection to distort

More information

Geographic Information Systems class # 1 February 19, Coordinate reference systems in GIS: geodetic coordinates

Geographic Information Systems class # 1 February 19, Coordinate reference systems in GIS: geodetic coordinates Geographic Information Systems class # 1 February 19, 2013 Coordinate reference systems in GIS: geodetic coordinates Manuel Campagnolo ISA Manuel Campagnolo (ISA) GIS/SIG 2012 2013 February 19, 2013 1

More information

Meteorology 432. Barometry Spring 2013

Meteorology 432. Barometry Spring 2013 Meteorology 432 Barometry Spring 2013 Basics Revisited Objective: Measure the static pressure exerted by the atmosphere. Static Pressure: Force per unit area in the absence of air motion. In this case,

More information

9. Density Structure. The Australian Continent: A Geophysical Synthesis Density Structure

9. Density Structure. The Australian Continent: A Geophysical Synthesis Density Structure 84 The Australian Continent: A Geophysical Synthesis Density Structure 9. Density Structure Although the primary focus for the development of the AuSREM model was the creation of 3-D seismic wavespeed

More information

Coordinate systems, measured surveys for BIM, total station for BIM, as-built surveys, setting-out

Coordinate systems, measured surveys for BIM, total station for BIM, as-built surveys, setting-out Coordinate systems, measured surveys for BIM, total station for BIM, as-built surveys, setting-out What is a BIM What does a BIM do Why use a BIM BIM Software BIM and the Surveyor How do they relate to

More information