initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / utilities / mesh / conversion / starToFoam / coupledFacePair.H
blob54d3576f31fdb490d4306a8dbce45b48080eaae9
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 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
19     for more details.
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
25 Class
26     Foam::coupledFacePair
28 Description
29     Data associated with a pair of coupled faces
31 SourceFiles
32     coupledFacePair.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef coupledFacePair_H
37 #define coupledFacePair_H
39 #include "label.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                            Class coupledFacePair Declaration
48 \*---------------------------------------------------------------------------*/
50 class coupledFacePair
52     // Private data
54         //- STAR couple ID
55         label coupleID_;
57         //- Master cell (lower cell label)
58         label masterCellID_;
60         //- Master face (lower cell label)
61         label masterFaceID_;
63         //- Slave cell (higher cell label)
64         label slaveCellID_;
66         //- Slave face (higher cell label)
67         label slaveFaceID_;
69         //- Integral or arbitrary flag
70         bool integralMatch_;
73 public:
76     // Constructors
78         //- Construct from components
79         coupledFacePair
80         (
81             const label coupleNo,              // STAR couple ID
82             const label mC, const label mF,    // master cell and face
83             const label sC, const label sF,    // slave cell and face
84             const label integral
85         );
88     // Member Functions
90         //- Return STAR couple ID
91         label coupleID() const
92         {
93             return coupleID_;
94         }
96         //- Return master cell
97         label masterCell() const
98         {
99             return masterCellID_;
100         }
102         //- Return master face
103         label masterFace() const
104         {
105             return masterFaceID_;
106         }
108         //- Return slave cell
109         label slaveCell() const
110         {
111             return slaveCellID_;
112         }
114         //- Return slave face
115         label slaveFace() const
116         {
117             return slaveFaceID_;
118         }
120         //- Is this an integral match?
121         bool integralMatch() const
122         {
123             return integralMatch_;
124         }
126     // IOstream Operators
128         friend Ostream& operator<<(Ostream&, const coupledFacePair&);
132 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 } // End namespace Foam
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138 #endif
140 // ************************************************************************* //