Skip to content
Snippets Groups Projects
Commit bbb15795 authored by mattijs's avatar mattijs
Browse files

BUG: AMI: missing manipulatedMatrix setting. See #3238

parent e7b14855
Branches
Tags
No related merge requests found
......@@ -611,6 +611,8 @@ void Foam::cyclicACMIFvPatchField<Type>::initInterfaceMatrixUpdate
scalarRecvBufs_
);
}
this->updatedMatrix(false);
}
......@@ -679,6 +681,8 @@ void Foam::cyclicACMIFvPatchField<Type>::updateInterfaceMatrix
}
this->addToInternalField(result, !add, faceCells, coeffs, pnf);
this->updatedMatrix(true);
}
......@@ -735,6 +739,8 @@ void Foam::cyclicACMIFvPatchField<Type>::initInterfaceMatrixUpdate
recvBufs_
);
}
this->updatedMatrix(false);
}
......@@ -792,6 +798,8 @@ void Foam::cyclicACMIFvPatchField<Type>::updateInterfaceMatrix
}
this->addToInternalField(result, !add, faceCells, coeffs, pnf);
this->updatedMatrix(true);
}
......
......@@ -616,6 +616,8 @@ void Foam::cyclicAMIFvPatchField<Type>::initInterfaceMatrixUpdate
scalarRecvBufs_
);
}
this->updatedMatrix(false);
}
......@@ -693,6 +695,8 @@ void Foam::cyclicAMIFvPatchField<Type>::updateInterfaceMatrix
// Multiply the field by coefficients and add into the result
this->addToInternalField(result, !add, faceCells, coeffs, pnf);
this->updatedMatrix(true);
}
......@@ -751,6 +755,8 @@ void Foam::cyclicAMIFvPatchField<Type>::initInterfaceMatrixUpdate
recvBufs_
);
}
this->updatedMatrix(false);
}
......@@ -827,6 +833,8 @@ void Foam::cyclicAMIFvPatchField<Type>::updateInterfaceMatrix
// Multiply the field by coefficients and add into the result
this->addToInternalField(result, !add, faceCells, coeffs, pnf);
this->updatedMatrix(true);
}
......
......@@ -249,6 +249,8 @@ void Foam::cyclicACMIGAMGInterfaceField::initInterfaceMatrixUpdate
);
UPstream::commWarn(oldWarnComm);
}
this->updatedMatrix(false);
}
......@@ -346,6 +348,8 @@ void Foam::cyclicACMIGAMGInterfaceField::updateInterfaceMatrix
this->addToInternalField(result, !add, faceCells, coeffs, pnf);
}
this->updatedMatrix(true);
}
......
......@@ -251,6 +251,8 @@ void Foam::cyclicAMIGAMGInterfaceField::initInterfaceMatrixUpdate
);
UPstream::commWarn(oldWarnComm);
}
this->updatedMatrix(false);
}
......@@ -360,6 +362,8 @@ void Foam::cyclicAMIGAMGInterfaceField::updateInterfaceMatrix
// Add result using coefficients
this->addToInternalField(result, !add, faceCells, coeffs, pnf);
}
this->updatedMatrix(true);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment