2010-05-12 13:27:55 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / F ield | foam-extend: Open Source CFD
|
2015-05-17 13:32:07 +00:00
|
|
|
\\ / O peration | Version: 3.2
|
|
|
|
\\ / A nd | Web: http://www.foam-extend.org
|
|
|
|
\\/ M anipulation | For copyright notice see file Copyright
|
2010-05-12 13:27:55 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
License
|
2013-12-11 16:09:41 +00:00
|
|
|
This file is part of foam-extend.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
foam-extend is free software: you can redistribute it and/or modify it
|
2010-05-12 13:27:55 +00:00
|
|
|
under the terms of the GNU General Public License as published by the
|
2013-12-11 16:09:41 +00:00
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
2010-05-12 13:27:55 +00:00
|
|
|
option) any later version.
|
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
foam-extend 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.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2013-12-11 16:09:41 +00:00
|
|
|
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include "MapLagrangianFields.H"
|
|
|
|
#include "Cloud.H"
|
|
|
|
#include "passiveParticle.H"
|
|
|
|
#include "meshSearch.H"
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
namespace Foam
|
|
|
|
{
|
|
|
|
|
|
|
|
static const scalar perturbFactor = 1E-6;
|
|
|
|
|
|
|
|
|
|
|
|
// Special version of findCell that generates a cell guaranteed to be
|
|
|
|
// compatible with tracking.
|
|
|
|
static label findCell(const meshSearch& meshSearcher, const point& pt)
|
|
|
|
{
|
|
|
|
const polyMesh& mesh = meshSearcher.mesh();
|
|
|
|
|
|
|
|
// Use tracking to find cell containing pt
|
|
|
|
label cellI = meshSearcher.findCell(pt);
|
|
|
|
|
|
|
|
if (cellI >= 0)
|
|
|
|
{
|
|
|
|
return cellI;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// See if particle on face by finding nearest face and shifting
|
|
|
|
// particle.
|
|
|
|
|
|
|
|
label faceI = meshSearcher.findNearestBoundaryFace(pt);
|
|
|
|
|
|
|
|
if (faceI >= 0)
|
|
|
|
{
|
|
|
|
const point& cc = mesh.cellCentres()[mesh.faceOwner()[faceI]];
|
|
|
|
const point perturbPt = (1-perturbFactor)*pt+perturbFactor*cc;
|
|
|
|
|
|
|
|
return meshSearcher.findCell(perturbPt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void mapLagrangian(const meshToMesh& meshToMeshInterp)
|
|
|
|
{
|
|
|
|
// Determine which particles are in meshTarget
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
// target to source cell map
|
|
|
|
const labelList& cellAddressing = meshToMeshInterp.cellAddressing();
|
|
|
|
|
|
|
|
// Invert celladdressing to get source to target(s).
|
|
|
|
// Note: could use sparse addressing but that is too storage inefficient
|
|
|
|
// (Map<labelList>)
|
|
|
|
labelListList sourceToTargets
|
|
|
|
(
|
|
|
|
invertOneToMany(meshToMeshInterp.fromMesh().nCells(), cellAddressing)
|
|
|
|
);
|
|
|
|
|
|
|
|
const fvMesh& meshSource = meshToMeshInterp.fromMesh();
|
|
|
|
const fvMesh& meshTarget = meshToMeshInterp.toMesh();
|
|
|
|
const pointField& targetCc = meshTarget.cellCentres();
|
|
|
|
|
|
|
|
|
|
|
|
fileNameList cloudDirs
|
|
|
|
(
|
|
|
|
readDir
|
|
|
|
(
|
2010-08-25 21:42:57 +00:00
|
|
|
meshSource.time().timePath()/cloud::prefix,
|
2010-05-12 13:27:55 +00:00
|
|
|
fileName::DIRECTORY
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
forAll(cloudDirs, cloudI)
|
|
|
|
{
|
|
|
|
// Search for list of lagrangian objects for this time
|
|
|
|
IOobjectList objects
|
|
|
|
(
|
|
|
|
meshSource,
|
|
|
|
meshSource.time().timeName(),
|
2010-08-25 21:42:57 +00:00
|
|
|
cloud::prefix/cloudDirs[cloudI]
|
2010-05-12 13:27:55 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
IOobject* positionsPtr = objects.lookup("positions");
|
|
|
|
|
|
|
|
if (positionsPtr)
|
|
|
|
{
|
|
|
|
Info<< nl << " processing cloud " << cloudDirs[cloudI] << endl;
|
|
|
|
|
|
|
|
// Read positions & cell
|
|
|
|
Cloud<passiveParticle> sourceParcels
|
|
|
|
(
|
|
|
|
meshSource,
|
|
|
|
cloudDirs[cloudI],
|
|
|
|
false
|
|
|
|
);
|
|
|
|
Info<< " read " << sourceParcels.size()
|
|
|
|
<< " parcels from source mesh." << endl;
|
|
|
|
|
|
|
|
// Construct empty target cloud
|
|
|
|
Cloud<passiveParticle> targetParcels
|
|
|
|
(
|
|
|
|
meshTarget,
|
|
|
|
cloudDirs[cloudI],
|
|
|
|
IDLList<passiveParticle>()
|
|
|
|
);
|
|
|
|
|
|
|
|
label sourceParticleI = 0;
|
|
|
|
|
|
|
|
// Indices of source particles that get added to targetParcels
|
|
|
|
DynamicList<label> addParticles(sourceParcels.size());
|
|
|
|
|
|
|
|
// Unmapped particles
|
|
|
|
labelHashSet unmappedSource(sourceParcels.size());
|
|
|
|
|
|
|
|
|
|
|
|
// Initial: track from fine-mesh cell centre to particle position
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// This requires there to be no boundary in the way.
|
|
|
|
|
|
|
|
|
|
|
|
forAllConstIter(Cloud<passiveParticle>, sourceParcels, iter)
|
|
|
|
{
|
|
|
|
bool foundCell = false;
|
|
|
|
|
|
|
|
// Assume that cell from read parcel is the correct one...
|
|
|
|
if (iter().cell() >= 0)
|
|
|
|
{
|
|
|
|
const labelList& targetCells =
|
|
|
|
sourceToTargets[iter().cell()];
|
|
|
|
|
|
|
|
// Particle probably in one of the targetcells. Try
|
|
|
|
// all by tracking from their cell centre to the parcel
|
|
|
|
// position.
|
|
|
|
|
|
|
|
forAll(targetCells, i)
|
|
|
|
{
|
|
|
|
// Track from its cellcentre to position to make sure.
|
|
|
|
autoPtr<passiveParticle> newPtr
|
|
|
|
(
|
|
|
|
new passiveParticle
|
|
|
|
(
|
|
|
|
targetParcels,
|
|
|
|
targetCc[targetCells[i]],
|
|
|
|
targetCells[i]
|
|
|
|
)
|
|
|
|
);
|
|
|
|
passiveParticle& newP = newPtr();
|
|
|
|
|
|
|
|
scalar fraction = 0;
|
|
|
|
label faceI = newP.track(iter().position(), fraction);
|
|
|
|
|
|
|
|
if (faceI < 0 && newP.cell() >= 0)
|
|
|
|
{
|
|
|
|
// Hit position.
|
|
|
|
foundCell = true;
|
|
|
|
addParticles.append(sourceParticleI);
|
|
|
|
targetParcels.addParticle(newPtr.ptr());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!foundCell)
|
|
|
|
{
|
|
|
|
// Store for closer analysis
|
|
|
|
unmappedSource.insert(sourceParticleI);
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceParticleI++;
|
|
|
|
}
|
|
|
|
|
|
|
|
Info<< " after meshToMesh addressing found "
|
|
|
|
<< targetParcels.size()
|
|
|
|
<< " parcels in target mesh." << endl;
|
|
|
|
|
|
|
|
|
|
|
|
// Do closer inspection for unmapped particles
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
if (unmappedSource.size())
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
|
|
|
meshSearch targetSearcher(meshTarget, false);
|
|
|
|
|
|
|
|
sourceParticleI = 0;
|
|
|
|
|
|
|
|
forAllIter(Cloud<passiveParticle>, sourceParcels, iter)
|
|
|
|
{
|
|
|
|
if (unmappedSource.found(sourceParticleI))
|
|
|
|
{
|
|
|
|
label targetCell =
|
|
|
|
findCell(targetSearcher, iter().position());
|
|
|
|
|
|
|
|
if (targetCell >= 0)
|
|
|
|
{
|
|
|
|
unmappedSource.erase(sourceParticleI);
|
|
|
|
addParticles.append(sourceParticleI);
|
2013-07-18 01:43:15 +00:00
|
|
|
iter().cell()=targetCell;
|
2010-05-12 13:27:55 +00:00
|
|
|
targetParcels.addParticle
|
|
|
|
(
|
|
|
|
sourceParcels.remove(&iter())
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sourceParticleI++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
addParticles.shrink();
|
|
|
|
|
|
|
|
Info<< " after additional mesh searching found "
|
|
|
|
<< targetParcels.size() << " parcels in target mesh." << endl;
|
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
if (addParticles.size())
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
|
|
|
IOPosition<passiveParticle>(targetParcels).write();
|
|
|
|
|
|
|
|
// addParticles now contains the indices of the sourceMesh
|
|
|
|
// particles that were appended to the target mesh.
|
|
|
|
|
|
|
|
// Map lagrangian fields
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
MapLagrangianFields<label>
|
|
|
|
(cloudDirs[cloudI], objects, meshToMeshInterp, addParticles);
|
|
|
|
MapLagrangianFields<scalar>
|
|
|
|
(cloudDirs[cloudI], objects, meshToMeshInterp, addParticles);
|
|
|
|
MapLagrangianFields<vector>
|
|
|
|
(cloudDirs[cloudI], objects, meshToMeshInterp, addParticles);
|
|
|
|
MapLagrangianFields<sphericalTensor>
|
|
|
|
(cloudDirs[cloudI], objects, meshToMeshInterp, addParticles);
|
|
|
|
MapLagrangianFields<symmTensor>
|
|
|
|
(cloudDirs[cloudI], objects, meshToMeshInterp, addParticles);
|
|
|
|
MapLagrangianFields<tensor>
|
|
|
|
(cloudDirs[cloudI], objects, meshToMeshInterp, addParticles);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
} // End namespace Foam
|
|
|
|
|
|
|
|
// ************************************************************************* //
|