From 2123632db274b63de2ed38f868c3946955b98c76 Mon Sep 17 00:00:00 2001 From: mattijs <mattijs> Date: Mon, 2 Jun 2014 15:37:58 +0100 Subject: [PATCH] ENH: redistributePar: allow time override --- .../parallelProcessing/redistributePar/redistributePar.C | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/applications/utilities/parallelProcessing/redistributePar/redistributePar.C b/applications/utilities/parallelProcessing/redistributePar/redistributePar.C index fb09b40bd31..f2a821ae292 100644 --- a/applications/utilities/parallelProcessing/redistributePar/redistributePar.C +++ b/applications/utilities/parallelProcessing/redistributePar/redistributePar.C @@ -434,6 +434,9 @@ int main(int argc, char *argv[]) "specify the merge distance relative to the bounding box size " "(default 1e-6)" ); + // Include explicit constant options, have zero from time range + timeSelector::addOptions(); + # include "setRootCase.H" if (env("FOAM_SIGFPE")) @@ -457,6 +460,9 @@ int main(int argc, char *argv[]) // Make sure we do not use the master-only reading. regIOobject::fileModificationChecking = regIOobject::timeStamp; # include "createTime.H" + // Allow override of time + instantList times = timeSelector::selectIfPresent(runTime, args); + runTime.setTime(times[0], 0); runTime.functionObjects().off(); -- GitLab