Skip to content
Snippets Groups Projects
Verified Commit 0df4097d authored by Lars Bilke's avatar Lars Bilke
Browse files

[web] Fixed data_explorer_manual links (repo was moved).

parent 5d450974
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@
* - Selected benchmarks: https://opengeosys.org/docs/benchmarks
* - Developer guide: https://opengeosys.org/docs/devguide
* - Data Explorer (GUI) manual:
* https://gitlab.opengeosys.org/ogs/data_explorer_manual/-/jobs/artifacts/master/raw/ogsde-man.pdf?job=build
* https://gitlab.opengeosys.org/ogs/documentation/data_explorer_manual/-/jobs/artifacts/master/raw/ogsde-man.pdf?job=build
* - Discussion forum: https://discourse.opengeosys.org
*
* \section internal_modules Internal Modules
......
......@@ -108,7 +108,7 @@ weight = 5
# docs
[[menu.docs]]
name = "Data Explorer Manual"
url = "https://gitlab.opengeosys.org/ogs/data_explorer_manual/-/jobs/artifacts/master/raw/ogsde-man.pdf?job=build"
url = "https://gitlab.opengeosys.org/ogs/documentation/data_explorer_manual/-/jobs/artifacts/master/raw/ogsde-man.pdf?job=build"
post = "Manual for the graphical user interface for OpenGeoSys, the Data Explorer."
[menu.docs.params]
category = "Advanced"
......
......@@ -16,7 +16,7 @@ category = "Advanced"
Here is an overview of the currently available command line tools, that might help you to construct your OpenGeoSys model. GUI-based tools are available too:
- OpenGeoSys Data Explorer -- [Manual](https://gitlab.opengeosys.org/ogs/data_explorer_manual/-/jobs/artifacts/master/raw/ogsde-man.pdf?job=build) / [Download](/releases)
- OpenGeoSys Data Explorer -- [Manual](https://gitlab.opengeosys.org/ogs/documentation/data_explorer_manual/-/jobs/artifacts/master/raw/ogsde-man.pdf?job=build) / [Download](/releases)
- [GINA by BGR](https://teambeam.bgr.de/my/drive/folder/68)
----
......
......@@ -6,18 +6,18 @@ author = "Julian Heinze"
## Description
This tool is used to integrate line elements representing boreholes into a pre-existing 3D mesh.
Corresponding nodes matching the (x,y)-coordinates given in the gml-file are found in the mesh and connected from top to bottom via line elements.
Each borehole (i.e. all points at a given (x,y)-location but at different depths) is assigned a unique material ID.
Corresponding nodes matching the (x,y)-coordinates given in the gml-file are found in the mesh and connected from top to bottom via line elements.
Each borehole (i.e. all points at a given (x,y)-location but at different depths) is assigned a unique material ID.
Vertical limits of boreholes can be specified via Material IDs and/or elevation.
Points that do not match any mesh nodes or are located outside the mesh are ignored.
## Usage
```bash
IntegrateBoreholesIntoMesh -i <input file name> -o <output file name>
-g <geometry file name> [--min-id <a number>]
[--max-id <a number>] [--min-elevation <a number>]
-g <geometry file name> [--min-id <a number>]
[--max-id <a number>] [--min-elevation <a number>]
[--max-elevation <a number>] [--] [--version] [-h]
Where:
Where:
-i <input file name>, --input <input file name>
(required) Name of the input mesh (*.vtu)
......@@ -51,7 +51,7 @@ Where:
## Example:
In this example we apply the tool to integrate boreholes into a mesh.
For this purpose we need to generate a .gml-file that holds the information about the x-y-coordinates for these boreholes.
For this purpose we need to generate a .gml-file that holds the information about the x-y-coordinates for these boreholes.
The .gml-file is given as:
```bash
......@@ -65,17 +65,17 @@ The .gml-file is given as:
</points>
</OpenGeoSysGLI>
```
It is mandatory that the x-y-coordinates of the boreholes are aligned with nodes of the input mesh.
It is mandatory that the x-y-coordinates of the boreholes are aligned with nodes of the input mesh.
Also they must be given with same precision as the mesh nodes, otherwise the tool will not find the nodes.
```bash
IntegrateBoreholesIntoMesh -i input_3Dmesh.vtu -o boreholes_3Dmesh.vtu -g boreholes_xy.gml --min-id 2 --max-id 4
```
**_NOTE:_**
If some boreholes are given at the beginning of the meshing process, it is recommended to use the OpenGeoSys DataExplorer -- [Manual](https://gitlab.opengeosys.org/ogs/data_explorer_manual/-/jobs/artifacts/master/raw/ogsde-man.pdf?job=build) / [Download](/releases).
**_NOTE:_**
If some boreholes are given at the beginning of the meshing process, it is recommended to use the OpenGeoSys DataExplorer -- [Manual](https://gitlab.opengeosys.org/ogs/documentation/data_explorer_manual/-/jobs/artifacts/master/raw/ogsde-man.pdf?job=build) / [Download](/releases).
At first, the nodes for boreholes can be integrated into the mesh, when the mesh is generated from a geometry.
For this purpose, the boreholes and the boundaries of the geometry need to be imported in DataExplorer.
For this purpose, the boreholes and the boundaries of the geometry need to be imported in DataExplorer.
Then this mesh can be used to create a 3D mesh, either with the DataExplorer or with [createLayeredMeshfromRaster](../../preprocessing/createLayeredMeshFromRasters/index.md), which then can be used for integrating boreholes.
This procedure is useful because the mesh is generated in a way that the coordinates of the boreholes are nodes in the mesh.
Otherwise the borehole's coordinates need to be adjusted according to a existing mesh.
......@@ -84,5 +84,5 @@ This process is schematically depicted in Fig.1, below.
<img src = schematic.png width = "100%" height = "100%">
</p>
<p align = "center">
Fig.1 A schematic to visualize the methods of the tool. It does not refer to the upper example.
Fig.1 A schematic to visualize the methods of the tool. It does not refer to the upper example.
</p>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment