Skip to content
Snippets Groups Projects
Commit dec0a99a authored by andy's avatar andy
Browse files

ENH: Updated mesh-to-mesh nearest mapping

parent e038d8a7
No related merge requests found
......@@ -48,8 +48,6 @@ void Foam::meshToMeshNew::calcMapNearest
label srcCellI = srcSeedI;
label tgtCellI = tgtSeedI;
boolList tgtMapFlag(tgt.nCells(), true);
do
{
// find nearest tgt cell
......@@ -61,7 +59,6 @@ void Foam::meshToMeshNew::calcMapNearest
// mark source cell srcCellI and tgtCellI as matched
mapFlag[srcCellI] = false;
tgtMapFlag[tgtCellI] = false;
// accumulate intersection volume
V_ += srcVc[srcCellI];
......@@ -80,11 +77,44 @@ void Foam::meshToMeshNew::calcMapNearest
}
while (srcCellI >= 0);
// for the case of multiple source cells per target cell, select the
// nearest source cell only and discard the others
const vectorField& srcCc = src.cellCentres();
const vectorField& tgtCc = tgt.cellCentres();
forAll(tgtToSrc, targetCellI)
{
if (tgtToSrc[targetCellI].size() > 1)
{
const vector& tgtC = tgtCc[tgtCellI];
DynamicList<label>& srcCells = tgtToSrc[targetCellI];
label srcCellI = srcCells[0];
scalar d = magSqr(tgtC - srcCc[srcCellI]);
for (label i = 1; i < srcCells.size(); i++)
{
label srcI = srcCells[i];
scalar dNew = magSqr(tgtC - srcCc[srcI]);
if (dNew < d)
{
d = dNew;
srcCellI = srcI;
}
}
srcCells.clear();
srcCells.append(srcCellI);
}
}
// If there are more target cells than source cells, some target cells
// will not yet be mapped
forAll(tgtMapFlag, tgtCellI)
// might not yet be mapped
forAll(tgtToSrc, tgtCellI)
{
if (tgtMapFlag[tgtCellI])
if (tgtToSrc[tgtCellI].empty())
{
label srcCellI = findMappedSrcCell(tgt, tgtCellI, tgtToSrc);
......@@ -95,8 +125,6 @@ void Foam::meshToMeshNew::calcMapNearest
}
// transfer addressing into persistent storage
// note: always 1 target cell per source cell (srcToTgt)
// can be multiple source cells per target cell (tgtToSrc)
forAll(srcToTgtCellAddr_, i)
{
scalar v = srcVc[i];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment