Bugfix: restored floatTransfer flag
[foam-extend-3.2.git] / applications / solvers / coupled / conjugateHeatFoam / attachPatches.H
blob225f570e04072f38e6f558d26e2791c300ef1762
2     const polyPatchList& patches = mesh.boundaryMesh();
4     forAll (patches, patchI)
5     {
6         if (isType<regionCouplePolyPatch>(patches[patchI]))
7         {
8             const regionCouplePolyPatch& rcp =
9                 refCast<const regionCouplePolyPatch>(patches[patchI]);
11             // Attach it here
12             rcp.attach();
13         }
14     }
16     // Force recalculation of weights
17     mesh.surfaceInterpolation::movePoints();