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

[blockMesh] Very simple case, weird blockMesh

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By colinB

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 16, 2013, 03:51
Default Very simple case, weird blockMesh
  #1
Senior Member
 
Dongyue Li
Join Date: Jun 2012
Location: Beijing, China
Posts: 838
Rep Power: 17
sharonyue is on a distinguished road
Hi,

I want to create a box. My blockMesh code is:
Code:
convertToMeters 1;

vertices
(
    ( 581895  4785760  1038)
    ( 581895  4785760  1060)
    ( 581775  4785760  1060)
    ( 581775  4785760  1038)
    ( 581895  4785880  1038)
    ( 581895  4785880  1060)
    ( 581775  4785880  1060)
    ( 581775  4785880  1038)
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (10 20 20) simpleGrading (10.0 1 1)
//    hex (0 1 2 3 4 5 6 7) (6 6 6) simpleGrading (10.0 1 1)
);

edges
(
);

boundary
(
    maxX
    {
        type patch;
        faces
        (
            (3 7 6 2)
        );
    }
    minZ
    {
        type patch;
        faces
        (
            (0 4 7 3)
        );
    }
    maxZ
    {
        type patch;
        faces
        (
            (2 6 5 1)
        );
    }
    minX
    {
        type patch;
        faces
        (
            (1 5 4 0)
        );
    }
    minY
    {
        type patch;
        faces
        (
            (0 3 2 1)
        );
    }
    maxY
    {
        type patch;
        faces
        (
            (4 5 6 7)
        );
    }
);

mergePatchPairs
(
);
You can see it very very simple. But I got errors:
Code:
Checking geometry...
    Overall domain bounding box (581775 4.78576e+06 1038) (581895 4.78588e+06 1060)
    Mesh (non-empty, non-wedge) directions (1 1 1)
    Mesh (non-empty) directions (1 1 1)
    Boundary openness (4.04186e-17 3.46606e-17 0) OK.
 ***High aspect ratio cells found, Max aspect ratio: 2.11238e+201, number of cells 4000
  <<Writing 4000 cells with high aspect ratio to set highAspectRatioCells
    Minimum face area = 3.22979. Maximum face area = 36.  Face area magnitudes OK.
    Min volume = 2e-300. Max volume = 2e-300.  Total volume = 8e-297.  Cell volumes OK.
    Mesh non-orthogonality Max: 180 average: 180
 ***Number of non-orthogonality errors: 11200.
  <<Writing 11200 non-orthogonal faces to set nonOrthoFaces
 ***Error in face pyramids: 24000 faces are incorrectly oriented.
  <<Writing 12800 faces with incorrect orientation to set wrongOrientedFaces
    Max skewness = 4.32531e-09 OK.
    Coupled point location match (average 0) OK.

Failed 3 mesh checks.
Any ideas? Thanks.
Attached Files
File Type: c blockMeshDict.C (1.8 KB, 1 views)
sharonyue is offline   Reply With Quote

Old   October 16, 2013, 04:47
Default
  #2
Senior Member
 
Join Date: Aug 2010
Location: Groningen, The Netherlands
Posts: 216
Rep Power: 18
colinB is on a distinguished road
Hi sharonyue,

probably the problem is that you ordered the vertices wrong,
so your geometry looks somewhat like a sand clock.

To check this you can type paraFoam -block
and display your blockMesh file in paraview.

With this information you should be able to rearrange your vertices
correctly and get a satisfying blockMesh.

kind regards
Colin
sharonyue likes this.
colinB is offline   Reply With Quote

Old   October 16, 2013, 04:58
Default
  #3
Senior Member
 
Dongyue Li
Join Date: Jun 2012
Location: Beijing, China
Posts: 838
Rep Power: 17
sharonyue is on a distinguished road
Thanks man, you are rite. I should rearrange my vertices. woo!
sharonyue 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
[DesignModeler] DesignModeler Scripting: How to get Full Command Access ANT ANSYS Meshing & Geometry 53 February 16, 2020 15:13
bubbleFoam - Simple case, Large bubble, closed domain darai OpenFOAM Running, Solving & CFD 9 October 12, 2015 05:40
A simple tube FSI case can't converge stickjohnson OpenFOAM 1 June 23, 2014 21:42
Simple test case for k-epilon model mathletic Main CFD Forum 2 September 28, 2012 03:04
Simple Q. How to complete a Case? W.A. Siemens 3 April 23, 2006 19:41


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