Removed size check: may interfere with parallel communication
This commit is contained in:
parent
9db44eed51
commit
9e35f5c2c4
1 changed files with 1 additions and 1 deletions
|
@ -738,7 +738,7 @@ Foam::tmp<Foam::Field<Type> > Foam::fvMatrix<Type>::DD() const
|
||||||
{
|
{
|
||||||
const fvPatchField<Type>& ptf = psi_.boundaryField()[patchI];
|
const fvPatchField<Type>& ptf = psi_.boundaryField()[patchI];
|
||||||
|
|
||||||
if (!ptf.coupled() && ptf.size())
|
if (!ptf.coupled())
|
||||||
{
|
{
|
||||||
addToInternalField
|
addToInternalField
|
||||||
(
|
(
|
||||||
|
|
Reference in a new issue