Renamed FieldMapper -> fieldMapper: it is an abstract base class for field mapping, not templated
This commit is contained in:
@ -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_);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -110,8 +110,8 @@ void Foam::tractionDisplacementFvPatchVectorField::autoMap
|
||||
)
|
||||
{
|
||||
fixedGradientFvPatchVectorField::autoMap(m);
|
||||
traction_.autoMap(m);
|
||||
pressure_.autoMap(m);
|
||||
m(traction_, traction_);
|
||||
m(pressure_, pressure_);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -115,8 +115,8 @@ void tractionDisplacementCorrectionFvPatchVectorField::autoMap
|
||||
)
|
||||
{
|
||||
fixedGradientFvPatchVectorField::autoMap(m);
|
||||
traction_.autoMap(m);
|
||||
pressure_.autoMap(m);
|
||||
m(traction_, traction_);
|
||||
m(pressure_, pressure_);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user