This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/solvers/coupled/conjugateHeatFoam/detachPatches.H
2014-06-01 20:12:52 +02:00

18 lines
441 B
C

{
const polyPatchList& patches = mesh.boundaryMesh();
forAll (patches, patchI)
{
if (isType<regionCouplePolyPatch>(patches[patchI]))
{
const regionCouplePolyPatch& rcp =
refCast<const regionCouplePolyPatch>(patches[patchI]);
// Detach it here
rcp.detach();
}
}
// Force recalculation of weights
mesh.surfaceInterpolation::movePoints();
}