Fixing reconstruction of lagragian fields for hopper

This commit is contained in:
sergio
2018-12-11 13:53:54 -08:00
parent 27a705bb3f
commit aaa041b3c7
2 changed files with 11 additions and 4 deletions

View File

@ -1,19 +1,18 @@
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 | | \\ / O peration | Version: plus.master.develop |
| \\ / A nd | Web: www.OpenFOAM.com | | \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile FoamFile
{ {
version 2.0; version 2;
format ascii; format ascii;
class dictionary; class dictionary;
location "system"; location "system";
object controlDict; object controlDict;
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
application reactingFoam; application reactingFoam;
@ -23,7 +22,7 @@ startTime 0;
stopAt endTime; stopAt endTime;
endTime 6000; endTime 3000;
deltaT 1; deltaT 1;

View File

@ -9,6 +9,14 @@ cd ${0%/*} || exit 1 # Run from this directory
runApplication decomposePar runApplication decomposePar
runParallel $(getApplication) runParallel $(getApplication)
runApplication reconstructPar -latestTime runApplication reconstructPar -latestTime
rm log.reconstructPar
runApplication reconstructPar -lagrangianFields \
'(collisionRecordsPairAccessed collisionRecordsPairData \
collisionRecordsPairOrigIdOfOther \
collisionRecordsPairOrigProcOfOther \
collisionRecordsWallAccessed \
collisionRecordsWallData \
collisionRecordsWallPRel)'
) )
( (