CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Mesh Generation & Pre-Processing Software > enGrid

Surface orientations

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 11, 2013, 21:04
Default Surface orientations
  #1
New Member
 
Thomas Kudla
Join Date: Mar 2013
Posts: 8
Rep Power: 13
mlotek is on a distinguished road
Hello,

I am new to EnGrid v 1.4 - I like it since it is somewhat familiar to what I have been using commercially.

I have tried to export an *.stl from salome with the surface mesh, import into EnGrid. Everything imports, passes mesh checks.

I have a box farfield, and a sphere solid wall. When I try to set the mesh orientation, the 'outside' of the farfield domain and the 'outside' of the solid sphere wall are always different colors. I tried to change just one surface, but to no avail, it always changes both to opposite. I cannot grow my volume mesh until I can figure this out. When I goto edit BC, I cannot choose green or yellow like in the tutorial. All I have is A >> or << B as an option... does anyone have any ideas? Should I try v 1.2 or 1.3 instead?

Thank you for the help,

Tom
mlotek is offline   Reply With Quote

Old   March 14, 2013, 07:17
Default
  #2
New Member
 
Thomas Kudla
Join Date: Mar 2013
Posts: 8
Rep Power: 13
mlotek is on a distinguished road
Ok, so it is necessary to re-orient the faces in your surface mesh program (in my case SALOME) before importing into EnGrid, at least this is my experience. After that it works o.k., except there is a prism mesh cell limit which is easily changed in the source.
mlotek is offline   Reply With Quote

Old   March 15, 2013, 10:05
Default
  #3
Senior Member
 
Oliver Gloth
Join Date: Mar 2009
Location: Todtnau, Germany
Posts: 121
Rep Power: 17
ogloth is on a distinguished road
Hi,

A >> or << B is the equivalent of green or yellow; it got changed in order to make it configurable for people with a red green deficiency.

Where did you find a prism limit in the the source code?

Cheers,
Oliver
ogloth is offline   Reply With Quote

Old   March 15, 2013, 19:42
Default
  #4
New Member
 
Thomas Kudla
Join Date: Mar 2013
Posts: 8
Rep Power: 13
mlotek is on a distinguished road
Thank you,

In: /engrid/src/libengrid/octree.cpp

Original:
Code:
while (N2 > 0);
  N2 = m_Cells.size();
  if (N2 + 8*N1 > m_MaxCells) {
    QString num;
    QString msg = "maximal number of cells exceeded\n";
    num.setNum(N2 + 8*N1);
    msg += num += " requested and ";
    num.setNum(m_MaxCells);
    msg += num + " allowed";
    EG_ERR_RETURN(msg);


To:


Code:
while (N2 > 0);
  N2 = m_Cells.size();
  if (N2 + 8*N1 > 10000*m_MaxCells) {
    QString num;
    QString msg = "maximal number of cells exceeded\n";
    num.setNum(N2 + 8*N1);
    msg += num += " requested and ";
    num.setNum(m_MaxCells);
    msg += num + " allowed";
    EG_ERR_RETURN(msg);

I did not look for m_MaxCells, just wanted it to run so I brute forced it.

Best,

Tom
mlotek is offline   Reply With Quote

Old   March 17, 2013, 11:05
Default
  #5
Senior Member
 
Oliver Gloth
Join Date: Mar 2009
Location: Todtnau, Germany
Posts: 121
Rep Power: 17
ogloth is on a distinguished road
Hi Tom,

that limit is not related to the number of prisms but to the size of the geometric search tree. This tree is used to find triangles of the underlying geometry if surface nodes need to be projected onto the surface. This is mainly used for the surface meshing algorithm but also sometimes during the boundary layer meshing. I think I will simply make this limit configurable.

Did you try to create the surface mesh directly within enGrid, instead of importing a surface mesh from a different mesher?

Cheers,
Oliver
ogloth is offline   Reply With Quote

Old   March 21, 2013, 20:52
Default
  #6
New Member
 
Thomas Kudla
Join Date: Mar 2013
Posts: 8
Rep Power: 13
mlotek is on a distinguished road
Hi Oliver,

I tried creating a surface mesh within Engrid, and it works better than trying to import it from Salome.

One last question, is there any way to create "density zones", or areas of concentrated tetra volumes? Maybe by specifying 8 points, and a 'max' cell size?

I think this is a great unstructured mesh tool.

Best,

Tom
mlotek is offline   Reply With Quote

Old   March 22, 2013, 14:09
Default
  #7
Senior Member
 
Oliver Gloth
Join Date: Mar 2009
Location: Todtnau, Germany
Posts: 121
Rep Power: 17
ogloth is on a distinguished road
Hello Tom,

yes you can define "density zones"; it happens in the same dialogue where the surface rules are specified (see picture). These zone apply to the surface and volume mesh.

'hope this helps!

Cheers,
Oliver
Attached Images
File Type: png snapshot1.png (37.3 KB, 27 views)
ogloth is offline   Reply With Quote

Old   March 24, 2013, 17:29
Default
  #8
New Member
 
Thomas Kudla
Join Date: Mar 2013
Posts: 8
Rep Power: 13
mlotek is on a distinguished road
Thanks Oliver, I am now able to specify density zones.

Best,

Tom
mlotek is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
[Gmsh] Error : Self intersecting surface mesh, computing intersections & Error : Impossible velan OpenFOAM Meshing & Mesh Conversion 3 October 22, 2015 11:05
Comsol (4.3): convert parametric surface into block? sgalaz COMSOL 0 November 9, 2012 09:20
import solids Alessio85 STAR-CCM+ 5 November 11, 2011 13:16
[Gmsh] boundaries with gmshToFoam‏ ouafa OpenFOAM Meshing & Mesh Conversion 7 May 21, 2010 12:43
free convection heat transfer from a heated horizontal surface through a liquid to a thin cooled fin Kaushik FLUENT 1 May 8, 2000 06:47


All times are GMT -4. The time now is 12:27.