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

ENH: mesh-to-mesh interplation - reinstated patchMap input ordering

parent fcc1a3a8
Branches
Tags
No related merge requests found
......@@ -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];
......
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