BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / OpenFOAM / matrices / lduMatrix / lduAddressing / lduInterfaceFields / processorLduInterfaceField / processorLduInterfaceField.H
blobb5111933558b9d441cfeaa2d375f0cfff2132e8d
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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::processorLduInterfaceField
27 Description
28     Abstract base class for processor coupled interfaces.
30 SourceFiles
31     processorLduInterfaceField.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef processorLduInterfaceField_H
36 #define processorLduInterfaceField_H
38 #include "primitiveFieldsFwd.H"
39 #include "typeInfo.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                   Class processorLduInterfaceField Declaration
48 \*---------------------------------------------------------------------------*/
50 class processorLduInterfaceField
53 public:
55     //- Runtime type information
56     TypeName("processorLduInterfaceField");
59     // Constructors
61         //- Construct given coupled patch
62         processorLduInterfaceField()
63         {}
66     //- Destructor
67     virtual ~processorLduInterfaceField();
70     // Member Functions
72         // Access
74             //- Return processor number
75             virtual int myProcNo() const = 0;
77             //- Return neigbour processor number
78             virtual int neighbProcNo() const = 0;
80             //- Is the transform required
81             virtual bool doTransform() const = 0;
83             //- Return face transformation tensor
84             virtual const tensorField& forwardT() const = 0;
86             //- Return rank of component for transform
87             virtual int rank() const = 0;
90         //- Transform given patch component field
91         void transformCoupleField
92         (
93             scalarField& f,
94             const direction cmpt
95         ) const;
99 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
101 } // End namespace Foam
103 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 #endif
107 // ************************************************************************* //