/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
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 .
\*---------------------------------------------------------------------------*/
#include "mapClouds.H"
#include "fvMeshToFvMesh.H"
#include "IOobjectList.H"
#include "OSspecific.H"
#include "passiveParticleCloud.H"
#include "patchToPatchTools.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
template
List gatherAndFlatten(const List& l)
{
List> procLs(Pstream::nProcs());
procLs[Pstream::myProcNo()] = l;
Pstream::gatherList(procLs);
Pstream::scatterList(procLs);
return
HashSet
(
ListListOps::combine>
(
procLs,
accessOp>()
)
).sortedToc();
}
template
void mapCloudTypeFields
(
const fileName& cloudDir,
const IOobjectList& objects,
const polyMesh& srcMesh,
const polyMesh& tgtMesh,
const distributionMap& map
)
{
const wordList fieldNames =
gatherAndFlatten(objects.lookupClass(ReadIOField::typeName).names());
forAll(fieldNames, fieldi)
{
const word& fieldName = fieldNames[fieldi];
Info<< " mapping lagrangian field " << fieldName << endl;
const IOobject* fieldIOPtr = objects.lookup(fieldName);
// Read the field
ReadIOField field
(
fieldIOPtr != nullptr
? *fieldIOPtr
: IOobject
(
fieldName,
srcMesh.time().name(),
cloud::prefix/cloudDir,
srcMesh,
IOobject::NO_READ,
IOobject::NO_WRITE,
false
)
);
// Distribute the field
map.distribute(field);
// Write it out into the target case
if (field.size())
{
WriteIOField
(
IOobject
(
fieldName,
tgtMesh.time().name(),
cloud::prefix/cloudDir,
tgtMesh,
IOobject::NO_READ,
IOobject::NO_WRITE,
false
),
move(field)
).write();
}
}
}
template
void mapCloudTypeFieldsAndFieldFields
(
const fileName& cloudDir,
const IOobjectList& objects,
const polyMesh& srcMesh,
const polyMesh& tgtMesh,
const distributionMap& map
)
{
mapCloudTypeFields
<
IOField,
IOField
>
(
cloudDir,
objects,
srcMesh,
tgtMesh,
map
);
mapCloudTypeFields
<
IOField>,
CompactIOField>
>
(
cloudDir,
objects,
srcMesh,
tgtMesh,
map
);
mapCloudTypeFields
<
CompactIOField>,
CompactIOField>
>
(
cloudDir,
objects,
srcMesh,
tgtMesh,
map
);
}
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
void Foam::mapClouds(const fvMeshToFvMesh& interp)
{
const polyMesh& srcMesh = interp.srcMesh();
const polyMesh& tgtMesh = interp.tgtMesh();
// Determine the clouds present in this mesh
const fileNameList cloudDirs =
gatherAndFlatten
(
readDir
(
srcMesh.time().timePath()/cloud::prefix,
fileType::directory
)
);
forAll(cloudDirs, cloudi)
{
Info<< nl << "Mapping cloud " << cloudDirs[cloudi] << endl;
// Read the source cloud positions
passiveParticleCloud srcCloud(srcMesh, cloudDirs[cloudi], false);
Info<< " read "
<< returnReduce(srcCloud.size(), sumOp