CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Post-Processing

reconstructPar does not work in interDyMFoam

Register Blogs Community New Posts Updated Threads Search

Like Tree5Likes
  • 5 Post By banji

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 9, 2013, 12:00
Default reconstructPar does not work in interDyMFoam
  #1
Member
 
Anastasios
Join Date: Mar 2009
Posts: 34
Rep Power: 17
ageorg is on a distinguished road
Dear All,

I am trying to execute "reconstructPar" utillity in a 3d case that I had simulated in ItterDyMFoam decomposed in 16 parts (cores) and I get the following message:



z620@Z620:~/OpenFOAM/z620-2.2.1/run/MySimulations/3DBubbleRiseAndDetachment$ reconstructPar
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Build : 2.2.1-57f3c3617a2d
Exec : reconstructPar
Date : Aug 09 2013
Time : 17:56:01
Host : "Z620"
PID : 3480
Case : /home/z620/OpenFOAM/z620-2.2.1/run/MySimulations/3DBubbleRiseAndDetachment
nProcs : 1
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster
allowSystemOperations : Disallowing user-supplied system call operations

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time



Reconstructing fields for mesh region0

Time = 0.001



--> FOAM FATAL IO ERROR:
cannot find file

file: /home/z620/OpenFOAM/z620-2.2.1/run/MySimulations/3DBubbleRiseAndDetachment/processor0/0.001/polyMesh/pointProcAddressing at line 0.

From function regIOobject::readStream()
in file db/regIOobject/regIOobjectRead.C at line 73.

FOAM exiting

z620@Z620:~/OpenFOAM/z620-2.2.1/run/MySimulations/3DBubbleRiseAndDetachment$


Can somebody please advise me what to do?

Thank you very much in advance

ageorg
ageorg is offline   Reply With Quote

Old   August 28, 2013, 10:47
Default
  #2
Senior Member
 
Andrea Ferrari
Join Date: Dec 2010
Posts: 319
Rep Power: 16
Andrea_85 is on a distinguished road
Hi,

Did you solve the problem?

andrea
Andrea_85 is offline   Reply With Quote

Old   November 7, 2013, 07:47
Default
  #3
New Member
 
Kostis
Join Date: Jan 2013
Posts: 6
Rep Power: 13
cosbergel is on a distinguished road
try recontstructParMesh
cosbergel is offline   Reply With Quote

Old   November 8, 2013, 01:29
Default
  #4
Member
 
Join Date: Aug 2011
Posts: 89
Rep Power: 14
idefix is on a distinguished road
Hello,

exactly: you must use reconstructParMesh before you can use reconstructPar

look here:
http://www.cfd-online.com/Forums/ope...tpar-15-a.html

Sega posted a script for it:
Quote:
Originally Posted by sega View Post
Code:
#!/bin/bash
timeList=$(ls processor0/ | awk '$1!="constant"');

for line in $timeList
do
    echo "Recontructing mesh for t = "$line" s";
    reconstructParMesh -time $line > logTmp;

    echo "Reconstructing fields for t = "$line" s";
    reconstructPar -time $line > logTmp;

    echo "";
done

rm logTmp;

Last edited by wyldckat; November 9, 2013 at 11:48. Reason: Added [CODE][/CODE] and fixed the quote
idefix is offline   Reply With Quote

Old   April 15, 2016, 13:25
Default
  #5
Member
 
Olabanji
Join Date: Jan 2013
Location: U.S.A
Posts: 31
Rep Power: 13
banji is on a distinguished road
Hi,

I am sure you must have found some solution some way, since this was posted a long time ago. I decided to just post mine just for anybody who runs into the same problem like me.

I use OpenFOAM-2.3.x. When you run a problem using AMR in parallel. To reconstruct, first open the system/controlDict file and change the entry for write format from "ascii" to "binary". Then do the following
1) run 'reconstructParMesh'
2) run 'reconstructPar'

This works with no problem in 2.3 version, not sure of the rest.

Cheers.

Quote:
Originally Posted by ageorg View Post
Dear All,

I am trying to execute "reconstructPar" utillity in a 3d case that I had simulated in ItterDyMFoam decomposed in 16 parts (cores) and I get the following message:



z620@Z620:~/OpenFOAM/z620-2.2.1/run/MySimulations/3DBubbleRiseAndDetachment$ reconstructPar
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Build : 2.2.1-57f3c3617a2d
Exec : reconstructPar
Date : Aug 09 2013
Time : 17:56:01
Host : "Z620"
PID : 3480
Case : /home/z620/OpenFOAM/z620-2.2.1/run/MySimulations/3DBubbleRiseAndDetachment
nProcs : 1
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster
allowSystemOperations : Disallowing user-supplied system call operations

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time



Reconstructing fields for mesh region0

Time = 0.001



--> FOAM FATAL IO ERROR:
cannot find file

file: /home/z620/OpenFOAM/z620-2.2.1/run/MySimulations/3DBubbleRiseAndDetachment/processor0/0.001/polyMesh/pointProcAddressing at line 0.

From function regIOobject::readStream()
in file db/regIOobject/regIOobjectRead.C at line 73.

FOAM exiting

z620@Z620:~/OpenFOAM/z620-2.2.1/run/MySimulations/3DBubbleRiseAndDetachment$


Can somebody please advise me what to do?

Thank you very much in advance

ageorg

Last edited by banji; April 16, 2016 at 01:48. Reason: Need to add more information for clarity
banji 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
Problems with reconstructPar after run interDyMFoam FG_HSRM OpenFOAM 3 December 13, 2011 11:16
InterDyMFoam with GGI sebastianweiper OpenFOAM Running, Solving & CFD 2 September 18, 2009 03:43
Why do the Plant library cases don't work? Alumna Phoenics 6 June 22, 2004 12:08
why my In-Form doesn't work? green Phoenics 2 May 27, 2004 21:03


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