Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / matrices / lduMatrix / lduAddressing / lduInterface / lduInterface.H
blob0ffe3c256e8353d7491d3ac3c806e2d963d64040
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::lduInterface
27 Description
28     An abstract base class for implicitly-coupled interfaces
29     e.g. processor and cyclic patches.
31 SourceFiles
32     lduInterface.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef lduInterface_H
37 #define lduInterface_H
39 #include "labelField.H"
40 #include "typeInfo.H"
41 #include "Pstream.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 /*---------------------------------------------------------------------------*\
51                      Class lduInterface Declaration
52 \*---------------------------------------------------------------------------*/
54 class lduInterface
56     // Private Member Functions
58         //- Disallow default bitwise copy construct
59         lduInterface(const lduInterface&);
61         //- Disallow default bitwise assignment
62         void operator=(const lduInterface&);
65 public:
67     //- Runtime type information
68     TypeName("lduInterface");
71     // Constructors
73         //- Construct null
74         lduInterface()
75         {}
78     //- Destructor
79     virtual ~lduInterface();
82     // Member Functions
84         // Access
86             //- Return faceCell addressing
87             virtual const labelUList& faceCells() const = 0;
90         // Interface transfer functions
92             //- Return the values of the given internal data adjacent to
93             //  the interface as a field
94             virtual tmp<labelField> interfaceInternalField
95             (
96                 const labelUList& internalData
97             ) const = 0;
99             //- Initialise transfer of internal field adjacent to the interface
100             virtual void initInternalFieldTransfer
101             (
102                 const Pstream::commsTypes commsType,
103                 const labelUList& iF
104             ) const
105             {}
107             //- Transfer and return internal field adjacent to the interface
108             virtual tmp<labelField> internalFieldTransfer
109             (
110                 const Pstream::commsTypes commsType,
111                 const labelUList& iF
112             ) const = 0;
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
118 } // End namespace Foam
120 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
122 #endif
124 // ************************************************************************* //