From aa15f7a5ddc0adce3adf1b38f379e50e96387b41 Mon Sep 17 00:00:00 2001 From: mattijs <mattijs@hunt.opencfd.co.uk> Date: Tue, 9 Sep 2008 17:19:14 +0100 Subject: [PATCH] generalised directMappedPolyPatch --- .../directMappedFixedValueFvPatchField.C | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/finiteVolume/fields/fvPatchFields/derived/directMappedFixedValue/directMappedFixedValueFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/derived/directMappedFixedValue/directMappedFixedValueFvPatchField.C index 3c4768855f6..e9a32b05d0a 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/directMappedFixedValue/directMappedFixedValueFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/directMappedFixedValue/directMappedFixedValueFvPatchField.C @@ -159,7 +159,7 @@ void directMappedFixedValueFvPatchField<Type>::updateCoeffs() // Get the scheduling information const List<labelPair>& schedule = mpp.schedule(); - const labelListList& sendCellLabels = mpp.sendCellLabels(); + const labelListList& sendLabels = mpp.sendLabels(); const labelListList& receiveFaceLabels = mpp.receiveFaceLabels(); @@ -177,7 +177,7 @@ void directMappedFixedValueFvPatchField<Type>::updateCoeffs() toProc<< IndirectList<Type> ( this->internalField(), - sendCellLabels[recvProc] + sendLabels[recvProc] )(); } else @@ -204,7 +204,7 @@ void directMappedFixedValueFvPatchField<Type>::updateCoeffs() IndirectList<Type> fromFld ( this->internalField(), - sendCellLabels[Pstream::myProcNo()] + sendLabels[Pstream::myProcNo()] ); // Destination faces -- GitLab