Skip to content
Snippets Groups Projects
Commit aaa041b3 authored by sergio's avatar sergio
Browse files

Fixing reconstruction of lagragian fields for hopper

parent 27a705bb
Branches
No related merge requests found
/*--------------------------------*- 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; ...@@ -23,7 +22,7 @@ startTime 0;
stopAt endTime; stopAt endTime;
endTime 6000; endTime 3000;
deltaT 1; deltaT 1;
......
...@@ -9,6 +9,14 @@ cd ${0%/*} || exit 1 # Run from this directory ...@@ -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)'
) )
( (
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment