OpenFOAM logo
Open Source CFD Toolkit

PhiScheme.H File Reference


Detailed Description

View PhiScheme.H
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
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 the
central-differencing weighting factor, the face-flux, the cell and face
gradients (from which the normalised variable distribution may be created)
and the cell centre distance.

This code organisation is both neat and efficient, allowing for convenient
implementation of new schemes to run on parallelised cases.

Source files

Definition in file PhiScheme.H.

Go to the source code of this file.

Namespaces

namespace  Foam

Classes

class  PhiScheme

Defines

#define makePhiSurfaceInterpolationScheme(SS, WEIGHT)


Define Documentation

#define makePhiSurfaceInterpolationScheme SS,
WEIGHT   ) 
 

Value:

\
typedef PhiScheme<WEIGHT> Phischeme##WEIGHT_;                                  \
defineTemplateTypeNameAndDebugWithName(Phischeme##WEIGHT_, #SS, 0);            \
                                                                               \
surfaceInterpolationScheme<vector>::addMeshConstructorToTable                  \
<PhiScheme<WEIGHT> > add##SS##vectorMeshConstructorToTable_;                   \
                                                                               \
surfaceInterpolationScheme<vector>::addMeshFluxConstructorToTable              \
<PhiScheme<WEIGHT> > add##SS##vectorMeshFluxConstructorToTable_;               \
                                                                               \
limitedSurfaceInterpolationScheme<vector>::addMeshConstructorToTable           \
<PhiScheme<WEIGHT> > add##SS##vectorMeshConstructorToLimitedTable_;            \
                                                                               \
limitedSurfaceInterpolationScheme<vector>::addMeshFluxConstructorToTable       \
<PhiScheme<WEIGHT> > add##SS##vectorMeshFluxConstructorToLimitedTable_;

Definition at line 149 of file PhiScheme.H.

For further information go to www.openfoam.org