Files
openfoam/src/fvMotionSolver/motionDiffusivity/inverseDistance/inverseDistanceDiffusivity.H

109 lines
3.1 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2010 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 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::inverseDistanceDiffusivity
Description
Inverse distance to the given patches motion diffusivity.
SourceFiles
inverseDistanceDiffusivity.C
\*---------------------------------------------------------------------------*/
#ifndef inverseDistanceDiffusivity_H
#define inverseDistanceDiffusivity_H
#include "uniformDiffusivity.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class inverseDistanceDiffusivity Declaration
\*---------------------------------------------------------------------------*/
class inverseDistanceDiffusivity
:
public uniformDiffusivity
{
// Private data
//- Patches selected to base the distance on
// These can contain regular expressions and the actual patch names
// will be searched for.
wordList patchNames_;
// Private Member Functions
//- Return patch-cell-centre distance field
tmp<scalarField> y() const;
//- Disallow default bitwise copy construct
inverseDistanceDiffusivity(const inverseDistanceDiffusivity&);
//- Disallow default bitwise assignment
void operator=(const inverseDistanceDiffusivity&);
public:
//- Runtime type information
TypeName("inverseDistance");
// Constructors
//- Construct for the given fvMotionSolver and data Istream
inverseDistanceDiffusivity
(
const fvMotionSolver& mSolver,
Istream& mdData
);
//- Destructor
virtual ~inverseDistanceDiffusivity();
// Member Functions
//- Correct the motion diffusivity
virtual void correct();
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //