Introduction
Gmsh is an open-source lightweight and easy to use meshing tool. With it, it is possible to use APIs in multiple programming languages to launch the meshing steps. Running your Gmsh meshing on Qarnot is as easy as uploading your case and launching a script. Here’s a walk-through of the different steps.
Versions
The test case uses Gmsh 4.8.4.
Release year | Version |
---|---|
2021 | 4.8.4 |
If you are interested in another version, please send us an email at qlab@qarnot.com.
Test case
Please ensure that you have created a Qarnot account here.
This test case is based on three simple cubes to mesh. You can download the files here, which contains the geometry definition in a Gmsh file. You should put it at the same folder level as the script to launch the calculation. Please note that it needs to be unzipped before it can be used on Qarnot.
Launching the case
Before starting a calculation with the Python SDK, a few steps are required:
Note: in addition to the Python SDK, Qarnot provides C# and Node.js SDKs and a Command Line.
Once everything is set up, the following script needs to be used to start the calculation.
Be sure you have copied your authentication token in the script (instead of <<<MY_SECRET_TOKEN>>>
) to be able to launch the task on Qarnot.
gmsh.py
To launch this script, simply copy the preceding code in a Python script, put at the same level as the hex folder and execute python3 gmsh.py &
in your terminal.
Results
At any given time, you can monitor the status of your task on the general web interface Console. The following figure shows a successful Gmsh demo simulation on Qarnot’s console.
You should also now have a result folder in the output bucket and on your computer containing the mesh result. You can open the hex.vtk file in Paraview or any other viewer. You can also use our Paraview Web payload to view the results online if needed.
Wrapping up
That’s it! If you have any questions, please contact qlab@qarnot.com and we will help you with pleasure!
comments