Bugfix: mapper constructor

This commit is contained in:
Hrvoje Jasak 2017-12-30 09:27:58 +00:00
parent fc6e083c3e
commit e089353e71
2 changed files with 11 additions and 14 deletions

View file

@ -46,6 +46,17 @@ movingWallVelocityFvPatchVectorField::movingWallVelocityFvPatchVectorField
{}
movingWallVelocityFvPatchVectorField::movingWallVelocityFvPatchVectorField
(
const fvPatch& p,
const DimensionedField<vector, volMesh>& iF,
const dictionary& dict
)
:
fixedValueFvPatchVectorField(p, iF, dict)
{}
movingWallVelocityFvPatchVectorField::movingWallVelocityFvPatchVectorField
(
const movingWallVelocityFvPatchVectorField& ptf,
@ -58,19 +69,6 @@ movingWallVelocityFvPatchVectorField::movingWallVelocityFvPatchVectorField
{}
movingWallVelocityFvPatchVectorField::movingWallVelocityFvPatchVectorField
(
const fvPatch& p,
const DimensionedField<vector, volMesh>& iF,
const dictionary& dict
)
:
fixedValueFvPatchVectorField(p, iF)
{
fvPatchVectorField::operator=(vectorField("value", dict, p.size()));
}
movingWallVelocityFvPatchVectorField::movingWallVelocityFvPatchVectorField
(
const movingWallVelocityFvPatchVectorField& pivpvf

View file

@ -120,7 +120,6 @@ public:
}
// Member functions
//- Update the coefficients associated with the patch field