From 241b4a60fc0e7b49c74d9609da69ef4b554088e7 Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Tue, 19 Jun 2018 14:06:57 +0100 Subject: [PATCH] mappedFieldFvPatchField: Added base-class autoMap/rmap calls Patch contributed by Mattijs Janssens --- .../derived/mappedField/mappedFieldFvPatchField.C | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/finiteVolume/fields/fvPatchFields/derived/mappedField/mappedFieldFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/derived/mappedField/mappedFieldFvPatchField.C index 3dff76714..74f0903c7 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/mappedField/mappedFieldFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/mappedField/mappedFieldFvPatchField.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -144,6 +144,7 @@ void Foam::mappedFieldFvPatchField::autoMap const fvPatchFieldMapper& m ) { + fixedValueFvPatchField::autoMap(m); mappedPatchBase::clearOut(); } @@ -155,6 +156,7 @@ void Foam::mappedFieldFvPatchField::rmap const labelList& addr ) { + fixedValueFvPatchField::rmap(ptf, addr); mappedPatchBase::clearOut(); }