CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Meshing & Mesh Conversion

[Other] autoRefineMesh

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 7, 2013, 06:06
Default autoRefineMesh
  #1
Member
 
Join Date: Jun 2011
Posts: 42
Rep Power: 14
mikeP is on a distinguished road
Hi,
I am trying to modify the motorBike mesh, which is created by snappyHexMesh (see fig 1). I am trying to get a constant cell height on the bottom wall with autoRefineMesh, by doing refinement only in the normal direction to the surface. However, it refines the fine cells under the motorbike and gets to the minEdgeLen quickly even though I set nearDist to not include those cells. Furthermore, some cells further from the motorbike are not refined at all! (Fig. 2)

Here is my autoRefineMeshDict:
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.x                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      autoRefineMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

// Surface to keep to
surface         "lowerWall.stl";

// What is outside. These points have to be inside a cell (so not on a face!)
outsidePoints   ((-4.8888 0.11111 0.11111));

//
// Selection of cells to refine
//

// If smallest edge of mesh > maxEdgeLen select all cut cells for refinement.
// If < maxEdgeLen select only those cut cells which are closer than
// curvatureDistance to surface
// and with cos of angle between normals on surface < curvature.
maxEdgeLen          1.0;
curvatureDistance   1.5;
curvature           0.9;

// if > 0: Remove inside cells at every step. Inside is given by number of
// layers separating outside from inside.
// (note that we cannot remove outside
// cells since these contain the outsidePoints)
// Do not use this option if you want mesh to spill through a hole which is
// not visible on the coarsest level but only becomes visible after refinement
nCutLayers 2;

// Refine until smallest edge of mesh < minEdgeLen
minEdgeLen      0.0001;

// Or until the number of cells would become more than (stops one level before
// this)
cellLimit       10000000;

//
// Selection of final set
//

// Select based on side of surface. Usually select inside cells and project
// outwards or select outside cells and project inwards.
selectCut       false;
selectInside    false;
selectOutside   true;
// Leave out cell closer than nearDistance to the surface. Usually
// 0.5*minEdgeLen. Set to -1 to disable.
nearDistance    4;

// Some cells on the surface of the selected cells might have all their
// points on the 'outside'. These would get flattened when projecting so
// are either kept and refined (selectHanging) or removed from the set
selectHanging   false;

//
// Refinement parameters
//

// Type of coordinate system
coordinateSystem global;
//coordinateSystem patchLocal;

// .. and its coefficients. x,y in this case. (normal = tan1^tan2)
globalCoeffs
{
    tan1 (1 0 0);
    tan2 (0 1 0);
}

patchLocalCoeffs
{
    patch outside;  // Normal direction is facenormal of zero'th face of patch
    tan1 (1 0 0);

}

// List of directions to refine
directions
(
    normal
    //tan1
    //tan2
);

// refinement level difference between neighbouring cells. Set to large if
// there is no need for a limit.
splitLevel      2;

// Cut purely geometric (will cut hexes through vertices) or take topology
// into account.
geometricCut    false;

// Whether to use hex topology. This will never cut hex through vertices.
useHexTopology  yes;

// Write meshes from intermediate steps
writeMesh       false;

// ************************************************************************* //
Attached Images
File Type: jpg 1.jpg (37.7 KB, 65 views)
File Type: jpg 2.jpg (38.1 KB, 61 views)
mikeP is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
[Other] AutoRefineMesh Friendly OpenFOAM Meshing & Mesh Conversion 0 October 17, 2017 15:03
[CAD formats] Recommended way of generating mesh from cad Tobias Prousa (Prousa) OpenFOAM Meshing & Mesh Conversion 24 March 19, 2009 19:31
Incorrect labelList initialization in autoRefineMesh 7islands OpenFOAM Bugs 1 August 8, 2008 03:48
[mesh manipulation] AutoRefineMesh bastil OpenFOAM Meshing & Mesh Conversion 6 May 1, 2007 16:14
[mesh manipulation] AutoRefineMesh utility pbo OpenFOAM Meshing & Mesh Conversion 8 March 18, 2007 01:08


All times are GMT -4. The time now is 02:09.