decomposeCells.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | cfMesh: A library for mesh generation
4  \\ / O peration |
5  \\ / A nd | Author: Franjo Juretic (franjo.juretic@c-fields.com)
6  \\/ M anipulation | Copyright (C) Creative Fields, Ltd.
7 -------------------------------------------------------------------------------
8 License
9  This file is part of cfMesh.
10 
11  cfMesh 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 3 of the License, or (at your
14  option) any later version.
15 
16  cfMesh 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.
20 
21  You should have received a copy of the GNU General Public License
22  along with cfMesh. If not, see <http://www.gnu.org/licenses/>.
23 
24 Description
25 
26 \*---------------------------------------------------------------------------*/
27 
28 #include "decomposeCells.H"
29 
30 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 
32 namespace Foam
33 {
34 
36 :
37  mesh_(mesh),
38  patchNames_(mesh.boundaries().size()),
39  patchTypes_(mesh.boundaries().size()),
40  newBoundaryFaces_(),
41  newBoundaryPatches_(),
42  facesOfNewCells_()
43 {
44  const PtrList<boundaryPatch>& boundaries = mesh_.boundaries();
45  forAll(boundaries, patchI)
46  {
47  patchNames_[patchI] = boundaries[patchI].patchName();
48  patchTypes_[patchI] = boundaries[patchI].patchType();
49  }
50 }
51 
52 //- Destructor
54 {}
55 
56 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *//
57 
58 } // End namespace Foam
59 
60 // ************************************************************************* //
forAll
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:406
Foam::decomposeCells::patchTypes_
wordList patchTypes_
Definition: decomposeCells.H:56
decomposeCells.H
Foam::polyMeshGen
Definition: polyMeshGen.H:46
Foam::decomposeCells::mesh_
polyMeshGen & mesh_
reference to the mesh
Definition: decomposeCells.H:52
Foam::decomposeCells::patchNames_
wordList patchNames_
new boundary faces
Definition: decomposeCells.H:55
Foam::PtrList
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: List.H:61
Foam::decomposeCells::decomposeCells
decomposeCells(const decomposeCells &)
copy constructor
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
Foam::decomposeCells::~decomposeCells
~decomposeCells()
Destructor.
Definition: decomposeCells.C:53
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::polyMeshGenFaces::boundaries
const PtrList< boundaryPatch > & boundaries() const
ordinary boundaries
Definition: polyMeshGenFacesI.H:111