mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: mesh-to-mesh interplation - reinstated patchMap input ordering
This commit is contained in:
@ -540,8 +540,8 @@ Foam::meshToMeshNew::meshToMeshNew
|
||||
label i = 0;
|
||||
forAllConstIter(HashTable<word>, patchMap, iter)
|
||||
{
|
||||
const word& srcPatchName = iter.key();
|
||||
const word& tgtPatchName = iter();
|
||||
const word& tgtPatchName = iter.key();
|
||||
const word& srcPatchName = iter();
|
||||
|
||||
const polyPatch& srcPatch = srcRegion_.boundaryMesh()[srcPatchName];
|
||||
const polyPatch& tgtPatch = tgtRegion_.boundaryMesh()[tgtPatchName];
|
||||
|
||||
Reference in New Issue
Block a user