CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM (https://www.cfd-online.com/Forums/openfoam/)
-   -   blockMesh - parallel mesh generation (https://www.cfd-online.com/Forums/openfoam/84546-blockmesh-parallel-mesh-generation.html)

WolfgangS. February 2, 2011 04:52

blockMesh - parallel mesh generation
 
Hi Foamers!

I have just a short question.

Is a parallel mesh generation with blockMesh possible?


Thanks and best regards!

Wolfgang

Rusty Velo February 3, 2011 04:21

Hi Wolfgang,
I'm not sure, what you're meaning with a parallel mesh generation.. But if you want to define a rectangular area with a mesh (existing of rectangular cells, which can have regular or irregular dimensions): This is possible.

I normally define my (3d) domains with BlockMesh and insert other geometries with snappyHexMesh.. But I'm still a Beginner in OF, so that this is maybe not the best way for a geometry preparation..

best regards,
felix

akidess February 3, 2011 04:59

I think he meant if he can run blockMesh in parallel, and I think the answer is no.

WolfgangS. February 3, 2011 08:00

hi felix and akidess

akidess is right.

By now i used...

blockMesh
decomposePar
mpiexec -n 12 snappyHexMesh -parallel

... and it worked fine.

Thanks akidess for your quick answer.

Best regards
Wolfgang

mo.houssami January 15, 2013 09:19

Hi Foamers,

Now that we're in 2013 :cool: , do you know if there's a way to run blockMesh in parallel?

I am trying to run a 3D case on a cluster, with 28 blocks and a total of 67x10^6 cells... Hence, blockMesh it taking forever.

Do you have any suggestions? :confused:

Thanks

gschaider January 15, 2013 10:42

Quote:

Originally Posted by mo.houssami (Post 401963)
Hi Foamers,

Now that we're in 2013 :cool: , do you know if there's a way to run blockMesh in parallel?

I am trying to run a 3D case on a cluster, with 28 blocks and a total of 67x10^6 cells... Hence, blockMesh it taking forever.

Do you have any suggestions? :confused:

Yeah. Use a more sensible mesh.

No seriously: blockMesh doesn't work in parallel and would be hard to write such a thing in parallel (think about it: you're asking the decomposition algorithm to know how to decompose before the actual cells are known).

Anyway: one way would be the following (I'm only sketching this. You have a cluster for a 67m cell mesh so I assume you either have the time to set this up yourself or the money to buy support to do this for you):

- set up blockMeshes for single blocks (or small managable groups). Set up patches for the processor patches (but give them the type patch)
- run blockMesh on each of these blocks
- copy the constant/polyMesh into the appropriate processorX/constant/polyMesh directory
- either edit by hand or have a script to edit the polyMesh/boundary-files to change the type of the patches from patch to processor

Now you have a mesh that is decomposed for 28 processors (assuming each block gets his own processor). If that is not the number of processors you want to do the calculation with or if the mesh is unbalanced because the blocks are not of the same cell number then you can use the redistributeParMesh utility to get an evenly distributed mesh on any number of processors you like.

All these steps can be scripted (even decomposing the big blockMeshDict into 28 dicts ... but it won't be pretty)

Hisham January 3, 2014 18:56

Although this seems to be a year later. I think a nice solution would also be to:

1. make a coarse mesh
2. decomposePar it
3. Edit: run topoSet in parallel to add sets to constant/polyMesh
in system/topoSetDict create a cellSet via a large box to include
all cells for refinement
3. run refineHexMesh as many times as you desire in parallel


Best regards,
Hisham


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