OpenFOAM-4.x/src/dynamicFvMesh/solidBodyMotionFvMesh/solidBodyMotionFvMesh.H
2014-12-10 22:40:10 +00:00

118 lines
3.3 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Class
Foam::solidBodyMotionFvMesh
Description
Solid-body motion of the mesh specified by a run-time selectable
motion function.
SourceFiles
solidBodyMotionFvMesh.C
\*---------------------------------------------------------------------------*/
#ifndef solidBodyMotionFvMesh_H
#define solidBodyMotionFvMesh_H
#include "dynamicFvMesh.H"
#include "dictionary.H"
#include "pointIOField.H"
#include "solidBodyMotionFunction.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class solidBodyMotionFvMesh Declaration
\*---------------------------------------------------------------------------*/
class solidBodyMotionFvMesh
:
public dynamicFvMesh
{
// Private data
//- Dictionary of motion control parameters
const dictionary dynamicMeshCoeffs_;
//- The motion control function
autoPtr<solidBodyMotionFunction> SBMFPtr_;
//- The reference points which are transformed
pointIOField undisplacedPoints_;
//- Points to move when cell zone is supplied
labelList pointIDs_;
//- Flag to indicate whether all cells should move
bool moveAllCells_;
//- Name of velocity field
word UName_;
// Private Member Functions
//- Disallow default bitwise copy construct
solidBodyMotionFvMesh(const solidBodyMotionFvMesh&);
//- Disallow default bitwise assignment
void operator=(const solidBodyMotionFvMesh&);
public:
//- Runtime type information
TypeName("solidBodyMotionFvMesh");
// Constructors
//- Construct from IOobject
solidBodyMotionFvMesh(const IOobject& io);
//- Destructor
~solidBodyMotionFvMesh();
// Member Functions
//- Update the mesh for both mesh motion and topology change
virtual bool update();
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //