From ae8b654a866240d9f61db6973c15b84e5368f21c Mon Sep 17 00:00:00 2001 From: mattijs Date: Mon, 18 Dec 2023 16:40:12 +0000 Subject: [PATCH] BUG: cyclicAMI: missing autoMap,rmap --- .../fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C index bf033aff14..b732866cb0 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/constraint/cyclicAMI/cyclicAMIFvPatchField.C @@ -261,6 +261,7 @@ void Foam::cyclicAMIFvPatchField::autoMap const fvPatchFieldMapper& mapper ) { + coupledFvPatchField::autoMap(mapper); patchNeighbourFieldPtr_.reset(nullptr); } @@ -272,6 +273,7 @@ void Foam::cyclicAMIFvPatchField::rmap const labelList& addr ) { + coupledFvPatchField::rmap(ptf, addr); patchNeighbourFieldPtr_.reset(nullptr); }