Layer of prisms

Layer of prisms#

One way to model three dimensional structures is to create a set of prisms that approximates their geometry and its physical properties (density, susceptibility, etc.). The harmonica.prism_layer offers a simple way to create a layer of prisms: a regular grid of prisms of equal size on the horizontal directions with variable top and bottom boundaries. It returns a xarray.Dataset with the coordinates of the centers of the prisms and their corresponding physical properties. The harmonica.DatasetAccessorPrismsLayer Dataset accessor can be used to obtain some properties of the layer like its shape and size or the boundaries of any prism in the layer. The methods of this Dataset accessor can be used together with the harmonica.prism_gravity to compute the gravitational effect of the layer.

prism layer
import numpy as np
import pygmt
import verde as vd

import harmonica as hm

# Create a layer of prisms
region = (0, 100e3, -40e3, 40e3)
spacing = 2e3
(easting, northing) = vd.grid_coordinates(region=region, spacing=spacing)
surface = 100 * np.exp(-((easting - 50e3) ** 2 + northing**2) / 1e9)
density = 2670.0 * np.ones_like(surface)
prisms = hm.prism_layer(
    coordinates=(easting[0, :], northing[:, 0]),
    surface=surface,
    reference=0,
    properties={"density": density},
)

# Compute gravity field of prisms on a regular grid of observation points
coordinates = vd.grid_coordinates(region, spacing=spacing, extra_coords=1e3)
gravity = prisms.prism_layer.gravity(coordinates, field="g_z")
grid = vd.make_xarray_grid(
    coordinates, gravity, data_names="gravity", extra_coords_names="extra"
)

# Plot gravity field
fig = pygmt.Figure()

title = "Gravitational acceleration of a layer of prisms"

with pygmt.config(FONT_TITLE="14p"):
    fig.grdimage(
        region=region,
        projection="X10c/10c",
        grid=grid.gravity,
        frame=["a", f"+t{title}", 'x+l"easting (m)"', 'y+l"northing (m)"'],
        cmap="viridis",
    )

fig.colorbar(cmap=True, position="JMR", frame=["a2f1", "x+lmGal"])

fig.show()

Total running time of the script: (0 minutes 1.607 seconds)

Gallery generated by Sphinx-Gallery