mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: update fvMeshDistribute and domainDecomposition to use new
coupledPolyPatch constructor
This commit is contained in:
@ -454,9 +454,14 @@ bool Foam::domainDecomposition::writeDecomposition()
|
||||
}
|
||||
else
|
||||
{
|
||||
const coupledPolyPatch& pcPatch
|
||||
= refCast<const coupledPolyPatch>
|
||||
(
|
||||
boundaryMesh()[subPatchID[i]]
|
||||
);
|
||||
|
||||
// From cyclic
|
||||
const word& referPatch =
|
||||
boundaryMesh()[subPatchID[i]].name();
|
||||
const word& referPatch = pcPatch.name();
|
||||
|
||||
procPatches[nPatches] =
|
||||
new processorCyclicPolyPatch
|
||||
@ -472,7 +477,8 @@ bool Foam::domainDecomposition::writeDecomposition()
|
||||
procMesh.boundaryMesh(),
|
||||
procI,
|
||||
curNeighbourProcessors[procPatchI],
|
||||
referPatch
|
||||
referPatch,
|
||||
pcPatch.transform()
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@ -961,11 +961,14 @@ void Foam::fvMeshDistribute::addProcPatches
|
||||
}
|
||||
else
|
||||
{
|
||||
const coupledPolyPatch& pcPatch
|
||||
= refCast<const coupledPolyPatch>
|
||||
(
|
||||
mesh_.boundaryMesh()[referPatchID[bFaceI]]
|
||||
);
|
||||
|
||||
// Processor boundary originating from cyclic
|
||||
const word& cycName = mesh_.boundaryMesh()
|
||||
[
|
||||
referPatchID[bFaceI]
|
||||
].name();
|
||||
const word& cycName = pcPatch.name();
|
||||
|
||||
const word patchName =
|
||||
"procBoundary"
|
||||
@ -984,7 +987,8 @@ void Foam::fvMeshDistribute::addProcPatches
|
||||
mesh_.boundaryMesh(),
|
||||
Pstream::myProcNo(),
|
||||
nbrProc[bFaceI],
|
||||
cycName
|
||||
cycName,
|
||||
pcPatch.transform()
|
||||
);
|
||||
|
||||
procPatchID[procI].insert
|
||||
|
||||
Reference in New Issue
Block a user