ENH: RASModel.C: clipping input to log
[OpenFOAM-1.7.x.git] / src / sampling / sampledSet / curve / curveSet.H
blob0a87d4a8fdca8bb17d5d05eeac9509bb85723e32
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2010 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
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 Class
25     Foam::curveSet
27 Description
29 SourceFiles
30     curveSet.C
32 \*---------------------------------------------------------------------------*/
34 #ifndef curveSet_H
35 #define curveSet_H
37 #include "sampledSet.H"
38 #include "DynamicList.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 // Forward declaration of classes
46 class passiveParticle;
47 template<class Type> class Particle;
49 /*---------------------------------------------------------------------------*\
50                            Class curveSet Declaration
51 \*---------------------------------------------------------------------------*/
53 class curveSet
55     public sampledSet
57     // Private data
59         //- sampling points
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.
68         bool trackToBoundary
69         (
70             Particle<passiveParticle>& singleParticle,
71             label& sampleI,
72             DynamicList<point>& samplingPts,
73             DynamicList<label>& samplingCells,
74             DynamicList<label>& samplingFaces,
75             DynamicList<scalar>& samplingCurveDist
76         ) const;
78         //- Samples all point in sampleCoords_
79         //  samplingSegments contains segmentNo for each sample.
80         void calcSamples
81         (
82             DynamicList<point>& samplingPts,
83             DynamicList<label>& samplingCells,
84             DynamicList<label>& samplingFaces,
85             DynamicList<label>& samplingSegments,
86             DynamicList<scalar>& samplingCurveDist
87         ) const;
89         //- Uses calcSamples to obtain samples. Copies them into *this.
90         void genSamples();
93 public:
95     //- Runtime type information
96     TypeName("curve");
99     // Constructors
101         //- Construct from components
102         curveSet
103         (
104             const word& name,
105             const polyMesh& mesh,
106             meshSearch& searchEngine,
107             const word& axis,
108             const List<point>& samplePoints
109         );
111         //- Construct from dictionary
112         curveSet
113         (
114             const word& name,
115             const polyMesh& mesh,
116             meshSearch& searchEngine,
117             const dictionary& dict
118         );
121     // Destructor
123         virtual ~curveSet();
126     // Member Functions
128         //- Get reference point
129         virtual point getRefPoint(const List<point>&) const;
133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
135 } // End namespace Foam
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
139 #endif
141 // ************************************************************************* //