1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd.
7 -------------------------------------------------------------------------------
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
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/>.
32 \*---------------------------------------------------------------------------*/
37 #include "sampledSet.H"
38 #include "DynamicList.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 // Forward declaration of classes
46 class passiveParticle;
47 template<class Type> class Particle;
49 /*---------------------------------------------------------------------------*\
50 Class curveSet Declaration
51 \*---------------------------------------------------------------------------*/
60 List<point> sampleCoords_;
63 // Private Member Functions
65 //- Sample till hits boundary. Called with singleParticle at position
66 // inbetween sampleCoords_[sampleI] and sampleCoords_[sampleI+1].
67 // Returns false if end of samples reached.
70 Particle<passiveParticle>& singleParticle,
72 DynamicList<point>& samplingPts,
73 DynamicList<label>& samplingCells,
74 DynamicList<label>& samplingFaces,
75 DynamicList<scalar>& samplingCurveDist
78 //- Samples all point in sampleCoords_
79 // samplingSegments contains segmentNo for each sample.
82 DynamicList<point>& samplingPts,
83 DynamicList<label>& samplingCells,
84 DynamicList<label>& samplingFaces,
85 DynamicList<label>& samplingSegments,
86 DynamicList<scalar>& samplingCurveDist
89 //- Uses calcSamples to obtain samples. Copies them into *this.
95 //- Runtime type information
101 //- Construct from components
105 const polyMesh& mesh,
106 meshSearch& searchEngine,
108 const List<point>& samplePoints
111 //- Construct from dictionary
115 const polyMesh& mesh,
116 meshSearch& searchEngine,
117 const dictionary& dict
128 //- Get reference point
129 virtual point getRefPoint(const List<point>&) const;
133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
135 } // End namespace Foam
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
141 // ************************************************************************* //