-
-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support nearest-projection mapping #2
Comments
Please note that, besides edges, in 3D also triangles need to be defined. |
OpenFOAM can use various types of cells, the most common being hexahedral cells. How should the triangles be defined in hexahedral cells, where we have four-edge faces? |
A possible solution would be to sub-divide the hexa faces into two triangles. We use a similar approach (successfully) for Ateles. The other option would be to use quads in preCICE ( |
There are now thoughts on supporting quads on preCICE: precice/precice#153 This could take a while, though. |
There is a question on whether to define the triangles using the nodes of one face (so... inside the face), or to use the face centers of neighboring cells. (here, I should add a nice illustration in the near future) Looking at the big picture:
|
In general, it would be preferable to create the edges/triangles based on the face centers, since the FVM provides the information there. But we have a loss of connectivity information, when we decompose the mesh. Openfoam crosses our "virtual edges" in the decomposition and the processor is not aware of the neighbor face. The idea is now, to provide the connectivity information based on the real nodes and apply an interpolation from the cell centers to the nodes. |
Our current question is "what is the connectivity the the solver knows" and then "how to use this connectivity in the adapter (i.e. which methods to use)". Another question is "how to define triangles". Does OpenFOAM offer some triangulation method? If it has a triangulation method, then we should apply this first. Then, we need to extract the connectivity from the triangulated mesh, which would maybe be easier. Therefore, I think we should focus on finding a way to triangulate surfaces in OpenFOAM. This will unlock us some doors. |
There is a Although this function is significantly slower than the mentioned function |
After triangulating (the decomposed mesh, I assume) do we still get the problem of edges belonging to different subdomains? How would you use the |
Since we define triangles (and thus edges) based on the real nodes and not on the face centers, we will not lose any connectivity information. In the previous step we can interpolate from the faces to the nodes, as already described, using the We apply therefore the triangulation and get three faces back, which are labelLists with the three vertices clamping each face. |
Then we can also create triangles from edges, using (I assume you meant "and get two faces back") |
Yes, of course, a quad, two triangles.
The quick answer: Yes, there might be a solution. |
Some conclusions from our so far discussions here and in person:
|
In order to realize the described method., each participant needs to define two meshes: One based on the face nodes (which we use to read the data from the participant) and one for the centers (which we use to write the information to the mesh). This allows us, to skip an unnecessary interpolation step during the write procedure, since we directly use the face centers. Besides the input data concerning the meshes, the user can specify with "faceTriangles" instead of e.g. "faceCenters", that the adapter should perform in the described way, which means, triangles (connectivity) and the two meshes are defined for each participant with the respective mapping setup. If no nearest-projection mapping is desired, this should allow to skip the computational more expensive step of the triangulation. |
The feature in now implemented in |
The adapter currently does not provide preCICE with the mesh edges, but only with the locations of the vertices. This means that currently nearest-projection mapping is not supported.
preCICE provides the following method in its src/precice/SolverInterface.hpp file:
The mesh vertices are assigned in the adapter's Interface.C file, in the method
preciceAdapter::Interface::configureMesh()
.The text was updated successfully, but these errors were encountered: