mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
- can now use dictionary substitutions and regular expressions in
system/fvSolution
- foamUpgradeFvSolution application to convert system/fvSolution
(with -test option)
motion solver syntax left as-is.
138 lines
3.9 KiB
C++
138 lines
3.9 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2008 OpenCFD Ltd.
|
|
\\/ 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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
Class
|
|
Foam::velocityComponentLaplacianFvMotionSolver
|
|
|
|
Description
|
|
Mesh motion solver for an fvMesh. Based on solving the cell-centre
|
|
Laplacian for the given component of the motion velocity.
|
|
|
|
SourceFiles
|
|
velocityComponentLaplacianFvMotionSolver.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef velocityComponentLaplacianFvMotionSolver_H
|
|
#define velocityComponentLaplacianFvMotionSolver_H
|
|
|
|
#include "fvMotionSolver.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// Forward class declarations
|
|
class motionDiffusivity;
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class velocityComponentLaplacianFvMotionSolver Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class velocityComponentLaplacianFvMotionSolver
|
|
:
|
|
public fvMotionSolver
|
|
{
|
|
// Private data
|
|
|
|
//- The component name to solve for
|
|
word cmptName_;
|
|
|
|
//- The component to solve for
|
|
direction cmpt_;
|
|
|
|
//- Point motion field
|
|
mutable pointScalarField pointMotionU_;
|
|
|
|
//- Cell-centre motion field
|
|
mutable volScalarField cellMotionU_;
|
|
|
|
//- Diffusivity used to control the motion
|
|
autoPtr<motionDiffusivity> diffusivityPtr_;
|
|
|
|
|
|
// Private Member Functions
|
|
|
|
//- Disallow default bitwise copy construct
|
|
velocityComponentLaplacianFvMotionSolver
|
|
(
|
|
const velocityComponentLaplacianFvMotionSolver&
|
|
);
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator=(const velocityComponentLaplacianFvMotionSolver&);
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("velocityComponentLaplacian");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from polyMesh and data stream (provides component)
|
|
velocityComponentLaplacianFvMotionSolver
|
|
(
|
|
const polyMesh&,
|
|
Istream& msData
|
|
);
|
|
|
|
|
|
// Destructor
|
|
|
|
~velocityComponentLaplacianFvMotionSolver();
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Non-const access to the cellMotionU in order to allow changes
|
|
// to the boundary motion
|
|
volScalarField& cellMotionU()
|
|
{
|
|
return cellMotionU_;
|
|
}
|
|
|
|
//- Return point location obtained from the current motion field
|
|
virtual tmp<pointField> curPoints() const;
|
|
|
|
//- Solve for motion
|
|
virtual void solve();
|
|
|
|
//- Update topology
|
|
virtual void updateMesh(const mapPolyMesh&);
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|