From e447ca82db3f0f99b527c8aedc9eabd36ff826fc Mon Sep 17 00:00:00 2001 From: Thomas Lichtenegger Date: Mon, 29 Jan 2018 15:08:16 +0100 Subject: [PATCH] Allow to specify DEM dump interval to be read in from couplingProperties. --- applications/utilities/cfdemPostproc/cfdemPostproc.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/utilities/cfdemPostproc/cfdemPostproc.C b/applications/utilities/cfdemPostproc/cfdemPostproc.C index 90faf24e..58c3d86c 100644 --- a/applications/utilities/cfdemPostproc/cfdemPostproc.C +++ b/applications/utilities/cfdemPostproc/cfdemPostproc.C @@ -62,7 +62,7 @@ int main(int argc, char *argv[]) Info<< "\nStarting time loop\n" << endl; int count=0; - int DEM_dump_Interval=1000; + int DEM_dump_Interval(particleCloud.couplingProperties().lookupOrDefault("dumpInterval",1000)); particleCloud.reAllocArrays(); double **positions_;