ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / OpenFOAM / algorithms / MeshWave / MeshWave.C
blob5bc898490975d947bc253e3ba47991c5be0413d0
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 \*---------------------------------------------------------------------------*/
26 #include "MeshWave.H"
27 #include "polyMesh.H"
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 template <class Type, class TrackingData>
33 Foam::label Foam::MeshWave<Type, TrackingData>::dummyTrackData_ = 12345;
36 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
38 // Iterate, propagating changedFacesInfo across mesh, until no change (or
39 // maxIter reached).
40 template <class Type, class TrackingData>
41 Foam::MeshWave<Type, TrackingData>::MeshWave
43     const polyMesh& mesh,
44     const labelList& changedFaces,
45     const List<Type>& changedFacesInfo,
46     const label maxIter,
47     TrackingData& td
50     allFaceInfo_(mesh.nFaces()),
51     allCellInfo_(mesh.nCells()),
52     calc_
53     (
54         mesh,
55         changedFaces,
56         changedFacesInfo,
57         allFaceInfo_,
58         allCellInfo_,
59         maxIter,
60         td
61     )
65 // Iterate, propagating changedFacesInfo across mesh, until no change (or
66 // maxIter reached). Initial cell values specified.
67 template <class Type, class TrackingData>
68 Foam::MeshWave<Type, TrackingData>::MeshWave
70     const polyMesh& mesh,
71     const labelList& changedFaces,
72     const List<Type>& changedFacesInfo,
73     const List<Type>& allCellInfo,
74     const label maxIter,
75     TrackingData& td
78     allFaceInfo_(mesh.nFaces()),
79     allCellInfo_(allCellInfo),
80     calc_
81     (
82         mesh,
83         changedFaces,
84         changedFacesInfo,
85         allFaceInfo_,
86         allCellInfo_,
87         maxIter,
88         td
89     )
93 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
96 // ************************************************************************* //