BUG: Move constraint to symmetryPointPatch.

Slip bc can now be used on non-constraint patches
This commit is contained in:
mattijs
2010-04-30 11:17:38 +01:00
parent 4e0fdc69ea
commit 03db0e7dfb
2 changed files with 10 additions and 6 deletions

View File

@ -121,12 +121,6 @@ public:
// Evaluation functions
//- Return the constraint type this pointPatchField implements
virtual const word& constraintType() const
{
return symmetryPointPatch::typeName;
}
//- Update the patch field
virtual void evaluate
(

View File

@ -119,6 +119,16 @@ public:
)
);
}
// Member functions
//- Return the constraint type this pointPatchField implements
virtual const word& constraintType() const
{
return symmetryPointPatch::typeName;
}
};