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

[snappyHexMesh] OpenFoam_Refinement with SnappyHexMesh

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 26, 2017, 13:07
Default OpenFoam_Refinement with SnappyHexMesh
  #1
New Member
 
Francesco Matacchiera
Join Date: Mar 2017
Posts: 9
Rep Power: 9
fra_mat is on a distinguished road
Hi all,

I am a student quite new to OpenFoam. I have read the User's guide and studies some tutorials, so now I am starting with a very simple case based on the WindAroundBuildings tutorial. The mesh is very coars as I just want to understand the snappyHexMesh process.

The blockMeshDict file is as following (blue text):

backgroundMesh
{
xMin -20; // L = 350
xMax 50;
yMin -20; // L = 280
yMax 30;
zMin 0;
zMax 10;
xCells 20;
yCells 10;
zCells 5;
}

convertToMeters 1;

vertices
(
($:backgroundMesh.xMin $:backgroundMesh.yMin $:backgroundMesh.zMin)
($:backgroundMesh.xMax $:backgroundMesh.yMin $:backgroundMesh.zMin)
($:backgroundMesh.xMax $:backgroundMesh.yMax $:backgroundMesh.zMin)
($:backgroundMesh.xMin $:backgroundMesh.yMax $:backgroundMesh.zMin)

($:backgroundMesh.xMin $:backgroundMesh.yMin $:backgroundMesh.zMax)
($:backgroundMesh.xMax $:backgroundMesh.yMin $:backgroundMesh.zMax)
($:backgroundMesh.xMax $:backgroundMesh.yMax $:backgroundMesh.zMax)
($:backgroundMesh.xMin $:backgroundMesh.yMax $:backgroundMesh.zMax)
);

blocks
(
hex (0 1 2 3 4 5 6 7)
(
$:backgroundMesh.xCells
$:backgroundMesh.yCells
$:backgroundMesh.zCells
)
simpleGrading (1 1 1)
);

edges
(
);

boundary
(
inlet
{
type patch;
faces
(
(0 3 7 4)
);
}

outlet
{
type patch;
faces
(
(1 5 6 2)
);
}

ground
{
type wall;
faces
(
(0 1 2 3)
);
}

frontAndBack
{
type symmetry;
faces
(
(0 4 5 1)
(3 2 6 7)
(4 7 6 5)
);
}

);

mergePatchPairs
(
);

// ************************************************** *********************** //


My snappyHexMesh is as following (red text):

castellatedMesh on;
snap on;
addLayers off;

geometry
{
try.stl
{
type triSurfaceMesh;
name try;
}

refinementBox
{
type searchableBox;
min ( -5 -10 0);
max (20 10 5);
}
};

castellatedMeshControls
{
features
(
{ file "try.eMesh"; level 3; }
);

refinementSurfaces
{
try
{
level (3 3);
patchInfo { type wall; }
}
}

refinementRegions
{
refinementBox
{
mode inside;
levels ((1E15 2));
}
}

locationInMesh (1 1 1);
}

snapControls
{
explicitFeatureSnap true;
implicitFeatureSnap false;
}

addLayersControls
{
layers
{
"CAD.*"
{
nSurfaceLayers 2;
}
}

relativeSizes true;
expansionRatio 1.2;
finalLayerThickness 0.5;
minThickness 1e-3;
}

meshQualityControls
{
}

writeFlags
(
scalarLevels
layerSets
layerFields
);

mergeTolerance 1e-6;

// ************************************************** *********************** //


So I want to refine the mesh around my Geometry (the .stl file), defining a box inside the blockMesh domain.

The code runs, but when I analyse the Mesh with Paraview, there is no refinement.

May someone help me with this?

Thank you!
fra_mat is offline   Reply With Quote

Old   October 26, 2017, 13:17
Default
  #2
New Member
 
Francesco Matacchiera
Join Date: Mar 2017
Posts: 9
Rep Power: 9
fra_mat is on a distinguished road
I apologize, the error was in the surfaceFeatureExtractDict file.

This thread can be eliminated
fra_mat 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
[CAD formats] Creating waterproof STL using snappyHexMesh or salome Tobi OpenFOAM Meshing & Mesh Conversion 58 May 13, 2020 06:01
[snappyHexMesh] Running snappyHexMesh in parallel - optimizing peterhess OpenFOAM Meshing & Mesh Conversion 2 January 3, 2018 02:54
[snappyHexMesh] Tutorial crashes: snappyHexMesh floating point exception. jasv OpenFOAM Meshing & Mesh Conversion 4 May 10, 2016 02:55
[snappyHexMesh] snappyhexmesh doesn't creat mesh in parallel issue? klausb OpenFOAM Meshing & Mesh Conversion 1 March 7, 2015 11:55
[snappyHexMesh] stitchMesh and snappyHexMesh gdbaldw OpenFOAM Meshing & Mesh Conversion 0 December 23, 2009 02:09


All times are GMT -4. The time now is 07:17.