Virtual base class for velocity motion solver. More...


Public Member Functions | |
| TypeName ("velocityMotionSolver") | |
| Runtime type information. More... | |
| velocityMotionSolver (const word &name, const polyMesh &, const dictionary &, const word &type) | |
| Construct from mesh and dictionary. More... | |
| velocityMotionSolver (const velocityMotionSolver &)=delete | |
| Disallow default bitwise copy construction. More... | |
| virtual | ~velocityMotionSolver () |
| Destructor. More... | |
| pointVectorField & | pointMotionU () |
| Return reference to the point motion velocity field. More... | |
| const pointVectorField & | pointMotionU () const |
| Return const reference to the point motion velocity field. More... | |
| virtual void | movePoints (const pointField &) |
| Update local data for geometry changes. More... | |
| virtual void | topoChange (const polyTopoChangeMap &) |
| Update corresponding to the given map. More... | |
| virtual void | mapMesh (const polyMeshMap &) |
| Update from another mesh using the given map. More... | |
| virtual void | distribute (const polyDistributionMap &) |
| Update corresponding to the given distribution map. More... | |
| void | operator= (const velocityMotionSolver &)=delete |
| Disallow default bitwise assignment. More... | |
Public Member Functions inherited from motionSolver | |
| TypeName ("motionSolver") | |
| Runtime type information. More... | |
| declareRunTimeSelectionTable (autoPtr, motionSolver, dictionary,(const word &name, const polyMesh &mesh, const dictionary &dict),(name, mesh, dict)) | |
| motionSolver (const word &name, const polyMesh &mesh, const word &type) | |
| Construct from polyMesh and dictionary and type. More... | |
| virtual autoPtr< motionSolver > | clone () const |
| Clone function. More... | |
| virtual | ~motionSolver () |
| Destructor. More... | |
| const word & | name () const |
| Return name. More... | |
| const word & | keyword () const |
| Return keyword. More... | |
| const polyMesh & | mesh () const |
| Return reference to mesh. More... | |
| virtual tmp< pointField > | newPoints () |
| Provide new points for motion. Solves for motion. More... | |
| virtual tmp< pointField > | curPoints () const =0 |
| Provide current points for motion. Uses current motion field. More... | |
| virtual void | twoDCorrectPoints (pointField &) const |
| Correct point field for reduced-dimensionality cases. More... | |
| virtual bool | solidBody () const |
| Is the motion solid body? I.e., are the volumes and area magnitudes. More... | |
| virtual void | solve ()=0 |
| Solve for motion. More... | |
| virtual bool | write () const |
| Optionally write motion state information for restart. More... | |
Protected Attributes | |
| pointVectorField | pointMotionU_ |
| Point motion field. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from motionSolver | |
| static autoPtr< motionSolver > | New (const word &name, const polyMesh &, const dictionary &) |
| Select constructed from polyMesh and dictionary. More... | |
Virtual base class for velocity motion solver.
The boundary displacement is set as a boundary condition on the pointMotionU pointVectorField.
Definition at line 54 of file velocityMotionSolver.H.
| velocityMotionSolver | ( | const word & | name, |
| const polyMesh & | mesh, | ||
| const dictionary & | dict, | ||
| const word & | type | ||
| ) |
Construct from mesh and dictionary.
Definition at line 39 of file velocityMotionSolver.C.
|
delete |
Disallow default bitwise copy construction.
|
virtual |
Destructor.
Definition at line 65 of file velocityMotionSolver.C.
| TypeName | ( | "velocityMotionSolver" | ) |
Runtime type information.
|
inline |
Return reference to the point motion velocity field.
Definition at line 94 of file velocityMotionSolver.H.
References velocityMotionSolver::pointMotionU_.
|
inline |
Return const reference to the point motion velocity field.
Definition at line 100 of file velocityMotionSolver.H.
References velocityMotionSolver::pointMotionU_.
|
virtual |
Update local data for geometry changes.
Implements motionSolver.
Definition at line 71 of file velocityMotionSolver.C.
|
virtual |
Update corresponding to the given map.
Implements motionSolver.
Reimplemented in velocityLaplacianFvMotionSolver.
Definition at line 77 of file velocityMotionSolver.C.
Referenced by velocityLaplacianFvMotionSolver::topoChange().

|
virtual |
Update from another mesh using the given map.
Implements motionSolver.
Reimplemented in velocityLaplacianFvMotionSolver.
Definition at line 83 of file velocityMotionSolver.C.
References Foam::Zero.
Referenced by velocityLaplacianFvMotionSolver::mapMesh().

|
virtual |
Update corresponding to the given distribution map.
Implements motionSolver.
Definition at line 90 of file velocityMotionSolver.C.
|
delete |
Disallow default bitwise assignment.
|
mutableprotected |
Point motion field.
Definition at line 63 of file velocityMotionSolver.H.
Referenced by velocityMotionSolver::pointMotionU().