|
[Sponsors] |
August 22, 2012, 18:01 |
Parallelized dnsFoam (how do I do forcing?)
|
#1 |
New Member
Stehpen
Join Date: Aug 2012
Location: McMaster University
Posts: 1
Rep Power: 0 |
Hi everyone,
I am trying to run dnsFoam in parallel. This solver works fine in serial, however, once the spatial decomposition of the grid has occurred (that is, once the decomposePar utility has been called), the forcing scheme used in this solver (which makes use of the "randomProcesses" source files, in particular, the member functions of fft class), causes the solver to crash. I employed the following sequence of commands: blockMesh boxTurb mpirun -np 2 dnsFoam -parallel reconstructPar The specific error I encounter is: [0] --> FOAM FATAL ERROR: [0] calculated number of cells is incorrect [0] [0] From functino Kmesh::Kmesh(const fvMesh & mesh) [0] in file Kmesh/Kmesh.C at line 84. [0] So it appears this forcing scheme needs the whole domain (and not just a portion of it) to operate. Does anyone have any ideas? |
|
October 18, 2012, 16:29 |
Cannot figure out parallel processing
|
#2 |
New Member
Join Date: Oct 2012
Posts: 1
Rep Power: 0 |
Hi
I am trying to run a dnsFoam job locally on a multiprocessor machine. My grid is very simple. here it is: Code:
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.1.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object blockMeshDict; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // convertToMeters 0.01; vertices ( (0 0 0) (1 0 0) (1 .25 0) (0 .25 0) (1 .5 0) (0 .5 0) (0 0 .01) (1 0 .01) (1 .25 .01) (0 .25 .01) (1 .5 .01) (0 .5 .01) ); blocks ( hex (0 1 2 3 6 7 8 9) (512 128 1) simpleGrading (1 1 1) hex (3 2 4 5 9 8 10 11) (512 128 1) simpleGrading (1 1 1) ); edges ( ); boundary ( inlet { type patch; faces ( (0 3 9 6) (3 5 11 9) ); } outlet { type patch; faces ( (1 2 8 7) (2 4 10 8) ); } topWall { type patch; faces ( (5 11 10 4) ); } bottomWall { type wall; faces ( (0 6 7 1) ); } frontAndBack { type empty; faces ( (0 1 2 3) (3 2 4 5) (6 7 8 9) (9 8 10 11) ); } ); mergePatchPairs ( ); I'm trying to run on 2 processors... my decomposeParDict is simple, 2 subdomains in the y-direction because i'm trying to simulate M=.7 turbulent flow over a 2d flat plate. I keep getting this error when I try to run "mpirun -np 2 dnsFoam -parallel" FOAM FATAL ERROR: calculated number of cells is incorrect I have read other posts on the forums but I guess I am just not understanding the solution. Can someone please break it down for me? thank you in advance!!!! |
|
October 18, 2012, 16:58 |
|
#3 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Greetings to both of you and welcome to the forum!
My apologies for moving openfoamnoob's post to this thread, but it felt like this will help you both:
Bruno
__________________
|
|
Tags |
dns, dnsfoam, forcing, parallel |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Flow around cylinder, forcing term | krsp | OpenFOAM | 0 | June 14, 2012 09:07 |
Generating turbulence w/ forcing functions | JoshS | Main CFD Forum | 1 | April 13, 2012 05:38 |
bug in dnsFOAM | cfdmarkus | OpenFOAM Bugs | 1 | January 29, 2010 06:01 |
dnsFoam | cfdmarkus | OpenFOAM Running, Solving & CFD | 0 | July 15, 2009 07:26 |
Is dnsFoam can run in parallel | mamaly60 | OpenFOAM Running, Solving & CFD | 0 | October 29, 2007 19:27 |