1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2004-2011 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"
39 #include "passiveParticleCloud.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 /*---------------------------------------------------------------------------*\
47 Class faceOnlySet Declaration
48 \*---------------------------------------------------------------------------*/
63 // Private Member Functions
65 //- Samples from startTrackPt/CellI. Updates particle/samplePt/sampleI
67 // samples in the DynamicLists. Returns false if end of all samples
71 passiveParticle& singleParticle,
72 DynamicList<point>& samplingPts,
73 DynamicList<label>& samplingCells,
74 DynamicList<label>& samplingFaces,
75 DynamicList<scalar>& samplingCurve
78 //- Samples from start_ to end_. samplingSegments contains segmentNo
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
100 //- Construct from components
104 const polyMesh& mesh,
105 meshSearch& searchEngine,
111 //- Construct from dictionary
115 const polyMesh& mesh,
116 meshSearch& searchEngine,
117 const dictionary& dict
122 virtual ~faceOnlySet();
127 const point& start() const
132 const point& end() const
139 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
141 } // End namespace Foam
143 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
147 // ************************************************************************* //