|
[Sponsors] |
Mesh to points cells faces and boundaries files |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
April 28, 2005, 13:36 |
Hi,
Is there any visual too
|
#1 |
Senior Member
Billy
Join Date: Mar 2009
Posts: 167
Rep Power: 17 |
Hi,
Is there any visual tool to build the initial geometry for blockMesh? I have noticed that OpenFOAM mesh data is very structured. The internal faces come first and then boundary faces come last. Also boundary faces are sequential for a given patch. I think this is to help create the patches. My question is how do I translate a mesh with only a list of nodes and and a list of elements (completly unstrucutured) into OpenFOAM. I can develop a program to find the points, faces and cells but how do I extract the patches from this information? |
|
April 28, 2005, 14:08 |
Try gmsh. It allows you to do
|
#2 |
Senior Member
Mattijs Janssens
Join Date: Mar 2009
Posts: 1,419
Rep Power: 26 |
Try gmsh. It allows you to do put coordinates in space (not very interactively though) and can also generate a mesh from it. Or you can probably extract the points from its .geo to use inside blockMesh.
I once used a cad package and put blocks where I wanted the blockMesh blocks and then took over the point locations. If you come across any interesting other way please let us know. To translate those meshes have a look at one of the existing converters. Almost all use a format like you describe (i.e. cell shape and vertices) E.g. gmshToFoam. Boundaries are usually input as a list of faces (i.e. triangles or quads using boundary points) The polyMesh constructor in e.g. gmshToFoam will automatically convert this format into the OpenFOAM face based format. |
|
April 28, 2005, 15:53 |
Heya,
I have noticed that O
|
#3 | |
Senior Member
Hrvoje Jasak
Join Date: Mar 2009
Location: London, England
Posts: 1,907
Rep Power: 33 |
Heya,
Quote:
If you happen to have an external mesh format in terms of points, cell shapes and boundary faces, I've got just the thing for you. Have a look at: OpenFOAM-1.1/src/OpenFOAM/lnInclude/polyMesh.H (for me around line 288): //- Construct from cell shapes polyMesh ( const IOobject& io, const pointField& points, const cellShapeList& shapes, const faceListList& boundaryFaces, const wordList& boundaryPatchNames, const wordList& boundaryPatchTypes, const word& defaultBoundaryPatchType, const wordList& boundaryPatchPhysicalTypes ); This constructor will take a list of points, cell shapes and a list of lists of boundary faces and make a foam mesh. In other words, it will calculate and re-order the faces for you. If you haven't got the boundary faces, you can keep the list empty and all external faces will end up in the default patch + you can re-patch the mesh later. This is how some of the simpler mesh converters are written, have a look at the fluent and gambit converter for examples of use. Enjoy, Hrv
__________________
Hrvoje Jasak Providing commercial FOAM/OpenFOAM and CFD Consulting: http://wikki.co.uk |
||
April 28, 2005, 16:08 |
Thank you very much for your r
|
#4 |
Senior Member
Billy
Join Date: Mar 2009
Posts: 167
Rep Power: 17 |
Thank you very much for your reply.
I will look into gmsh. About the meshing, I thought of developing a tool for translating the mesh and discovering the patches (initial guess based on the connectivity and angles between boundary faces). Do you think this would be useful? Why does the ideasToFoam translator convert ansys files and not the universal (*.unv) file? |
|
April 28, 2005, 16:17 |
As for the discovering of patc
|
#5 |
Senior Member
Mattijs Janssens
Join Date: Mar 2009
Posts: 1,419
Rep Power: 26 |
As for the discovering of patches: have a look at autoPatch (in the utilities/mesh/manipulation directory) which does exactly what you describe.
|
|
April 28, 2005, 16:24 |
> Why does the ideasToFoam tra
|
#6 |
Senior Member
Join Date: Mar 2009
Posts: 854
Rep Power: 22 |
> Why does the ideasToFoam translator convert ansys files and not the universal (*.unv) file?
Because that is what we were given by the people who asked for the converter and it was easier. |
|
April 28, 2005, 16:27 |
One more thing!!
I have be
|
#7 |
Senior Member
Billy
Join Date: Mar 2009
Posts: 167
Rep Power: 17 |
One more thing!!
I have been searching for a tool to some way help me import / build geometries and visualize models with OpenFOAM. I have looked and I can't find anyhting simple and easy to use. I thought about programming something myself using: - Qt and QGLWidget, - KDE-based with QGLWidget, - GLUI and GLUT. I like this one problem is that I can't seem to get GLUI working correctly. I don't know about Java 3D, has anyone used it? Is is easy to install and learn? I am open to suggestions. |
|
April 28, 2005, 16:44 |
A fourth one: the fox toolkit.
|
#8 |
Senior Member
Mattijs Janssens
Join Date: Mar 2009
Posts: 1,419
Rep Power: 26 |
A fourth one: the fox toolkit. Ports very nicely and has nice OpenGL demo.
Java3D is quite nice but very hard to couple to C++ (if you would like to use OpenFOAM mesh routines or dictionary handling). Have a look at the patchTool in the mesh/manipulation directory. Wasn't Guiseppe also trying to make some visual tool? (have a search on this site) |
|
April 29, 2005, 09:46 |
I have downloaded gmsh and it
|
#9 |
Senior Member
Billy
Join Date: Mar 2009
Posts: 167
Rep Power: 17 |
I have downloaded gmsh and it seems very good. I am having problems to model complex shapes. Does anyone know of a good CAD tool for linux for solid modelling and meshing? I have seen OpenCASCADE and SALOME but I can't get them installed properly.
Fox toolkit is also very nice and comes with great examples. I will try to learn more about it. Thanks for the tips. |
|
April 29, 2005, 14:33 |
Hi, Billy,
I have been usin
|
#10 |
Senior Member
Pei-Ying Hsieh
Join Date: Mar 2009
Posts: 317
Rep Power: 18 |
Hi, Billy,
I have been using netgen (with step format generated using SolidWorks). I have built complex geometry meshes without any problem. There are two drawbacks assoicated with netgen: 1. only supports Tet elements. 2. can have only one volume. pei |
|
April 30, 2005, 13:02 |
Hello everyone,
I finally i
|
#11 |
Senior Member
Billy
Join Date: Mar 2009
Posts: 167
Rep Power: 17 |
Hello everyone,
I finally imported my meshes into OpenFOAM. I converted all of them into gmsh format (list of nodes and elements) and then used gmshToFoam utility as suggested here. It worked great, organized all the data and wrote the points, faces and cells files. Then I ran the autoPatch utility and it reconstructed the boundary patches automatically. This also worked very well. The funny thing is that I still can't translate the meshes built using gmsh. It gives an error about missing a face or something. However, this doesn't matter for now because the other method works very well. I am very impressed with OpenFOAM capabilities. I wish that I can also contribute to OpenFOAM development some day. Thank you very much. |
|
April 30, 2005, 13:18 |
Hi Billy,
Did you use the l
|
#12 |
Senior Member
Mattijs Janssens
Join Date: Mar 2009
Posts: 1,419
Rep Power: 26 |
Hi Billy,
Did you use the latest gmshToFoam.C? It has some additional commandline options (-invertHex, -invertPrism) and you'll need to run checkMesh afterwards on the resulting OpenFOAM mesh until you figured out the correct option. This gmshToFoam.C is posted somewhere. Have a search. |
|
April 30, 2005, 19:20 |
Hi Mattijs,
Maybe it is not
|
#13 |
Senior Member
Billy
Join Date: Mar 2009
Posts: 167
Rep Power: 17 |
Hi Mattijs,
Maybe it is not the latest version, since I am using OpenFOAM 1.0.2. I will check that out. Thanks. |
|
May 4, 2005, 11:32 |
Hi, Mattijs,
Can you give a
|
#14 |
Senior Member
Pei-Ying Hsieh
Join Date: Mar 2009
Posts: 317
Rep Power: 18 |
Hi, Mattijs,
Can you give a brief explaination how autoPatch works? I took a look at it. It requires input of an angle. Does it mean that it will try to find the boundary faces with the specified angle? What if I have a curved boundary patch (the angles of the boundary faces of this boundary patch may vary)? Thanks! Pei |
|
May 4, 2005, 18:20 |
IIRC autoPatch groups faces in
|
#15 |
Senior Member
Eugene de Villiers
Join Date: Mar 2009
Posts: 725
Rep Power: 21 |
IIRC autoPatch groups faces in boundary regions that are not seperated by a corner of the specified angle (i.e. feature lines). Note autoPatch will replace all old patches with feature line delineated patches.
|
|
May 13, 2005, 15:20 |
hello Billy ;
i am Trying
|
#16 |
New Member
alain nguenkem kamgang
Join Date: Mar 2009
Location: Stuttgart, Baden würtemberg, Germany
Posts: 3
Rep Power: 17 |
hello Billy ;
i am Trying to do a volume Mesh but i will like to know if there are some Basich ron rules concerning the Volume Mesh ??? And Please tell hoe to view a file after Exporting on MED Format ??? i have tried to export a file after meshind and i could not open it after , please tell me how to do it. thanks. |
|
May 14, 2005, 07:49 |
Hi Alain,
I do not recogniz
|
#17 |
Senior Member
Billy
Join Date: Mar 2009
Posts: 167
Rep Power: 17 |
Hi Alain,
I do not recognize the MED format. Do you mean MSH format? Until now, I have only used the MSH format of GMSH + autoPatch utility to import meshes into OpenFOAM. |
|
May 17, 2005, 19:34 |
Hi Billy ;
Do you know the
|
#18 |
New Member
alain nguenkem kamgang
Join Date: Mar 2009
Location: Stuttgart, Baden würtemberg, Germany
Posts: 3
Rep Power: 17 |
Hi Billy ;
Do you know the Open souce Programm Salome that which i have been asking you is a specific format base on Salom , and i have not found any ook where i can get information concerning Salome.Please if you have any information about this please just tell . Alain. Thanks |
|
April 18, 2006, 16:00 |
Hi, Billy,
It looked like y
|
#19 |
Senior Member
Pei-Ying Hsieh
Join Date: Mar 2009
Posts: 317
Rep Power: 18 |
Hi, Billy,
It looked like you have successfully converted your mesh to gmsh format and then converted to OpenFOAM format using gmshToFoam. I have a mesh exported to Ansys format from I-DEAS. I might be able to convert the Ansys format to gmesh and do exactly what you did. In the gmsh format, do you know what reg-phys and reg-elem are? reg-phys: the number of the physical entity to which the element belongs. reg-element: the number of the elementary entity to which the element belongs. I do not understant these definitions. What is elementary entity? It will be appreciated if you can shed some light on this. pei |
|
April 18, 2006, 16:38 |
Hi, Billy,
I just found out
|
#20 |
Senior Member
Pei-Ying Hsieh
Join Date: Mar 2009
Posts: 317
Rep Power: 18 |
Hi, Billy,
I just found out that I-DEAS does not support pyramid. I have a part with two volumes, one volume was meshed with Hex and one volume was meshed with Tet. So, on one face of some Hex elements, the Quad face was split into two triangles (this occurs on the Hex element that has Tet neighbours). Can OpenFOAM handle this situation? Pei |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[Technical] About OpenFOAM and concave faces or cells | mbeaudoin | OpenFOAM Meshing & Mesh Conversion | 4 | October 13, 2021 07:54 |
Interpolation between faces and points of a polyPatch | hartinger | OpenFOAM Running, Solving & CFD | 12 | March 7, 2016 14:08 |
interpolation on faces and wall boundaries | ca | Main CFD Forum | 0 | September 2, 2008 13:42 |
Mesh hard points on faces | Ashton Peters | FLUENT | 4 | March 15, 2005 16:43 |
Beginner: cell faces of surface cells | Sunlight007 | Siemens | 0 | August 24, 2003 18:19 |