ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / OpenFOAM / meshes / lduMesh / lduMesh.H
blob0c3314452ad08ee8523e6d84c2508cab15d8b01f
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::lduMesh
27 Description
28     Abstract base class for meshes which provide LDU addressing for the
29     construction of lduMatrix and LDU-solvers.
31 \*---------------------------------------------------------------------------*/
33 #ifndef lduMesh_H
34 #define lduMesh_H
36 #include "lduAddressing.H"
37 #include "lduInterfacePtrsList.H"
38 #include "typeInfo.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 class objectRegistry;
47 /*---------------------------------------------------------------------------*\
48                            Class lduMesh Declaration
49 \*---------------------------------------------------------------------------*/
51 class lduMesh
54 public:
56     //- Runtime type information
57     TypeName("lduMesh");
60     // Constructors
62     //- Destructor
63     virtual ~lduMesh()
64     {}
67     // Member Functions
69         // Access
71             //- Return the object registry
72             virtual const objectRegistry& thisDb() const;
74             //- Return ldu addressing
75             virtual const lduAddressing& lduAddr() const = 0;
77             //- Return a list of pointers for each patch
78             //  with only those pointing to interfaces being set
79             virtual lduInterfacePtrsList interfaces() const = 0;
83 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
85 } // End namespace Foam
87 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
89 #endif
91 // ************************************************************************* //