diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchField.C index a95239a9b67b050106f5793fa130d15cfdbca65c..0a5da32f09f5f52cd4406233c0a3f750e0406572 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicACMI/cyclicACMIFvPatchField.C @@ -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); } diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C index 8a8ad6e3cd8db421a1b78750a49fc7502ce9b39d..4e2acbd0233487948855764de8920fbac7fa7c17 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C @@ -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); } diff --git a/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicACMIGAMGInterfaceField/cyclicACMIGAMGInterfaceField.C b/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicACMIGAMGInterfaceField/cyclicACMIGAMGInterfaceField.C index d35f01078f387e1ff1891e5905c4616a30bd956c..19ddaa9300a73cd64b3aa5e9d825ee90f818c8a0 100644 --- a/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicACMIGAMGInterfaceField/cyclicACMIGAMGInterfaceField.C +++ b/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicACMIGAMGInterfaceField/cyclicACMIGAMGInterfaceField.C @@ -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); } diff --git a/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicAMIGAMGInterfaceField/cyclicAMIGAMGInterfaceField.C b/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicAMIGAMGInterfaceField/cyclicAMIGAMGInterfaceField.C index ea1279128c5288b3bfb5a0d68128f2c33fc05cb7..69d08703a6692ecc2ccbe6c722fa1c8ac5dcc9b9 100644 --- a/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicAMIGAMGInterfaceField/cyclicAMIGAMGInterfaceField.C +++ b/src/meshTools/AMIInterpolation/GAMG/interfaceFields/cyclicAMIGAMGInterfaceField/cyclicAMIGAMGInterfaceField.C @@ -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); }