initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / sampling / sampledSet / cloud / cloudSet.H
blobacbb820f8423b08c49fd1a499d6f6b86aa9b85df
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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::cloudSet
28 Description
30 SourceFiles
31     cloudSet.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef cloudSet_H
36 #define cloudSet_H
38 #include "sampledSet.H"
39 #include "DynamicList.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 // Forward declaration of classes
47 class passiveParticle;
48 template<class Type> class particle;
50 /*---------------------------------------------------------------------------*\
51                            Class cloudSet Declaration
52 \*---------------------------------------------------------------------------*/
54 class cloudSet
56     public sampledSet
58     // Private data
60         //- Sampling points
61         List<point> sampleCoords_;
64     // Private Member Functions
66         //- Samples all points in sampleCoords.
67         void calcSamples
68         (
69             DynamicList<point>& samplingPts,
70             DynamicList<label>& samplingCells,
71             DynamicList<label>& samplingFaces,
72             DynamicList<label>& samplingSegments,
73             DynamicList<scalar>& samplingCurveDist
74         ) const;
76         //- Uses calcSamples to obtain samples. Copies them into *this.
77         void genSamples();
79 public:
81     //- Runtime type information
82     TypeName("cloud");
85     // Constructors
87         //- Construct from components
88         cloudSet
89         (
90             const word& name,
91             const polyMesh& mesh,
92             meshSearch& searchEngine,
93             const word& axis,
94             const List<point>& sampleCoords
95         );
97         //- Construct from dictionary
98         cloudSet
99         (
100             const word& name,
101             const polyMesh& mesh,
102             meshSearch& searchEngine,
103             const dictionary& dict
104         );
107     // Destructor
109         virtual ~cloudSet();
112     // Member Functions
114         //- Get reference point
115         virtual point getRefPoint(const List<point>&) const;
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
121 } // End namespace Foam
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 #endif
127 // ************************************************************************* //