mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- relocated ListAppendEqOp and ListUniqueEqOp to ListOps::appendEqOp
and ListOps::UniqueEqOp, respectively for better code isolation and
documentation of purpose.
- relocated setValues to ListOps::setValue() with many more
alternative selectors possible
- relocated createWithValues to ListOps::createWithValue
for better code isolation. The default initialization value is itself
now a default parameter, which allow for less typing.
Negative indices in the locations to set are now silently ignored,
which makes it possible to use an oldToNew mapping that includes
negative indices.
- additional ListOps::createWithValue taking a single position to set,
available both in copy assign and move assign versions.
Since a negative index is ignored, it is possible to combine with
the output of List::find() etc.
STYLE: changes for PackedList
- code simplication in the PackedList iterators, including dropping
the unused operator() on iterators, which is not available in plain
list versions either.
- improved sizing for PackedBoolList creation from a labelUList.
ENH: additional List constructors, for handling single element list.
- can assist in reducing constructor ambiguity, but can also helps
memory optimization when creating a single element list.
For example,
labelListList labels(one(), identity(mesh.nFaces()));
309 lines
8.8 KiB
C
309 lines
8.8 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2015 OpenFOAM Foundation
|
|
\\/ M anipulation | Copyright (C) 2015-2017 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "ListOps.H"
|
|
#include "parLagrangianRedistributor.H"
|
|
#include "passivePositionParticleCloud.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::parLagrangianRedistributor::parLagrangianRedistributor
|
|
(
|
|
const fvMesh& srcMesh,
|
|
const fvMesh& tgtMesh,
|
|
const label nSrcCells,
|
|
const mapDistributePolyMesh& distMap
|
|
)
|
|
:
|
|
srcMesh_(srcMesh),
|
|
tgtMesh_(tgtMesh),
|
|
distMap_(distMap)
|
|
{
|
|
const mapDistribute& cellMap = distMap_.cellMap();
|
|
|
|
// Get destination processors and cells
|
|
destinationProcID_ = labelList(tgtMesh_.nCells(), Pstream::myProcNo());
|
|
cellMap.reverseDistribute(nSrcCells, destinationProcID_);
|
|
|
|
destinationCell_ = identity(tgtMesh_.nCells());
|
|
cellMap.reverseDistribute(nSrcCells, destinationCell_);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
// Find all clouds (on all processors) and for each cloud all the objects.
|
|
// Result will be synchronised on all processors
|
|
void Foam::parLagrangianRedistributor::findClouds
|
|
(
|
|
const fvMesh& mesh,
|
|
wordList& cloudNames,
|
|
List<wordList>& objectNames
|
|
)
|
|
{
|
|
fileNameList localCloudDirs
|
|
(
|
|
readDir
|
|
(
|
|
mesh.time().timePath()
|
|
/ mesh.dbDir()
|
|
/ cloud::prefix,
|
|
fileName::DIRECTORY
|
|
)
|
|
);
|
|
|
|
cloudNames.setSize(localCloudDirs.size());
|
|
forAll(localCloudDirs, i)
|
|
{
|
|
cloudNames[i] = localCloudDirs[i];
|
|
}
|
|
|
|
// Synchronise cloud names
|
|
Pstream::combineGather(cloudNames, ListOps::uniqueEqOp<word>());
|
|
Pstream::combineScatter(cloudNames);
|
|
|
|
objectNames.setSize(cloudNames.size());
|
|
|
|
for (const fileName& localCloudName : localCloudDirs)
|
|
{
|
|
// Do local scan for valid cloud objects
|
|
IOobjectList sprayObjs
|
|
(
|
|
mesh,
|
|
mesh.time().timeName(),
|
|
cloud::prefix/localCloudName
|
|
);
|
|
|
|
if (sprayObjs.found("coordinates") || sprayObjs.found("positions"))
|
|
{
|
|
// Has coordinates/positions - so must be a valid cloud
|
|
|
|
const label cloudI = cloudNames.find(localCloudName);
|
|
|
|
objectNames[cloudI].setSize(sprayObjs.size());
|
|
label objectI = 0;
|
|
forAllConstIters(sprayObjs, iter)
|
|
{
|
|
const word& name = iter.key();
|
|
if (name != "coordinates" && name != "positions")
|
|
{
|
|
objectNames[cloudI][objectI++] = name;
|
|
}
|
|
}
|
|
objectNames[cloudI].setSize(objectI);
|
|
}
|
|
}
|
|
|
|
// Synchronise objectNames
|
|
forAll(objectNames, i)
|
|
{
|
|
Pstream::combineGather(objectNames[i], ListOps::uniqueEqOp<word>());
|
|
Pstream::combineScatter(objectNames[i]);
|
|
}
|
|
}
|
|
|
|
|
|
Foam::autoPtr<Foam::mapDistributeBase>
|
|
Foam::parLagrangianRedistributor::redistributeLagrangianPositions
|
|
(
|
|
passivePositionParticleCloud& lpi
|
|
) const
|
|
{
|
|
//Debug(lpi.size());
|
|
|
|
labelListList subMap;
|
|
|
|
|
|
// Allocate transfer buffers
|
|
PstreamBuffers pBufs(Pstream::commsTypes::nonBlocking);
|
|
|
|
{
|
|
// List of lists of particles to be transferred for all of the
|
|
// neighbour processors
|
|
List<IDLList<passivePositionParticle>> particleTransferLists
|
|
(
|
|
Pstream::nProcs()
|
|
);
|
|
|
|
// Per particle the destination processor
|
|
labelList destProc(lpi.size());
|
|
|
|
label particleI = 0;
|
|
forAllIter(passivePositionParticleCloud, lpi, iter)
|
|
{
|
|
passivePositionParticle& ppi = iter();
|
|
|
|
const label destProcI = destinationProcID_[ppi.cell()];
|
|
const label destCellI = destinationCell_[ppi.cell()];
|
|
|
|
ppi.cell() = destCellI;
|
|
destProc[particleI++] = destProcI;
|
|
particleTransferLists[destProcI].append(lpi.remove(&ppi));
|
|
}
|
|
|
|
|
|
// Per processor the indices of the particles to send
|
|
subMap = invertOneToMany(Pstream::nProcs(), destProc);
|
|
|
|
|
|
// Stream into send buffers
|
|
forAll(particleTransferLists, procI)
|
|
{
|
|
//Pout<< "To proc " << procI << " sending "
|
|
// << particleTransferLists[procI] << endl;
|
|
if (particleTransferLists[procI].size())
|
|
{
|
|
UOPstream particleStream(procI, pBufs);
|
|
particleStream << particleTransferLists[procI];
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Start sending. Sets number of bytes transferred
|
|
labelList allNTrans(Pstream::nProcs());
|
|
pBufs.finishedSends(allNTrans);
|
|
|
|
|
|
{
|
|
// Temporarily rename original cloud so we can construct a new one
|
|
// (to distribute the positions) without getting a duplicate
|
|
// registration warning
|
|
const word cloudName = lpi.name();
|
|
lpi.rename(cloudName + "_old");
|
|
|
|
// New cloud on tgtMesh
|
|
passivePositionParticleCloud lagrangianPositions
|
|
(
|
|
tgtMesh_,
|
|
cloudName,
|
|
IDLList<passivePositionParticle>()
|
|
);
|
|
|
|
|
|
// Retrieve from receive buffers
|
|
forAll(allNTrans, procI)
|
|
{
|
|
const label nRec = allNTrans[procI];
|
|
|
|
//Pout<< "From processor " << procI << " receiving bytes " << nRec
|
|
// << endl;
|
|
|
|
if (nRec)
|
|
{
|
|
UIPstream particleStream(procI, pBufs);
|
|
|
|
// Receive particles and locate them
|
|
IDLList<passivePositionParticle> newParticles
|
|
(
|
|
particleStream,
|
|
passivePositionParticle::iNew(tgtMesh_)
|
|
);
|
|
|
|
forAllIter
|
|
(
|
|
IDLList<passivePositionParticle>,
|
|
newParticles,
|
|
newpIter
|
|
)
|
|
{
|
|
passivePositionParticle& newp = newpIter();
|
|
lagrangianPositions.addParticle(newParticles.remove(&newp));
|
|
}
|
|
}
|
|
}
|
|
|
|
// Write coordinates file
|
|
IOPosition<passivePositionParticleCloud>(lagrangianPositions).write();
|
|
|
|
// Optionally write positions file in v1706 format and earlier
|
|
if (particle::writeLagrangianPositions)
|
|
{
|
|
IOPosition<passivePositionParticleCloud>
|
|
(
|
|
lagrangianPositions,
|
|
cloud::geometryType::POSITIONS
|
|
).write();
|
|
}
|
|
|
|
// Restore cloud name
|
|
lpi.rename(cloudName);
|
|
}
|
|
|
|
// Work the send indices (subMap) into a mapDistributeBase
|
|
labelListList sizes(Pstream::nProcs());
|
|
labelList& nsTransPs = sizes[Pstream::myProcNo()];
|
|
nsTransPs.setSize(Pstream::nProcs());
|
|
forAll(subMap, sendProcI)
|
|
{
|
|
nsTransPs[sendProcI] = subMap[sendProcI].size();
|
|
}
|
|
// Send sizes across. Note: blocks.
|
|
combineReduce(sizes, Pstream::listEq());
|
|
|
|
labelListList constructMap(Pstream::nProcs());
|
|
label constructSize = 0;
|
|
forAll(constructMap, procI)
|
|
{
|
|
const label nRecv = sizes[procI][UPstream::myProcNo()];
|
|
|
|
labelList& map = constructMap[procI];
|
|
|
|
map.setSize(nRecv);
|
|
forAll(map, i)
|
|
{
|
|
map[i] = constructSize++;
|
|
}
|
|
}
|
|
|
|
|
|
// Construct map
|
|
return autoPtr<mapDistributeBase>
|
|
(
|
|
new mapDistributeBase
|
|
(
|
|
constructSize,
|
|
subMap.xfer(),
|
|
constructMap.xfer()
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
Foam::autoPtr<Foam::mapDistributeBase>
|
|
Foam::parLagrangianRedistributor::redistributeLagrangianPositions
|
|
(
|
|
const word& cloudName
|
|
) const
|
|
{
|
|
// Load cloud and send particle
|
|
passivePositionParticleCloud lpi(srcMesh_, cloudName, false);
|
|
|
|
return redistributeLagrangianPositions(lpi);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|