MRFZone: Filter-out excluded patches from ddtCorr

This commit is contained in:
Henry Weller
2018-03-16 17:14:27 +00:00
parent 0fd3db427f
commit 4b40886496

View File

@ -235,6 +235,14 @@ void Foam::MRFZone::zero
phibf[patchi][includedFaces_[patchi][i]] = Zero;
}
}
forAll(excludedFaces_, patchi)
{
forAll(excludedFaces_[patchi], i)
{
phibf[patchi][excludedFaces_[patchi][i]] = Zero;
}
}
}