Skip to content

Commit

Permalink
Merge branch 'update_release_notes' into 'main'
Browse files Browse the repository at this point in the history
Update_Release_notes

See merge request ogs/tools/ogstools!98
  • Loading branch information
TobiasMeisel committed Dec 4, 2023
2 parents 2378eba + 0d43559 commit 825bbc0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
5 changes: 3 additions & 2 deletions docs/releases/ogstools-0.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
16 changes: 6 additions & 10 deletions docs/user-guide/msh2vtu.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

______________________________________________________________________
Expand Down

0 comments on commit 825bbc0

Please sign in to comment.