diff --git a/web/content/docs/tutorials/_index.md b/web/content/docs/tutorials/_index.md index 3c685b2cd1b6281cd124bf5256b13e7c95a33231..9b2808b1cf11f61d0d18d3ba9cff643aa64bd195 100644 --- a/web/content/docs/tutorials/_index.md +++ b/web/content/docs/tutorials/_index.md @@ -3,8 +3,9 @@ title = "Tutorials" layout = "gallery" [cascade] -breadcrumbs = true +breadcrumbs = false sort_alphabetically = true +collapsed = false [menu.docs] name = "Tutorials" @@ -14,4 +15,4 @@ url = "./tutorials" post = "Learning-by-doing way of gaining experience with OGS and tools commonly used with it." [menu.docs.params] category = "Beginner" -+++ \ No newline at end of file ++++ diff --git a/web/content/docs/tutorials/video-tutorial/_index.md b/web/content/docs/tutorials/video-tutorial/index.md similarity index 88% rename from web/content/docs/tutorials/video-tutorial/_index.md rename to web/content/docs/tutorials/video-tutorial/index.md index 113b8b7b60ea4ad5160ae515dbda262350673170..0075aff807867d753b0e6e22ba3c4741debcdb83 100644 --- a/web/content/docs/tutorials/video-tutorial/_index.md +++ b/web/content/docs/tutorials/video-tutorial/index.md @@ -1,11 +1,9 @@ +++ date = "2018-02-27T11:00:13+01:00" title = "Video Tutorial" -layout = "gallery" author = "Dominik Kern" weight = 1 image = "video_tutorial_thumbnail.png" -featured = true +++ In this [three-part tutorial](https://www.youtube.com/watch?v=BULunRJQRJ0&list=PLU_clTnZqNAeOXENl79kQwn0pgHGittX1) we look at the mechanical deformation of a sedimentary basin under an advancing glacier. In detail we show you a possibility how to @@ -42,19 +40,22 @@ As a common programming language we use [Python](https://www.python.org). * [msh2vtu](https://gitlab.opengeosys.org/ogs/tools/ogstools) *-now integrated in ogstools* * *Transient hydrodynamics within intercratonic sedimentary basins during glacial cycles*, V. F. Bense M. A. Person, DOI: [10.1029/2007JF000969](https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2007JF000969) -**_NOTE:_** Due to ongoing development, msh2vtu.py was integrated in the ogs-repository for [ogstools](https://gitlab.opengeosys.org/ogs/tools/ogstools). +***NOTE:*** Due to ongoing development, msh2vtu.py was integrated in the ogs-repository for [ogstools](https://gitlab.opengeosys.org/ogs/tools/ogstools). In order to work with the tutorial and apply msh2vtu on mesh_basin.msh, ogstools need to be installed at first. -ogstools can be installed from PyPI using pip. -It is recommended to set up a virtual environment beforehand: +ogstools can be installed from PyPI using pip. +It is recommended to set up a virtual environment beforehand: + ```bash python -m venv .venv source .venv/bin/activate pip install ogstools ``` + More detailed information about the usages and development of ogstools can be found in [ogstools Documentation](https://ogs.ogs.xyz/tools/ogstools/index.html). -After installation the tool can be applied as described in the first video-tutorial. +After installation the tool can be applied as described in the first video-tutorial. To apply msh2vtu on the mesh_basin.msh the command should look like: + ```bash msh2vtu --ogs --rdcd mesh_basin.msh -``` \ No newline at end of file +```