/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
-------------------------------------------------------------------------------
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 .
Class
Foam::PhiScheme
Group
grpFvLimitedSurfaceInterpolationSchemes
Description
Class to create the weighting-factors based on the face-flux.
The particular differencing scheme class is supplied as a template
argument, the weight function of which is called by the weight function
of this class for the internal faces as well as faces of coupled
patches (e.g. processor-processor patches). The weight function is
supplied with the central-differencing weighting factor, the face-flux,
the face neighbour cell values and the face area.
This code organisation is both neat and efficient, allowing for
convenient implementation of new schemes to run on parallelised cases.
SourceFiles
PhiScheme.C
\*---------------------------------------------------------------------------*/
#ifndef PhiScheme_H
#define PhiScheme_H
#include "limitedSurfaceInterpolationScheme.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class PhiScheme Declaration
\*---------------------------------------------------------------------------*/
template
class PhiScheme
:
public limitedSurfaceInterpolationScheme,
public PhiLimiter
{
// Private Member Functions
//- No copy construct
PhiScheme(const PhiScheme&) = delete;
//- No copy assignment
void operator=(const PhiScheme&) = delete;
public:
//- Runtime type information
TypeName("PhiScheme");
// Constructors
//- Construct from mesh, faceFlux and blendingFactor
PhiScheme
(
const fvMesh& mesh,
const surfaceScalarField& faceFlux,
const PhiLimiter& weight
)
:
limitedSurfaceInterpolationScheme(mesh, faceFlux),
PhiLimiter(weight)
{}
//- Construct from mesh and Istream.
// The name of the flux field is read from the Istream and looked-up
// from the mesh objectRegistry
PhiScheme
(
const fvMesh& mesh,
Istream& is
)
:
limitedSurfaceInterpolationScheme(mesh, is),
PhiLimiter(is)
{}
//- Construct from mesh, faceFlux and Istream
PhiScheme
(
const fvMesh& mesh,
const surfaceScalarField& faceFlux,
Istream& is
)
:
limitedSurfaceInterpolationScheme(mesh, faceFlux),
PhiLimiter(is)
{}
// Member Functions
//- Return the interpolation weighting factors
virtual tmp limiter
(
const GeometricField&
) const;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Add the patch constructor functions to the hash tables
#define makePhiSurfaceInterpolationScheme(SS, WEIGHT, TYPE) \
\
typedef PhiScheme Phischeme##WEIGHT_; \
defineTemplateTypeNameAndDebugWithName(Phischeme##WEIGHT_, #SS, 0); \
\
surfaceInterpolationScheme::addMeshConstructorToTable \
> add##SS##TYPE##MeshConstructorToTable_; \
\
surfaceInterpolationScheme::addMeshFluxConstructorToTable \
> add##SS##TYPE##MeshFluxConstructorToTable_; \
\
limitedSurfaceInterpolationScheme::addMeshConstructorToTable \
> add##SS##TYPE##MeshConstructorToLimitedTable_; \
\
limitedSurfaceInterpolationScheme::addMeshFluxConstructorToTable \
> add##SS##TYPE##MeshFluxConstructorToLimitedTable_;
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
#include "PhiScheme.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //