CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

Running PimpleDyMFoam in parallel

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 6, 2010, 12:03
Default Running PimpleDyMFoam in parallel
  #1
New Member
 
Paul Bomke
Join Date: Mar 2010
Location: Bremen, Germany
Posts: 16
Rep Power: 16
paul b is on a distinguished road
Hey Guys,

I got stuck trying to run pimpleDyMFoam in parallel. The decomposition ran through without throwing any error messages but if I try and do:

Code:
mpirun -n 4 pimpleDyMFoam -parallel
I get:

Code:
Create time

Create mesh for time = 0

Selecting dynamicFvMesh dynamicMotionSolverFvMesh
Selecting motion solver: velocityLaplacian
[0] 
[0] 
[0] --> FOAM FATAL IO ERROR: 
[0] size 898 is not equal to the given value of 518
[0] 
[0] file: /home/bionik/CFD/williamsWing5/processor0/0/pointMotionU::boundaryField::wing from line 55 to line 71.
[0] 
[0]     From function Field<Type>::Field(const word& keyword, const dictionary&, const label)
[0]     in file /home/bionik/OpenFOAM/OpenFOAM-1.6.x/src/OpenFOAM/lnInclude/Field.C at line 237.
[0] 
FOAM parallel run exiting
[0] 
[2] 
[2] 
[2] --> FOAM FATAL IO ERROR: 
[2] size 898 is not equal to the given value of 470
[2] 
[2] file: /home/bionik/CFD/williamsWing5/processor2/0/pointMotionU::boundaryField::wing from line 55 to line 71.
[2] 
[2]     From function Field<Type>::Field(const word& keyword, const dictionary&, const label)
[2]     in file /home/bionik/OpenFOAM/OpenFOAM-1.6.x/src/OpenFOAM/lnInclude/Field.C at line 237.
[2] 
FOAM parallel run exiting
[2] 
--------------------------------------------------------------------------
MPI_ABORT was invoked on rank 0 in communicator MPI_COMM_WORLD 
with errorcode 1.
I know there has been a similar posts somewhere in the forum but it doesn't work for me.
So it seems to me that something is wrong with how the moving patch is distributed over the processors. If I take a look at the pointMotionU-files in the processor folders they show a big mess in the region where the boundary condition for the moved mesh is stated.

The case can be downloaded from here:
http://exchange.hs-bremen.de/exchange?g=sdknrn

I would really appreciate if someone could help me to get this running...
Best regards
Paul
paul b is offline   Reply With Quote

Old   May 10, 2010, 04:30
Default
  #2
New Member
 
Paul Bomke
Join Date: Mar 2010
Location: Bremen, Germany
Posts: 16
Rep Power: 16
paul b is on a distinguished road
Hey all,
please, is there nobody out there who encountered the same problems?
In this thread: http://www.cfd-online.com/Forums/openfoam-bugs/64751-parallel-moving-mesh-bug-multi-patch-case.html
the advice of parallel preprocessing is given. What does this mean? Do I have to do the preprocessing for each processor?

I would be really glad if someone could comment on this for I'm really stuck here at the moment.

Thanks a lot,
Paul

ps. forgot to mention: I'm using OF 1.6.x
paul b is offline   Reply With Quote

Old   June 13, 2010, 10:59
Default
  #3
Member
 
John Wang
Join Date: Mar 2009
Location: Singapore
Posts: 73
Rep Power: 17
cwang5 is on a distinguished road
Hi Paul,

Have you managed to resolve the problem? I have encountered similar problem using pimpleDyMFoam and could use some guidance. Thanks.

John
cwang5 is offline   Reply With Quote

Old   June 14, 2010, 03:33
Default
  #4
New Member
 
Paul Bomke
Join Date: Mar 2010
Location: Bremen, Germany
Posts: 16
Rep Power: 16
paul b is on a distinguished road
Hey John,
sorry to disappoint you but I didn't solve the problem. I'm using 1.5-dev now and it works quite well...

If you come up with a solution please let me know

paul
paul b is offline   Reply With Quote

Old   April 19, 2011, 09:41
Default
  #5
Senior Member
 
Join Date: Apr 2010
Posts: 151
Rep Power: 16
flowris is on a distinguished road
Hi Paul,

I am suffering from the same problem as you when running a moving mesh in parallel:


Code:
Selecting motion solver: velocityLaplacian
[0] 
[0] 
[0] --> FOAM FATAL IO ERROR: 
[0] size 406 is not equal to the given value of 116
[0] 
[0] file: /home/jmatthei/OpenFOAM/jmatthei-1.6-ext/run/testPatchDeform/pitching10k/processor0/0/pointMotionU::boundaryField::airfoil from line 48 to line 465.
[0] 
[0]     From function Field<Type>::Field(const word& keyword, const dictionary&, const label)
[0]     in file /home/jmatthei/OpenFOAM/OpenFOAM-1.6-ext/src/OpenFOAM/lnInclude/Field.C at line 237.

I use 1.6-ext, motionSolverLibs ("libfvMotionSolver.so") and angularOscillatingDisplacement. Did you resolve your problem already?
flowris is offline   Reply With Quote

Old   April 19, 2011, 17:37
Default
  #6
New Member
 
Paul Bomke
Join Date: Mar 2010
Location: Bremen, Germany
Posts: 16
Rep Power: 16
paul b is on a distinguished road
Forget about the velocityLaplacian and use Hrvoje Jasaks tetDecomposition motion solver as it seems to be more robust and can handle larger deformation.

Hope it works!
Paul
paul b is offline   Reply With Quote

Old   April 19, 2011, 20:12
Default
  #7
Member
 
Mathieu Olivier
Join Date: Mar 2009
Location: Quebec City, Canada
Posts: 77
Rep Power: 17
mathieu is on a distinguished road
Dear Flowris,

There is a point field p0 that is probably written in processor*/pointMotionU (or pointDisplacement) on the angularOscillatingVelocity (or angularOscillatingDisplacement) patch when you decompose the field.

p0 nonuniform List<vector>
80
(
(-0.3535 -0.3535 0)
(-0.3535 -0.3535 0.25)
(-0.293859 -0.404472 0.25)
... etc ...
)
;

Just remove that field in all processor*/pointMotionU (or processor*/pointDisplacement) and see if it works.

Mathieu
mathieu is offline   Reply With Quote

Old   April 20, 2011, 04:19
Default
  #8
Senior Member
 
Join Date: Apr 2010
Posts: 151
Rep Power: 16
flowris is on a distinguished road
Mathieu,
I deleted the p0 nonuniform List, and the cases moves in parallel. The mesh is distorted where the processor boundaries meet the moving wall, see
http://www.cfd-online.com/Forums/ope...1-6-ext-2.html
flowris is offline   Reply With Quote

Old   April 20, 2011, 05:21
Default
  #9
Senior Member
 
Join Date: Apr 2010
Posts: 151
Rep Power: 16
flowris is on a distinguished road
Paul,

Thanks for the tip. I tried to use pseudoSolidFaceDecomposition. angularOscillatingDisplacement cannot be used with it, since it is written for the fvMotionSolver. Do I have to rewrite it, e.g. here:
/src/dynamicMesh/meshMotion/tetDecompositionMotionSolver/pointPatchFields/derived or is there an easier solution?

Is there a tutorial for tetDecompositionMotionSolver or pseudoSolidFaceDecomposition?
flowris 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
running OpenFoam in parallel vishwa OpenFOAM Running, Solving & CFD 22 August 2, 2015 08:53
Running dieselFoam in parallel. Palminchi OpenFOAM 0 February 17, 2010 04:00
Statically Compiling OpenFOAM Issues herzfeldd OpenFOAM Installation 21 January 6, 2009 09:38
Kubuntu uses dash breaks All scripts in tutorials platopus OpenFOAM Bugs 8 April 15, 2008 07:52
running multiple Fluent parallel jobs Michael Bo Hansen FLUENT 8 June 7, 2006 08:52


All times are GMT -4. The time now is 00:18.