Renamed FieldMapper -> fieldMapper: it is an abstract base class for field mapping, not templated

This commit is contained in:
Henry Weller
2019-05-03 08:58:13 +01:00
parent 76a8f398aa
commit 4b57ee554e
11 changed files with 48 additions and 47 deletions

View File

@ -103,9 +103,9 @@ void Foam::mixedFixedValueSlipFvPatchField<Type>::autoMap
const fvPatchFieldMapper& m
)
{
Field<Type>::autoMap(m);
refValue_.autoMap(m);
valueFraction_.autoMap(m);
m(*this, *this);
m(refValue_, refValue_);
m(valueFraction_, valueFraction_);
}

View File

@ -110,8 +110,8 @@ void Foam::tractionDisplacementFvPatchVectorField::autoMap
)
{
fixedGradientFvPatchVectorField::autoMap(m);
traction_.autoMap(m);
pressure_.autoMap(m);
m(traction_, traction_);
m(pressure_, pressure_);
}

View File

@ -115,8 +115,8 @@ void tractionDisplacementCorrectionFvPatchVectorField::autoMap
)
{
fixedGradientFvPatchVectorField::autoMap(m);
traction_.autoMap(m);
pressure_.autoMap(m);
m(traction_, traction_);
m(pressure_, pressure_);
}