boundaryField() -> boundaryFieldRef()

This commit is contained in:
Henry Weller
2016-04-24 22:07:37 +01:00
parent 3758659ac6
commit 2d5ff31649
155 changed files with 1650 additions and 1466 deletions

View File

@ -102,12 +102,12 @@ int main(int argc, char *argv[])
forAll(faceLabels, faceI)
{
const label meshFaceI = faceLabels[faceI];
const label patchI = bm.whichPatch(meshFaceI);
const label patchi = bm.whichPatch(meshFaceI);
if
(
patchI != -1
&& bm[patchI].coupled()
patchi != -1
&& bm[patchi].coupled()
&& !isMasterFace[meshFaceI]
)
{
@ -312,12 +312,12 @@ int main(int argc, char *argv[])
forAll(faceLabels, i)
{
const label meshFaceI = faceLabels[i];
const label patchI = bm.whichPatch(meshFaceI);
const label patchi = bm.whichPatch(meshFaceI);
if
(
patchI != -1
&& bm[patchI].coupled()
patchi != -1
&& bm[patchi].coupled()
&& !isMasterFace[meshFaceI]
)
{