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

[snappyHexMesh] snappyHexMesh with empty face type

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   December 24, 2023, 08:37
Default snappyHexMesh with empty face type
  #1
Senior Member
 
Saeed Jamshidi
Join Date: Aug 2019
Posts: 214
Rep Power: 7
saeed jamshidi is on a distinguished road
Hello,

I'm wondering why it take longer time for execution of snappyHexMesh at the moment that I'm considering empty for front and back faces of my solution in comparison to the condition that front and back are patch or symmetry type?!
Shall I consider
Code:
defaultPatch
{
    name frontAndBack;
    type empty;
}
istead of below type?

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

scale 1;

vertices
(
    (-0.4 -0.4 0.01) //0
    (1 -0.4 0.01) //1
    (1 0.4 0.01)  //2
    (-0.4 0.4 0.01)  //3
	
    (-0.4 -0.4 -0.01)  //4
    (1 -0.4 -0.01)  //5
    (1 0.4 -0.01)  //6
    (-0.4 0.4 -0.01)  //7
);

blocks
(
    hex (4 5 6 7 0 1 2 3) (140 80 1) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    
    inlet
    {
        type patch;
        faces
        (
            (0 4 7 3)
        );
    }
    outlet
    {
        type patch;
        faces
        (
            (1 5 6 2)
        );
    }
	topAndBottom
    {
        type patch;
        faces
        (
            (3 2 6 7)
			(0 1 5 4)
        );
    }

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

);

mergePatchPairs
(
);

// ************	************************************************************* //
I would appreciate it if you help me in this matter.
saeed jamshidi 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
[Commercial meshers] Problem with Mesh conversion from FLUENT Meshing to OpenFOAM mn17jyf OpenFOAM Meshing & Mesh Conversion 3 November 1, 2023 09:49
Multiphase euler foam problem with velocity vector enthusiast OpenFOAM Running, Solving & CFD 1 January 20, 2023 03:54
time step continuity problem in VAWT simulation lpz_michele OpenFOAM Running, Solving & CFD 5 February 22, 2018 19:50
multiphaseEulerFoam/tank discharge ves OpenFOAM Running, Solving & CFD 8 December 31, 2017 14:59
Divergent temperature in chtMultiRegion(Simple)Foam akrasemann OpenFOAM Running, Solving & CFD 13 March 24, 2014 02:54


All times are GMT -4. The time now is 15:43.