intersection with triangle plane for miss
[OpenFOAM-1.5.x.git] / applications / utilities / mesh / generation / blockMesh / block.C
blob7ee15c4a6e8c90b4535ddec18a2518afcb32f7ec
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 Description
27 \*---------------------------------------------------------------------------*/
29 #include "error.H"
31 #include "block.H"
33 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
35 namespace Foam
38 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
41 label block::vtxLabel(label a, label b, label c)
43     return (a + b*(blockDef_.n().x() + 1)
44             + c*(blockDef_.n().x() + 1)*(blockDef_.n().y() + 1));
47 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
49 // Construct from description
50 block::block(const blockDescriptor& definition)
52     blockDef_(definition),
53     vertices_
54     (
55         ((blockDef_.n().x() + 1)*(blockDef_.n().y() + 1)*(blockDef_.n().z() + 1))
56     ),
57     cells_
58     (
59         (blockDef_.n().x()*blockDef_.n().y()*blockDef_.n().z())
60     ),
61     boundaryPatches_(6)
63     // create points
64     blockPoints();
66     // generate internal cells
67     blockCells();
69     // generate boundary patches
70     blockBoundary();
74 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
77 const blockDescriptor& block::blockDef() const
79     return blockDef_;
82 const pointField& block::points() const
84     return vertices_;
87 const labelListList& block::cells() const
89     return cells_;
92 const labelListListList& block::boundaryPatches() const
94     return boundaryPatches_;
98 // * * * * * * * * * * * * * * * IOstream Operators  * * * * * * * * * * * * //
100 Ostream& operator<<(Ostream& os, const block& b)
102     os << b.vertices_ << nl
103        << b.cells_ << nl
104        << b.boundaryPatches_ << endl;
106     return os;
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 } // End namespace Foam
114 // ************************************************************************* //