mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge commit 'origin/master' into splitCyclic
Conflicts: applications/utilities/mesh/manipulation/createBaffles/createBaffles.C applications/utilities/postProcessing/patch/patchIntegrate/patchIntegrate.C src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclic/cyclicPointPatch.C src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.C src/dynamicMesh/motionSmoother/motionSmoother.C src/dynamicMesh/motionSmoother/motionSmoother.H src/dynamicMesh/motionSmoother/motionSmootherTemplates.C
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -32,7 +32,7 @@ Usage
|
||||
- foamListTimes [OPTION]
|
||||
|
||||
@param -processor \n
|
||||
List times from processor0 directory
|
||||
List times from processor0/ directory
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -46,11 +46,19 @@ using namespace Foam;
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
argList::addNote
|
||||
(
|
||||
"list times using timeSelector"
|
||||
);
|
||||
|
||||
timeSelector::addOptions(); // -constant enabled
|
||||
argList::noBanner();
|
||||
argList::noParallel();
|
||||
argList::addBoolOption("processor");
|
||||
|
||||
argList::addBoolOption
|
||||
(
|
||||
"processor",
|
||||
"list times from processor0/ directory"
|
||||
);
|
||||
# include "setRootCase.H"
|
||||
|
||||
label nProcs = 0;
|
||||
|
||||
@ -236,7 +236,7 @@ Foam::channelIndex::channelIndex
|
||||
|
||||
forAll(patchNames, i)
|
||||
{
|
||||
label patchI = patches.findPatchID(patchNames[i]);
|
||||
const label patchI = patches.findPatchID(patchNames[i]);
|
||||
|
||||
if (patchI == -1)
|
||||
{
|
||||
@ -254,7 +254,7 @@ Foam::channelIndex::channelIndex
|
||||
|
||||
forAll(patchNames, i)
|
||||
{
|
||||
const polyPatch& pp = patches[patches.findPatchID(patchNames[i])];
|
||||
const polyPatch& pp = patches[patchNames[i]];
|
||||
|
||||
forAll(pp, j)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user