Bugfix: mapper constructor
This commit is contained in:
parent
fc6e083c3e
commit
e089353e71
2 changed files with 11 additions and 14 deletions
|
@ -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
|
movingWallVelocityFvPatchVectorField::movingWallVelocityFvPatchVectorField
|
||||||
(
|
(
|
||||||
const movingWallVelocityFvPatchVectorField& ptf,
|
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
|
movingWallVelocityFvPatchVectorField::movingWallVelocityFvPatchVectorField
|
||||||
(
|
(
|
||||||
const movingWallVelocityFvPatchVectorField& pivpvf
|
const movingWallVelocityFvPatchVectorField& pivpvf
|
||||||
|
|
|
@ -120,7 +120,6 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Member functions
|
// Member functions
|
||||||
|
|
||||||
//- Update the coefficients associated with the patch field
|
//- Update the coefficients associated with the patch field
|
||||||
|
|
Reference in a new issue