Skip to content
Snippets Groups Projects
Commit 825bbc0f authored by Tobias Meisel's avatar Tobias Meisel
Browse files

Merge branch 'update_release_notes' into 'main'

Update_Release_notes

See merge request ogs/tools/ogstools!98
parents 2378eba6 0d435591
Branches
Tags 0.2.0
No related merge requests found
......@@ -3,8 +3,9 @@
## Library
[`studies`](../user-guide/studies.md) a new package that provides utility functions to compose studies from multiple simulation
runs.
Now it contains functions to perform convergence studies.
runs. For now it contains functions to perform convergence studies on simulation results (with increasing spatial/temporal discretization) for specific timesteps or over all timesteps.
[`msh2vtu`](../user-guide/msh2vtu.md) got a cleaner python interface without the need to run argparse in between.
[`feflowlib`](../user-guide/feflowlib.md) has been updated with new functionalities.
In particular, material properties can now be taken into account when converting and creating OGS models.
......
......@@ -31,24 +31,20 @@ prog: msh2vtu
In addition, it may be used as Python module:
```python
from ogstools.msh2vtu import run # to run mesh conversion
import argparse
from ogstools.msh2vtu import msh2vtu
parser = argparse.ArgumentParser()
# generate a mesh, e.g. my_mesh.msh with Gmsh
args = argparse.Namespace(
filename="my_mesh.msh",
output="",
msh2vtu(
input_filename="my_mesh.msh",
output_path="",
output_prefix="my_meshname",
dim=0,
delz=False,
swapxy=False,
rdcd=True,
ogs=True,
ascii=False,
log_level="DEBUG",
)
run(args)
```
______________________________________________________________________
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment