1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright held by original author
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
11 OpenFOAM is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by the
13 Free Software Foundation; either version 2 of the License, or (at your
14 option) any later version.
16 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM; if not, write to the Free Software Foundation,
23 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
29 Namespace for limiting functions
33 Foam::limitFuncs::LimitFuncs
36 Class to create NVD/TVD limited weighting-factors.
38 The particular differencing scheme class is supplied as a template
39 argument, the weight function of which is called by the weight function
40 of this class for the internal faces as well as faces of coupled
41 patches (e.g. processor-processor patches). The weight function is
42 supplied the central-differencing weighting factor, the face-flux, the
43 cell and face gradients (from which the normalised variable
44 distribution may be created) and the cell centre distance.
46 This code organisation is both neat and efficient, allowing for
47 convenient implementation of new schemes to run on parallelised cases.
52 \*---------------------------------------------------------------------------*/
57 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
65 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
75 inline tmp<GeometricField<Type, fvPatchField, volMesh> > operator()
77 const GeometricField<Type, fvPatchField, volMesh>& phi
93 inline tmp<volScalarField> operator()
95 const GeometricField<Type, fvPatchField, volMesh>&
108 inline tmp<volScalarField> operator()
110 const GeometricField<Type, fvPatchField, volMesh>&
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 } // End namespace limitFuncs
118 } // End namespace Foam
120 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 # include "LimitFuncs.C"
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
130 // ************************************************************************* //