/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011 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::SFCDLimiter
Group
grpFvLimitedSurfaceInterpolationSchemes
Description
Class with limiter function which returns the limiter for the
SFCD differencing scheme based on phict obtained from the LimiterFunc
class.
Used in conjunction with the template class LimitedScheme.
SourceFiles
SFCD.C
\*---------------------------------------------------------------------------*/
#ifndef SFCD_H
#define SFCD_H
#include "vector.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class SFCDLimiter Declaration
\*---------------------------------------------------------------------------*/
template
class SFCDLimiter
:
public LimiterFunc
{
public:
SFCDLimiter(Istream&)
{}
scalar limiter
(
const scalar cdWeight,
const scalar faceFlux,
const typename LimiterFunc::phiType& phiP,
const typename LimiterFunc::phiType& phiN,
const typename LimiterFunc::gradPhiType& gradcP,
const typename LimiterFunc::gradPhiType& gradcN,
const vector& d
) const
{
scalar phict = LimiterFunc::phict
(
faceFlux, phiP, phiN, gradcP, gradcN, d
);
scalar limitPhict = clamp(phict, scalar(0), scalar(0.5));
return limitPhict/(1 - limitPhict);
}
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //