Versatile Modeling of Deformation
Project description
Versatile Modeling Of Deformation
Authors: Mario Angarita, Ronni Grapenthin, Scott Henderson, Michael Christoffersen and Kyle Anderson
What is VMOD?
VMOD is a python-based object oriented framework. Its main purpose is to model multiple types of geodetic data including:
- GNSS
- InSAR
- Level
- EDM
- Tilt
These observations can be interpreted with one or more analytical models that represent pressurized sources such as:
- Pressurized sphere in elastic medium
- Pressurized sphere in viscoelastic medium
- Pressurized sphere in a viscoelastic shell in elastic medium
- Pressurized prolate spheroid in elastic medium
- Dislocation (Fault/Sill) in elastic medium
- Penny shaped crack in elastic medium
- Point source in elastic medium
- Wellsite in porelastic medium
- Ring fault in elastic medium
- Regularized fault/sill in elastic medium
- Open conduit in elastic medium
The framework offers two different inversion techniques to solve for the source parameters:
- Non-linear least squares
- Bayesian approach
The inversions can include one or multiple data types in the inversion and the model can be composed by multiple sources. The user can customize or inherit current models to create complexer geometries.
Standard Installation
We recommend using Anaconda or Miniconda to create an environment in which to install VMOD to prevent dependency conflicts.
conda create --name vmod -c conda-forge "python=3.9.*" "pymc=2.3.8" "setuptools>=61"
PyMC must be installed with conda, pip fails to build version 2.3.8 on some machines.
conda activate vmod
pip install vmod-geodesy
Run an inversion:
In this repository we included several notebooks to show the steps necessary to run an inversion using GNSS, InSAR, EDM and joint datasets. We also included an example using real datasets on Unimak Island.
Add new datatype:
Users wishing to include a new datatype should clone the source repository and create a new file in the data folder. This file should contain a new class that inherit from the 'Data' class and that has the functions to initialize the attributes, adding the components belonging to the datatype and a function to derive the components from 3d displacements. For example, in the Insar class we defined the following functions:
class Insar(Data):
def __init__():
...
def add_los(self, los):
...
def from_model3d(self, func):
...
Add new model:
Users wishing to include a new model should clone the source repository and create a new file in the source folder. This file should contain a new class that inherit from the 'Source' class and that has a function returning the names of the parameters in your model and a function that gives the implementation of your model and return the 3d displacement. If you want to use this model with data that has a temporal dependency you should include the function 'model_t' that implements a time-dependant model. As an option you can include additional functions that return tilt displacements with the function 'model_tilt' or if it has a temporal dependency 'model_tilt_t'. For example, here we show the required functions in our Mogi model:
class Mogi(Source):
def set_parnames(self):
...
def model(self, params):
...
Publications:
A list of publications where VMOD has been used:
- Grapenthin, R., Cheng, Y., Angarita, M., Tan, D., Meyer, F. J., Fee, D., & Wech, A. (2022). Return from Dormancy: Rapid inflation and seismic unrest driven by transcrustal magma transfer at Mt. Edgecumbe (L’úx Shaa) Volcano, Alaska. Geophysical Research Letters, 49(20), e2022GL099464. https://doi.org/10.1029/2022GL099464
- Grapenthin, R., Kyle, P., Aster, R. C., Angarita, M., Wilson, T., & Chaput, J. (2022). Deformation at the open-vent Erebus volcano, Antarctica, from more than 20 years of GNSS observations. Journal of Volcanology and Geothermal Research, 432, 107703. https://doi.org/10.1016/j.jvolgeores.2022.107703
- Graves, E. J., et al. "InSAR-observed surface deformation in New Mexico’s Permian Basin shows threats and opportunities presented by leaky injection wells." Scientific Reports 13.1 (2023): 17308. https://doi.org/10.1038/s41598-023-42696-9
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file vmod_geodesy-1.0.3.tar.gz
.
File metadata
- Download URL: vmod_geodesy-1.0.3.tar.gz
- Upload date:
- Size: 55.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe7f0352d72845a6e4a22f7e61dda295594bdebb40eae669968b3ea9916607b2 |
|
MD5 | d0c312c14823afad2c582a89072aae46 |
|
BLAKE2b-256 | 8efccb1b4b19d2d40bb4fa673d94f8481f466cce66a567ac1474cc7c755f57c0 |
File details
Details for the file vmod_geodesy-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: vmod_geodesy-1.0.3-py3-none-any.whl
- Upload date:
- Size: 66.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7de2d64a19b3ca97c7052b51f831d24eef8cc07a5ef55c662e2c9653d5af4b89 |
|
MD5 | 4b756dab988f841e5773b40394267c9f |
|
BLAKE2b-256 | a04de426eb4f9bccc9f007808ab685e6e4cd5830d1a105b4ba24363cbc6d6341 |