mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: snappyHexMesh. Added leak-path detection.
Detects connections (during refinement) between locationsInsideMesh and locationsOutsideMesh and writes a sampledSet for postprocessing.
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2017 OpenCFD Ltd.
|
||||
\\ / A nd | Copyright (C) 2017-2018 OpenCFD Ltd.
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -30,6 +30,13 @@ License
|
||||
#include "addToRunTimeSelectionTable.H"
|
||||
#include "FaceCellWave.H"
|
||||
#include "syncTools.H"
|
||||
#include "fvMesh.H"
|
||||
#include "volFields.H"
|
||||
#include "OBJstream.H"
|
||||
#include "surfaceWriter.H"
|
||||
#include "meshedSurfRef.H"
|
||||
#include "PatchTools.H"
|
||||
#include "vtkSurfaceWriter.H"
|
||||
|
||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||
|
||||
@ -47,6 +54,8 @@ Foam::label Foam::shortestPathSet::findMinFace
|
||||
const polyMesh& mesh,
|
||||
const label cellI,
|
||||
const List<topoDistanceData>& allFaceInfo,
|
||||
const PackedBoolList& isLeakPoint,
|
||||
const bool distanceMode,
|
||||
const point& origin
|
||||
)
|
||||
{
|
||||
@ -56,6 +65,7 @@ Foam::label Foam::shortestPathSet::findMinFace
|
||||
|
||||
label minDist = labelMax;
|
||||
label minFaceI = -1;
|
||||
label nMin = 0;
|
||||
forAll(cFaces2, i)
|
||||
{
|
||||
label faceI = cFaces2[i];
|
||||
@ -64,21 +74,63 @@ Foam::label Foam::shortestPathSet::findMinFace
|
||||
{
|
||||
minDist = info.distance();
|
||||
minFaceI = faceI;
|
||||
nMin = 1;
|
||||
}
|
||||
else if (info.distance() == minDist)
|
||||
{
|
||||
nMin++;
|
||||
}
|
||||
}
|
||||
|
||||
// 2. Check all faces with minDist for minimum distance to origin
|
||||
scalar minDist2 = ROOTVGREAT;
|
||||
forAll(cFaces2, i)
|
||||
if (nMin > 1)
|
||||
{
|
||||
label faceI = cFaces2[i];
|
||||
if (allFaceInfo[faceI].distance() == minDist)
|
||||
// 2. Check all faces with minDist for minimum (or maximum)
|
||||
// distance to origin
|
||||
if (distanceMode)
|
||||
{
|
||||
scalar d2 = magSqr(mesh.faceCentres()[faceI]-origin);
|
||||
if (d2 < minDist2)
|
||||
scalar minDist2 = ROOTVGREAT;
|
||||
forAll(cFaces2, i)
|
||||
{
|
||||
minDist2 = d2;
|
||||
minFaceI = faceI;
|
||||
label faceI = cFaces2[i];
|
||||
if (allFaceInfo[faceI].distance() == minDist)
|
||||
{
|
||||
scalar d2 = magSqr(mesh.faceCentres()[faceI]-origin);
|
||||
if (d2 < minDist2)
|
||||
{
|
||||
minDist2 = d2;
|
||||
minFaceI = faceI;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Avoid leak points
|
||||
label minLeakPoints = labelMax;
|
||||
forAll(cFaces2, i)
|
||||
{
|
||||
label faceI = cFaces2[i];
|
||||
if (allFaceInfo[faceI].distance() == minDist)
|
||||
{
|
||||
// Count number of leak points
|
||||
label nLeak = 0;
|
||||
{
|
||||
const face& f = mesh.faces()[faceI];
|
||||
forAll(f, fp)
|
||||
{
|
||||
if (isLeakPoint[f[fp]])
|
||||
{
|
||||
nLeak++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (nLeak < minLeakPoints)
|
||||
{
|
||||
minLeakPoints = nLeak;
|
||||
minFaceI = faceI;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -87,85 +139,287 @@ Foam::label Foam::shortestPathSet::findMinFace
|
||||
}
|
||||
|
||||
|
||||
void Foam::shortestPathSet::genSamples(const polyMesh& mesh)
|
||||
void Foam::shortestPathSet::calculateDistance
|
||||
(
|
||||
const label iter,
|
||||
const polyMesh& mesh,
|
||||
const label cellI,
|
||||
|
||||
List<topoDistanceData>& allFaceInfo,
|
||||
List<topoDistanceData>& allCellInfo
|
||||
) const
|
||||
{
|
||||
// Storage for sample points
|
||||
DynamicList<point> samplingPts;
|
||||
DynamicList<label> samplingCells;
|
||||
DynamicList<label> samplingFaces;
|
||||
DynamicList<label> samplingSegments;
|
||||
DynamicList<scalar> samplingCurveDist;
|
||||
int dummyTrackData = 0;
|
||||
|
||||
forAll(insidePoints_, pointI)
|
||||
// Seed faces on cell1
|
||||
DynamicList<topoDistanceData> faceDist;
|
||||
DynamicList<label> cFaces1;
|
||||
|
||||
if (cellI != -1)
|
||||
{
|
||||
label cell1I = mesh.findCell(insidePoints_[pointI]);
|
||||
const labelList& cFaces = mesh.cells()[cellI];
|
||||
faceDist.reserve(cFaces.size());
|
||||
cFaces1.reserve(cFaces.size());
|
||||
|
||||
//
|
||||
// Pass1: Set initial changed faces from cell1 (seed)
|
||||
//
|
||||
|
||||
List<topoDistanceData> faceDist;
|
||||
labelList cFaces1;
|
||||
|
||||
if (cell1I != -1)
|
||||
for (label facei : cFaces)
|
||||
{
|
||||
cFaces1 = mesh.cells()[cell1I];
|
||||
faceDist.setSize
|
||||
(
|
||||
cFaces1.size(),
|
||||
topoDistanceData(123, 0)
|
||||
);
|
||||
if (!allFaceInfo[facei].valid(dummyTrackData))
|
||||
{
|
||||
cFaces1.append(facei);
|
||||
faceDist.append(topoDistanceData(123, 0));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Walk through face-cell wave till all cells are reached
|
||||
FaceCellWave
|
||||
<
|
||||
topoDistanceData
|
||||
> wallDistCalc
|
||||
(
|
||||
mesh,
|
||||
cFaces1,
|
||||
faceDist,
|
||||
allFaceInfo,
|
||||
allCellInfo,
|
||||
mesh.globalData().nTotalCells()+1 // max iterations
|
||||
);
|
||||
|
||||
|
||||
if (debug)
|
||||
{
|
||||
const fvMesh& fm = refCast<const fvMesh>(mesh);
|
||||
|
||||
const_cast<fvMesh&>(fm).setInstance(fm.time().timeName());
|
||||
fm.write();
|
||||
volScalarField fld
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
"allCellInfo" + Foam::name(iter),
|
||||
fm.time().timeName(),
|
||||
fm,
|
||||
IOobject::NO_READ,
|
||||
IOobject::NO_WRITE
|
||||
),
|
||||
fm,
|
||||
dimensionedScalar(dimless, Zero)
|
||||
);
|
||||
forAll(allCellInfo, celli)
|
||||
{
|
||||
fld[celli] = allCellInfo[celli].distance();
|
||||
}
|
||||
forAll(fld.boundaryField(), patchi)
|
||||
{
|
||||
const polyPatch& pp = mesh.boundaryMesh()[patchi];
|
||||
SubList<topoDistanceData> p(pp.patchSlice(allFaceInfo));
|
||||
scalarField pfld(fld.boundaryField()[patchi].size());
|
||||
forAll(pfld, i)
|
||||
{
|
||||
pfld[i] = 1.0*allFaceInfo[pp.start()+i].distance();
|
||||
}
|
||||
fld.boundaryFieldRef()[patchi] == pfld;
|
||||
}
|
||||
//Note: do not swap cell values so do not do
|
||||
//fld.correctBoundaryConditions();
|
||||
fld.write();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Foam::shortestPathSet::sync
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
PackedBoolList& isLeakFace,
|
||||
PackedBoolList& isLeakPoint,
|
||||
const label celli,
|
||||
point& origin,
|
||||
bool& findMinDistance
|
||||
) const
|
||||
{
|
||||
syncTools::syncPointList
|
||||
(
|
||||
mesh,
|
||||
isLeakPoint,
|
||||
orEqOp<unsigned int>(),
|
||||
0u
|
||||
);
|
||||
syncTools::syncFaceList
|
||||
(
|
||||
mesh,
|
||||
isLeakFace,
|
||||
orEqOp<unsigned int>()
|
||||
);
|
||||
// Sync origin, findMinDistance
|
||||
{
|
||||
typedef Tuple2<label, Tuple2<point, bool>> ProcData;
|
||||
|
||||
ProcData searchData
|
||||
(
|
||||
celli,
|
||||
Tuple2<point, bool>(origin, findMinDistance)
|
||||
);
|
||||
Foam::combineReduce
|
||||
(
|
||||
searchData,
|
||||
[](ProcData& x, const ProcData& y)
|
||||
{
|
||||
if (y.first() != -1)
|
||||
{
|
||||
x = y;
|
||||
}
|
||||
}
|
||||
);
|
||||
origin = searchData.second().first();
|
||||
findMinDistance = searchData.second().second();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
bool Foam::shortestPathSet::touchesWall
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
const label facei,
|
||||
|
||||
PackedBoolList& isLeakFace,
|
||||
const PackedBoolList& isLeakPoint
|
||||
) const
|
||||
{
|
||||
// Check if facei touches leakPoint
|
||||
const face& f = mesh.faces()[facei];
|
||||
forAll(f, fp)
|
||||
{
|
||||
if (isLeakPoint[f[fp]])
|
||||
{
|
||||
if (isLeakFace.set(facei))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
void Foam::shortestPathSet::genSamples
|
||||
(
|
||||
const bool markLeakPath,
|
||||
const label maxIter,
|
||||
const polyMesh& mesh,
|
||||
const boolList& isBlockedFace,
|
||||
const point& insidePoint,
|
||||
const label insideCelli,
|
||||
const point& outsidePoint,
|
||||
|
||||
DynamicList<point>& samplingPts,
|
||||
DynamicList<label>& samplingCells,
|
||||
DynamicList<label>& samplingFaces,
|
||||
DynamicList<label>& samplingSegments,
|
||||
DynamicList<scalar>& samplingCurveDist,
|
||||
PackedBoolList& isLeakCell,
|
||||
PackedBoolList& isLeakFace,
|
||||
PackedBoolList& isLeakPoint
|
||||
) const
|
||||
{
|
||||
const topoDistanceData maxData(labelMax, labelMax);
|
||||
|
||||
// Get the target point
|
||||
label outsideCelli = mesh.findCell(outsidePoint);
|
||||
|
||||
// Maintain overall track length. Used to make curveDist continuous.
|
||||
label trackLength = 0;
|
||||
|
||||
for (label iter = 0; iter < maxIter; iter++)
|
||||
{
|
||||
List<topoDistanceData> allFaceInfo(mesh.nFaces());
|
||||
List<topoDistanceData> allCellInfo(mesh.nCells());
|
||||
|
||||
// Walk through face-cell wave till all cells are reached
|
||||
FaceCellWave
|
||||
<
|
||||
topoDistanceData
|
||||
> wallDistCalc
|
||||
(
|
||||
mesh,
|
||||
cFaces1,
|
||||
faceDist,
|
||||
allFaceInfo,
|
||||
allCellInfo,
|
||||
mesh.globalData().nTotalCells()+1 // max iterations
|
||||
);
|
||||
// Mark blocked faces with high distance
|
||||
forAll(isBlockedFace, facei)
|
||||
{
|
||||
if (isBlockedFace[facei])
|
||||
{
|
||||
allFaceInfo[facei] = maxData;
|
||||
}
|
||||
}
|
||||
|
||||
// Pass2: walk from outside points backwards. Note: could be done using
|
||||
// FaceCellWave as well but is overly complex since does
|
||||
// not allow logic comparing all faces of a cell.
|
||||
if (markLeakPath)
|
||||
{
|
||||
// Mark any previously found leak path. This marks all
|
||||
// faces of all cells on the path. This will make sure that
|
||||
// ultimately the path will go through another gap.
|
||||
forAll(isLeakCell, celli)
|
||||
{
|
||||
if (celli != insideCelli && celli != outsideCelli)
|
||||
{
|
||||
if (isLeakCell[celli])
|
||||
{
|
||||
allCellInfo[celli] = maxData;
|
||||
const cell& cFaces = mesh.cells()[celli];
|
||||
for (auto facei : cFaces)
|
||||
{
|
||||
allFaceInfo[facei] = maxData;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Mark any previously found leak faces. These are faces that
|
||||
// are (point-)connected to an existing boundary.
|
||||
forAll(isLeakFace, facei)
|
||||
{
|
||||
if (isLeakFace[facei])
|
||||
{
|
||||
allFaceInfo[facei] = maxData;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Pass1: Get distance to insideCelli
|
||||
|
||||
calculateDistance(iter, mesh, insideCelli, allFaceInfo, allCellInfo);
|
||||
|
||||
|
||||
|
||||
// Pass2: walk from outside points backwards. Note: could be done
|
||||
// using FaceCellWave as well but is overly complex since
|
||||
// does not allow logic comparing all faces of a cell.
|
||||
|
||||
const polyBoundaryMesh& pbm = mesh.boundaryMesh();
|
||||
|
||||
// Get the target point
|
||||
label cell2I = mesh.findCell(outsidePoints_[pointI]);
|
||||
|
||||
// The number of cells between cell1 and cell2 is the max number of
|
||||
// iterations to search backward
|
||||
label nPathPoints = 0;
|
||||
|
||||
if (cell2I != -1)
|
||||
bool targetFound = false;
|
||||
if (outsideCelli != -1)
|
||||
{
|
||||
if (!allCellInfo[cell2I].valid(wallDistCalc.data()))
|
||||
int dummyTrackData;
|
||||
targetFound = allCellInfo[outsideCelli].valid(dummyTrackData);
|
||||
if (!targetFound)
|
||||
{
|
||||
WarningInFunction
|
||||
<< "Point " << outsidePoints_[pointI]
|
||||
<< " not reachable by walk. Probably mesh has "
|
||||
<< " island/regions. Skipped route detection." << endl;
|
||||
return;
|
||||
<< "Point " << outsidePoint
|
||||
<< " not reachable by walk from " << insidePoint
|
||||
<< ". Probably mesh has island/regions."
|
||||
<< " Skipped route detection." << endl;
|
||||
}
|
||||
|
||||
nPathPoints = allCellInfo[cell2I].distance();
|
||||
}
|
||||
reduce(nPathPoints, maxOp<label>());
|
||||
reduce(targetFound, orOp<bool>());
|
||||
if (!targetFound)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
// Start with given target cell and walk back
|
||||
label frontCellI = cell2I;
|
||||
// If point happens to be on multiple processors, random pick
|
||||
label frontCellI = outsideCelli;
|
||||
point origin(outsidePoint);
|
||||
bool findMinDistance = true;
|
||||
|
||||
while (nPathPoints--)
|
||||
while (true)
|
||||
{
|
||||
label frontFaceI = -1;
|
||||
|
||||
@ -180,21 +434,32 @@ void Foam::shortestPathSet::genSamples(const polyMesh& mesh)
|
||||
// x | x 2 1 2 2 3 3 4 4
|
||||
// --- + --- + --- + -3- + -4- + -5-
|
||||
// x | x 3 2 3 3 4 4 5 5
|
||||
// e.g. if we start from cell with value = 4, we have neighbour
|
||||
// faces 4, 4, 5, 5. Choose 4 (least distance to seed)
|
||||
// and continue...
|
||||
// e.g. if we start from cell with value = 4, we have
|
||||
// neighbour faces 4, 4, 5, 5. Choose 4 (least distance
|
||||
// to seed) and continue...
|
||||
|
||||
frontFaceI = findMinFace
|
||||
(
|
||||
mesh,
|
||||
frontCellI,
|
||||
allFaceInfo,
|
||||
outsidePoints_[pointI]
|
||||
isLeakPoint,
|
||||
findMinDistance, // mode : find min or find max
|
||||
origin
|
||||
);
|
||||
|
||||
|
||||
// Loop until we hit a boundary face
|
||||
PackedBoolList isNewLeakPoint(isLeakPoint);
|
||||
while (mesh.isInternalFace(frontFaceI))
|
||||
{
|
||||
if (isBlockedFace.size() && isBlockedFace[frontFaceI])
|
||||
{
|
||||
// Pout<< " Found blocked face" << endl;
|
||||
frontCellI = -1;
|
||||
break;
|
||||
}
|
||||
|
||||
// Step to neighbouring cell
|
||||
label nbrCellI = mesh.faceOwner()[frontFaceI];
|
||||
if (nbrCellI == frontCellI)
|
||||
@ -202,7 +467,7 @@ void Foam::shortestPathSet::genSamples(const polyMesh& mesh)
|
||||
nbrCellI = mesh.faceNeighbour()[frontFaceI];
|
||||
}
|
||||
|
||||
if (nbrCellI == cell1I)
|
||||
if (nbrCellI == insideCelli)
|
||||
{
|
||||
// Pout<< " Found connection seed cell!" << endl;
|
||||
frontCellI = -1;
|
||||
@ -217,27 +482,57 @@ void Foam::shortestPathSet::genSamples(const polyMesh& mesh)
|
||||
mesh,
|
||||
frontCellI,
|
||||
allFaceInfo,
|
||||
outsidePoints_[pointI]
|
||||
isLeakPoint,
|
||||
findMinDistance,
|
||||
origin
|
||||
);
|
||||
|
||||
// Set the sampling point
|
||||
samplingPts.append(mesh.cellCentres()[frontCellI]);
|
||||
samplingCells.append(frontCellI);
|
||||
samplingFaces.append(-1);
|
||||
samplingSegments.append(pointI);
|
||||
//Check if mag of distance is useful
|
||||
samplingCurveDist.append(nPathPoints);
|
||||
const topoDistanceData& cInfo = allCellInfo[frontCellI];
|
||||
const topoDistanceData& fInfo = allFaceInfo[frontFaceI];
|
||||
|
||||
if (fInfo.distance() <= cInfo.distance())
|
||||
{
|
||||
samplingPts.append(mesh.cellCentres()[frontCellI]);
|
||||
samplingCells.append(frontCellI);
|
||||
samplingFaces.append(-1);
|
||||
samplingSegments.append(iter);
|
||||
samplingCurveDist.append
|
||||
(
|
||||
trackLength+cInfo.distance()
|
||||
);
|
||||
isLeakCell.set(frontCellI);
|
||||
|
||||
if
|
||||
(
|
||||
touchesWall
|
||||
(
|
||||
mesh,
|
||||
frontFaceI,
|
||||
isLeakFace,
|
||||
isLeakPoint
|
||||
)
|
||||
)
|
||||
{
|
||||
isNewLeakPoint.set(mesh.faces()[frontFaceI]);
|
||||
origin = mesh.faceCentres()[frontFaceI];
|
||||
findMinDistance = false;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
isLeakPoint.transfer(isNewLeakPoint);
|
||||
}
|
||||
|
||||
// Situation 1: we found the destination cell (do nothing)
|
||||
if (!returnReduce(frontCellI != -1, orOp<bool>()))
|
||||
// Situation 1: we found the destination cell (do nothing),
|
||||
// frontCellI is -1 on all processors
|
||||
if (returnReduce(frontCellI == -1, andOp<bool>()))
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
// Situation 2: we're on a coupled patch and might need to
|
||||
// switch processor/cell
|
||||
// switch processor/cell. We need to transfer:
|
||||
// -frontface -frontdistance -leak points/faces
|
||||
boolList isFront(mesh.nBoundaryFaces(), false);
|
||||
|
||||
if (frontFaceI != -1)
|
||||
@ -246,32 +541,259 @@ void Foam::shortestPathSet::genSamples(const polyMesh& mesh)
|
||||
}
|
||||
syncTools::swapBoundaryFaceList(mesh, isFront);
|
||||
|
||||
label minCellDistance = labelMax;
|
||||
if (frontCellI != -1)
|
||||
{
|
||||
minCellDistance = allCellInfo[frontCellI].distance();
|
||||
}
|
||||
reduce(minCellDistance, minOp<label>());
|
||||
|
||||
// Sync all leak data
|
||||
sync
|
||||
(
|
||||
mesh,
|
||||
isLeakFace,
|
||||
isLeakPoint,
|
||||
frontCellI,
|
||||
origin,
|
||||
findMinDistance
|
||||
);
|
||||
|
||||
|
||||
|
||||
const label oldFrontFaceI = frontFaceI;
|
||||
frontCellI = -1;
|
||||
frontFaceI = -1;
|
||||
forAll(pbm, patchI)
|
||||
{
|
||||
const polyPatch& pp = pbm[patchI];
|
||||
forAll(pp, i)
|
||||
{
|
||||
label faceI = pp.start()+i;
|
||||
if (isFront[faceI-mesh.nInternalFaces()])
|
||||
if
|
||||
(
|
||||
oldFrontFaceI == -1
|
||||
&& isFront[faceI-mesh.nInternalFaces()]
|
||||
&& (isBlockedFace.empty() || !isBlockedFace[faceI])
|
||||
)
|
||||
{
|
||||
frontFaceI = faceI;
|
||||
frontCellI = pp.faceCells()[i];
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (frontCellI != -1)
|
||||
if
|
||||
(
|
||||
frontCellI != -1
|
||||
&& allCellInfo[frontCellI].distance() < minCellDistance
|
||||
)
|
||||
{
|
||||
const topoDistanceData& cInfo = allCellInfo[frontCellI];
|
||||
|
||||
samplingPts.append(mesh.cellCentres()[frontCellI]);
|
||||
samplingCells.append(frontCellI);
|
||||
samplingFaces.append(-1);
|
||||
samplingSegments.append(pointI);
|
||||
samplingCurveDist.append(nPathPoints);
|
||||
samplingSegments.append(iter);
|
||||
samplingCurveDist.append
|
||||
(
|
||||
trackLength+cInfo.distance()
|
||||
);
|
||||
isLeakCell.set(frontCellI);
|
||||
|
||||
// Check if frontFacei touches leakPoint
|
||||
if
|
||||
(
|
||||
touchesWall
|
||||
(
|
||||
mesh,
|
||||
frontFaceI,
|
||||
isLeakFace,
|
||||
isLeakPoint
|
||||
)
|
||||
)
|
||||
{
|
||||
isLeakPoint.set(mesh.faces()[frontFaceI]);
|
||||
origin = mesh.faceCentres()[frontFaceI];
|
||||
findMinDistance = false;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
// When seed cell is isolated by processor boundaries
|
||||
if (insideCelli != -1 && frontCellI == insideCelli)
|
||||
{
|
||||
// Pout<< " Found connection seed cell!" << endl;
|
||||
frontCellI = -1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Sync all leak data
|
||||
sync
|
||||
(
|
||||
mesh,
|
||||
isLeakFace,
|
||||
isLeakPoint,
|
||||
frontCellI,
|
||||
origin,
|
||||
findMinDistance
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
// Recalculate the overall trackLength
|
||||
trackLength = returnReduce
|
||||
(
|
||||
(
|
||||
samplingCurveDist.size()
|
||||
? samplingCurveDist.last()
|
||||
: 0
|
||||
),
|
||||
maxOp<scalar>()
|
||||
);
|
||||
|
||||
|
||||
if (debug)
|
||||
{
|
||||
const fvMesh& fm = refCast<const fvMesh>(mesh);
|
||||
|
||||
const_cast<fvMesh&>(fm).setInstance(fm.time().timeName());
|
||||
volScalarField fld
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
"isLeakCell",
|
||||
fm.time().timeName(),
|
||||
fm,
|
||||
IOobject::NO_READ,
|
||||
IOobject::NO_WRITE
|
||||
),
|
||||
fm,
|
||||
dimensionedScalar(dimless, Zero)
|
||||
);
|
||||
forAll(isLeakCell, celli)
|
||||
{
|
||||
fld[celli] = isLeakCell[celli];
|
||||
}
|
||||
fld.correctBoundaryConditions();
|
||||
fld.write();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Foam::shortestPathSet::genSamples
|
||||
(
|
||||
const bool markLeakPath,
|
||||
const label maxIter,
|
||||
const polyMesh& mesh,
|
||||
const labelUList& wallPatches,
|
||||
const boolList& isBlockedFace
|
||||
)
|
||||
{
|
||||
// Storage for sample points
|
||||
DynamicList<point> samplingPts;
|
||||
DynamicList<label> samplingCells;
|
||||
DynamicList<label> samplingFaces;
|
||||
DynamicList<label> samplingSegments;
|
||||
DynamicList<scalar> samplingCurveDist;
|
||||
|
||||
// Seed faces and points on 'real' boundary
|
||||
PackedBoolList isLeakFace(mesh.nFaces());
|
||||
PackedBoolList isLeakPoint(mesh.nPoints());
|
||||
{
|
||||
// Real boundaries
|
||||
const polyBoundaryMesh& pbm = mesh.boundaryMesh();
|
||||
for (label patchi : wallPatches)
|
||||
{
|
||||
const polyPatch& pp = pbm[patchi];
|
||||
forAll(pp, i)
|
||||
{
|
||||
isLeakPoint.set(pp[i]);
|
||||
}
|
||||
}
|
||||
|
||||
// Meshed boundaries
|
||||
forAll(isBlockedFace, facei)
|
||||
{
|
||||
if (isBlockedFace[facei])
|
||||
{
|
||||
isLeakPoint.set(mesh.faces()[facei]);
|
||||
}
|
||||
}
|
||||
|
||||
syncTools::syncPointList
|
||||
(
|
||||
mesh,
|
||||
isLeakPoint,
|
||||
orEqOp<unsigned int>(),
|
||||
0u
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
// All cells along leak paths
|
||||
PackedBoolList isLeakCell(mesh.nCells());
|
||||
|
||||
label prevSegmenti = 0;
|
||||
scalar prevDistance = 0.0;
|
||||
|
||||
for (auto insidePoint : insidePoints_)
|
||||
{
|
||||
const label insideCelli = mesh.findCell(insidePoint);
|
||||
|
||||
for (auto outsidePoint : outsidePoints_)
|
||||
{
|
||||
const label nOldSamples = samplingSegments.size();
|
||||
|
||||
// Append any leak path to sampling*
|
||||
genSamples
|
||||
(
|
||||
markLeakPath,
|
||||
maxIter,
|
||||
mesh,
|
||||
isBlockedFace,
|
||||
insidePoint,
|
||||
insideCelli,
|
||||
outsidePoint,
|
||||
|
||||
samplingPts,
|
||||
samplingCells,
|
||||
samplingFaces,
|
||||
samplingSegments,
|
||||
samplingCurveDist,
|
||||
isLeakCell,
|
||||
isLeakFace,
|
||||
isLeakPoint
|
||||
);
|
||||
|
||||
// Make segment, distance consecutive
|
||||
label maxSegment = 0;
|
||||
scalar maxDistance = 0.0;
|
||||
for (label i = nOldSamples; i < samplingSegments.size(); ++i)
|
||||
{
|
||||
samplingSegments[i] += prevSegmenti;
|
||||
maxSegment = max(maxSegment, samplingSegments[i]);
|
||||
samplingCurveDist[i] += prevDistance;
|
||||
maxDistance = max(maxDistance, samplingCurveDist[i]);
|
||||
}
|
||||
prevSegmenti = returnReduce(maxSegment, maxOp<label>());
|
||||
prevDistance = returnReduce(maxDistance, maxOp<scalar>());
|
||||
}
|
||||
}
|
||||
|
||||
if (debug)
|
||||
{
|
||||
const faceList leakFaces(mesh.faces(), isLeakFace.sortedToc());
|
||||
|
||||
OBJstream str(mesh.time().path()/"isLeakFace.obj");
|
||||
str.write(leakFaces, mesh.points(), false);
|
||||
Pout<< "Writing " << leakFaces.size() << " faces to " << str.name()
|
||||
<< endl;
|
||||
}
|
||||
|
||||
|
||||
samplingPts.shrink();
|
||||
samplingCells.shrink();
|
||||
@ -304,15 +826,100 @@ Foam::shortestPathSet::shortestPathSet
|
||||
const polyMesh& mesh,
|
||||
const meshSearch& searchEngine,
|
||||
const word& axis,
|
||||
const bool markLeakPath,
|
||||
const label maxIter,
|
||||
const labelUList& wallPatches,
|
||||
const pointField& insidePoints,
|
||||
const pointField& outsidePoints
|
||||
const pointField& outsidePoints,
|
||||
const boolList& isBlockedFace
|
||||
)
|
||||
:
|
||||
sampledSet(name, mesh, searchEngine, axis),
|
||||
insidePoints_(insidePoints),
|
||||
outsidePoints_(outsidePoints)
|
||||
{
|
||||
genSamples(mesh);
|
||||
if (debug)
|
||||
{
|
||||
fileName outputDir;
|
||||
if (Pstream::master())
|
||||
{
|
||||
outputDir =
|
||||
mesh.time().path()
|
||||
/ (Pstream::parRun() ? ".." : "")
|
||||
/ functionObject::outputPrefix
|
||||
/ mesh.pointsInstance();
|
||||
outputDir.clean();
|
||||
mkDir(outputDir);
|
||||
Info<< "shortestPathSet : Writing blocked faces to "
|
||||
<< outputDir << endl;
|
||||
}
|
||||
|
||||
const vtkSurfaceWriter surfWriter;
|
||||
|
||||
const indirectPrimitivePatch setPatch
|
||||
(
|
||||
IndirectList<face>
|
||||
(
|
||||
mesh.faces(),
|
||||
findIndices(isBlockedFace, true)
|
||||
),
|
||||
mesh.points()
|
||||
);
|
||||
if (Pstream::parRun())
|
||||
{
|
||||
labelList pointToGlobal;
|
||||
labelList uniqueMeshPointLabels;
|
||||
autoPtr<globalIndex> globalPoints;
|
||||
autoPtr<globalIndex> globalFaces;
|
||||
faceList mergedFaces;
|
||||
pointField mergedPoints;
|
||||
Foam::PatchTools::gatherAndMerge
|
||||
(
|
||||
mesh,
|
||||
setPatch.localFaces(),
|
||||
setPatch.meshPoints(),
|
||||
setPatch.meshPointMap(),
|
||||
|
||||
pointToGlobal,
|
||||
uniqueMeshPointLabels,
|
||||
globalPoints,
|
||||
globalFaces,
|
||||
|
||||
mergedFaces,
|
||||
mergedPoints
|
||||
);
|
||||
|
||||
// Write
|
||||
if (Pstream::master())
|
||||
{
|
||||
surfWriter.write
|
||||
(
|
||||
outputDir,
|
||||
"blockedFace",
|
||||
meshedSurfRef
|
||||
(
|
||||
mergedPoints,
|
||||
mergedFaces
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
surfWriter.write
|
||||
(
|
||||
outputDir,
|
||||
"blockedFace",
|
||||
meshedSurfRef
|
||||
(
|
||||
setPatch.localPoints(),
|
||||
setPatch.localFaces()
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
genSamples(markLeakPath, maxIter, mesh, wallPatches, isBlockedFace);
|
||||
}
|
||||
|
||||
|
||||
@ -328,7 +935,22 @@ Foam::shortestPathSet::shortestPathSet
|
||||
insidePoints_(dict.get<pointField>("insidePoints")),
|
||||
outsidePoints_(dict.get<pointField>("outsidePoints"))
|
||||
{
|
||||
genSamples(mesh);
|
||||
const label maxIter(dict.lookupOrDefault<label>("maxIter", 50));
|
||||
const bool markLeakPath(dict.lookupOrDefault<bool>("markLeakPath", true));
|
||||
|
||||
const polyBoundaryMesh& pbm = mesh.boundaryMesh();
|
||||
|
||||
DynamicList<label> wallPatches(pbm.size());
|
||||
forAll(pbm, patchi)
|
||||
{
|
||||
const polyPatch& pp = pbm[patchi];
|
||||
if (!pp.coupled() && !isA<emptyPolyPatch>(pp))
|
||||
{
|
||||
wallPatches.append(patchi);
|
||||
}
|
||||
}
|
||||
|
||||
genSamples(markLeakPath, maxIter, mesh, wallPatches, boolList());
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user