Skip to content

Commit

Permalink
beggining tutorials
Browse files Browse the repository at this point in the history
  • Loading branch information
vcantarella committed Sep 17, 2024
1 parent 75cb46c commit 2debc7e
Show file tree
Hide file tree
Showing 8 changed files with 539 additions and 309 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ htmlcov

# external
external

# examples
examples/ammer
examples/channels
examples/heinz_highenergy
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
{}
{
"ruff.interpreter": [
"C:/Users/vcant/miniconda3/envs/flopy-env/python.exe"
]
}
36 changes: 11 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,22 @@
# HyVR - simple

[![Build Status](https://github.com/vcantarella/hyvr/actions/workflows/python-package-conda.yml/badge.svg?event=push)]
![Build Status](https://github.com/vcantarella/hyvr/actions/workflows/python-package-conda.yml/badge.svg?event=push)
[![codecov](https://codecov.io/github/vcantarella/hyvr/graph/badge.svg?token=QWGCQVEJ3G)](https://codecov.io/github/vcantarella/hyvr)

This is a fork from the original HyVR package with minimal implementation of the core features the idea to keep the original ideas alive, but maintainable in the fast python development ecosystem.

The Hydrogeological Virtual Reality simulation package (HyVR) is a Python module
that helps researchers and practitioners generate sedimentary subsurface models with
multiple scales of heterogeneity that are based on geological concepts. The
simulation outputs can then be used to explore groundwater flow and solute
transport behaviour, for example. The user must work with a previously created regular grid, which
can be used directly in MODFLOW or interpolated to the simulation grid that the user will need.

The original motivation for HyVR was the lack of tools for modelling sedimentary
deposits that include bedding structure model outputs (i.e., dip and azimuth).
Such bedding parameters were required to approximate full hydraulic-conductivity
tensors for groundwater flow modelling. HyVR is able to simulate these bedding
parameters and generate spatially distributed parameter fields, including full
hydraulic-conductivity tensors. A documentation on the simplified HyVR is being built in: *TO BE ADDED*
The original HyVR information is available in the online `technical documentation <https://driftingtides.github.io/hyvr/index.html>`_.
The Hydrogeological Virtual Reality simulation package (HyVR) is a Python module that helps researchers and practitioners generate sedimentary subsurface models with multiple scales of heterogeneity that are based on geological concepts. The simulation outputs can then be used to explore groundwater flow and solute transport behaviour, for example. The user must work with a previously created regular grid, which can be used directly in MODFLOW or interpolated to the simulation grid that the user will need.

The original motivation for HyVR was the lack of tools for modelling sedimentary deposits that include bedding structure model outputs (i.e., dip and azimuth).
Such bedding parameters were required to approximate full hydraulic-conductivity tensors for groundwater flow modelling. HyVR is able to simulate these bedding
parameters and generate spatially distributed parameter fields, including full hydraulic-conductivity tensors. A documentation on the simplified HyVR is being built in: *TO BE ADDED*.

For more information, the original HyVR information is available in the online `technical documentation <https://driftingtides.github.io/hyvr/index.html>`_.

For citation of the original software and development, please use the following reference:

* HyVR can be attributed by citing the following journal article: Bennett, J. P.,
Haslauer, C. P., Ross, M., & Cirpka, O. A. (2018). An open, object-based
framework for generating anisotropy in sedimentary subsurface
models. Groundwater.
DOI:* [10.1111/gwat.12803](https://onlinelibrary.wiley.com/doi/abs/10.1111/gwat.12803>).
* A preprint version of the article is available* [here](https://github.com/driftingtides/hyvr/blob/master/docs/Bennett_GW_2018.pdf) .
* Bennett, J. P., Haslauer, C. P., Ross, M., & Cirpka, O. A. (2018). An open, object-based framework for generating anisotropy in sedimentary subsurface models. Groundwater. DOI:* [10.1111/gwat.12803](https://onlinelibrary.wiley.com/doi/abs/10.1111/gwat.12803>).
* A preprint version of the article is available* [here](https://github.com/driftingtides/hyvr/blob/master/docs/Bennett_GW_2018.pdf) .

## Installing the HyVR package
--------------------------------------
Expand All @@ -45,9 +34,6 @@ navigate to the root directory and type::

``` pip install .```

Alternatively, you can use the package without installing it by typing in your script::

``` sys.path.append("path where HyVR is")```

## Usage
-----
Expand All @@ -61,7 +47,7 @@ The orgininal HyVR has been developed by Jeremy Bennett ([website](https://jerem
as part of his doctoral research at the University of Tübingen and by Samuel
Scherrer as a student assistant.

The current version is maintained by Vitor Cantarella ([website](https://vcantarella.gitub.io))
The current version is maintained by Vitor Cantarella ([website](https://github.com/vcantarella))

## Problems, Bugs, Unclear Documentation
-------------------------------------
Expand Down
Loading

0 comments on commit 2debc7e

Please sign in to comment.