Cerfacs mesh adaption toolkit
Project description
Tékigô
About
Tékigô is a python helper tool for static mesh adaptation. It eases the creation of metrics, and store them in a file. The online documentation is available on the internal Cerfacs forge (Credentials needed). Soon the package will be updated on pypi with documentation on readthedocs.
There is a built-in adaptation step done with HIP mesh handler developed at CERFACS. It is suited for unstructured grids and particularly useful for CFD.
Note : for now, Tekigo handle AVBP mesh and solution format. However contact us for extendion to others format, it should not be a big deal...
Installation
please install first pyHIP :
pip install pyhip
While we a refurbishing this new version 1.0, it will not be released on PyPI before we reach a stable version. Therefore, please, use tekigo from the sources:
git clone git@gitlab.com:cerfacs/tekigo.git
followed in the tekigo/
parent directory by:
python setup.py install
If possible add pyavbp
to your environement.
This is not compulsory, but needed to create the xmf
file from you ionitial mesh and solution.
Learn more about COOP virtual environements in this blog post on COOP venvs
Basic usage:
Tekigo is used via python scripts, to do the following steps
- create a
TekigoSolution
, i.e. a mesh + solution with some additional fields (coordinates , volume at node). - Load from this
TekigoSolution
some Quantities of Interests. - Build a metric from these Quantities of Interests, using
numpy
formalism -and if neededsome tekigo utilities-. - Evaluate the metric, i.e. forecast the future mesh : how many cells are we going to get?, what the fields will look like in the end?
- If asked, perform a HIP/MMG adaptation
The script reads:
import numpy as np
from tekigo import (TekigoSolution, adaptation_pyhip)
tekigo_sol = TekigoSolution(
mesh='../../GILGAMESH/trapvtx/trappedvtx.mesh.h5',
solution='combu.init.h5',
out_dir='./Results')
x_coor = tekigo_sol.load_qoi('/Mesh/coord_x')
metric_field = np.where(x_coor<0.1,1,0.7)
tekigo_sol.evaluate_metric(metric_field)
adaptation_pyhip(tekigo_sol, edge_low=1.e-3)
See tutorials for more in-depth description of scripts. No magic exxecution for the moment, create your python script and run it with
python my_tekigo_script.py
Performances
Tekigo's adaptation_pyhip()
through HIP/MMG, is sequential : do not aim for final meshes above 150M Tetrahedrons.. Around 200 MCells, you will reach the limits of a sequential mesh adapter.
For larger cases, just use tekigo without the adaptation_pyhip()
step, pass the solution to TreeAdapt. For the record, TreeAdapt needs the final edge lenght (field target_edge
), not the metric(field metric
).
Acknowledgements
Tekigo is the result of many discussions and developments of different contributors within the COOP team of CERFACS.
Tekigo is a service created in the COEC Center Of Excellence, funded by the European community.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tekigo-1.0.2.tar.gz
.
File metadata
- Download URL: tekigo-1.0.2.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da6226988a3c92629210cf9dee2c8117c03d849c24a6b639bbb6332916f624ac |
|
MD5 | e45408cdabda0e42f1e3940381df5981 |
|
BLAKE2b-256 | d3d39d4a5b754407cb499aec59bd5b9bc6be52980bcdcd7ac496e00b59a227f2 |
File details
Details for the file tekigo-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: tekigo-1.0.2-py3-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e161b5277d37e63c53a1866e5d4db7654a2c3c7840a7fbf410360b6cc0e6758 |
|
MD5 | 33c7cf3c7b6fc6df5a32901369e34ed1 |
|
BLAKE2b-256 | e7ab702d3eb05812d55e612e2ac766b9be89c15c9dfc7fca0584c119167c8050 |