intersection with triangle plane for miss
[OpenFOAM-1.5.x.git] / applications / utilities / mesh / generation / blockMesh / block.H
blob5afd7aecf20b9c2566ee11c5f18ddb5b4f54ecae
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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::block
28 Description
29     creates a single block of cells from point coordinates,
30     numbers of cells in each direction and expansion ratio
32 SourceFiles
33     block.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef block_H
38 #define block_H
40 #include "pointField.H"
41 #include "labelList.H"
43 #include "blockDescriptor.H"
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 namespace Foam
50 class Istream;
51 class Ostream;
53 /*---------------------------------------------------------------------------*\
54                            Class block Declaration
55 \*---------------------------------------------------------------------------*/
57 class block
59     // Private data
61         //- block definition
62         blockDescriptor blockDef_;
64         //- list of vertices
65         pointField vertices_;
67         //- list of cells
68         labelListList cells_;
70         //- boundary patches
71         labelListListList boundaryPatches_;
74     // private member functions
76         label vtxLabel(label i, label j, label k);
78         void blockPoints();
80         void blockCells();
82         void blockBoundary();
85 public:
87     // Constructors
89         //- Construct from the block definition
90         block(const blockDescriptor&);
92         //- Clone
93         autoPtr<block> clone() const
94         {
95             notImplemented("block::clone()");
96             return autoPtr<block>(NULL);
97         }
100     // Member Functions
102         // Access
104             const blockDescriptor& blockDef() const;
105             const pointField& points() const;
106             const labelListList& cells() const;
107             const labelListListList& boundaryPatches() const;
110     // Ostream Operator
112         friend Ostream& operator<<(Ostream&, const block&);
116 inline Istream& operator>>(Istream& is, block*)
118     notImplemented("Istream& operator>>(Istream& is, block*)");
119     return is;
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 } // End namespace Foam
127 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
129 #endif
131 // ************************************************************************* //