BUG: cloudSet.C: force early construction of tetBasePtIs to avoid demand-driven comms
[OpenFOAM-2.0.x.git] / src / sampling / sampledSurface / isoSurface / sampledIsoSurface.H
blobcebc201aafdbe66fe6d38013cbc4e75678ba4372
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 Class
25     Foam::sampledIsoSurface
27 Description
28     A sampledSurface defined by a surface of iso value. Always triangulated.
29     To be used in sampleSurfaces / functionObjects. Recalculates iso surface
30     only if time changes.
32 SourceFiles
33     sampledIsoSurface.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef sampledIsoSurface_H
38 #define sampledIsoSurface_H
40 #include "isoSurface.H"
41 #include "sampledSurface.H"
42 #include "ZoneIDs.H"
43 #include "fvMeshSubset.H"
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 namespace Foam
50 /*---------------------------------------------------------------------------*\
51                        Class sampledIsoSurface Declaration
52 \*---------------------------------------------------------------------------*/
54 class sampledIsoSurface
56     public sampledSurface
58     // Private data
60         //- Field to get isoSurface of
61         const word isoField_;
63         //- iso value
64         const scalar isoVal_;
66         //- Merge tolerance
67         const scalar mergeTol_;
69         //- Whether to coarse
70         const Switch regularise_;
72         //- Whether to recalculate cell values as average of point values
73         const Switch average_;
75         //- zone name/index (if restricted to zones)
76         mutable cellZoneID zoneID_;
78         //- for zones: patch to put exposed faces into
79         mutable word exposedPatchName_;
81         mutable autoPtr<isoSurface> surfPtr_;
83         //- triangles converted to faceList
84         mutable autoPtr<faceList> facesPtr_;
87         // Recreated for every isoSurface
89             //- Time at last call, also track if surface needs an update
90             mutable label prevTimeIndex_;
92             //- Cached volfield
93             mutable autoPtr<volScalarField> storedVolFieldPtr_;
94             mutable const volScalarField* volFieldPtr_;
96             //- Cached pointfield
97             mutable autoPtr<pointScalarField> storedPointFieldPtr_;
98             mutable const pointScalarField* pointFieldPtr_;
100             // And on subsetted mesh
102                 //- Cached submesh
103                 mutable autoPtr<fvMeshSubset> subMeshPtr_;
105                 //- Cached volfield
106                 mutable autoPtr<volScalarField> storedVolSubFieldPtr_;
107                 mutable const volScalarField* volSubFieldPtr_;
109                 //- Cached pointfield
110                 mutable autoPtr<pointScalarField> storedPointSubFieldPtr_;
111                 mutable const pointScalarField* pointSubFieldPtr_;
115     // Private Member Functions
117         //- Get fields needed to recreate iso surface.
118         void getIsoFields() const;
120         //- Create iso surface (if time has changed)
121         //  Do nothing (and return false) if no update was needed
122         bool updateGeometry() const;
124         //- sample field on faces
125         template <class Type>
126         tmp<Field<Type> > sampleField
127         (
128             const GeometricField<Type, fvPatchField, volMesh>& vField
129         ) const;
132         template <class Type>
133         tmp<Field<Type> >
134         interpolateField(const interpolation<Type>&) const;
137 public:
139     //- Runtime type information
140     TypeName("sampledIsoSurface");
143     // Constructors
145         //- Construct from dictionary
146         sampledIsoSurface
147         (
148             const word& name,
149             const polyMesh& mesh,
150             const dictionary& dict
151         );
154     //- Destructor
155     virtual ~sampledIsoSurface();
158     // Member Functions
160         //- Does the surface need an update?
161         virtual bool needsUpdate() const;
163         //- Mark the surface as needing an update.
164         //  May also free up unneeded data.
165         //  Return false if surface was already marked as expired.
166         virtual bool expire();
168         //- Update the surface as required.
169         //  Do nothing (and return false) if no update was needed
170         virtual bool update();
173         //- Points of surface
174         virtual const pointField& points() const
175         {
176             return surface().points();
177         }
179         //- Faces of surface
180         virtual const faceList& faces() const
181         {
182             if (facesPtr_.empty())
183             {
184                 const triSurface& s = surface();
186                 facesPtr_.reset(new faceList(s.size()));
188                 forAll(s, i)
189                 {
190                     facesPtr_()[i] = s[i].triFaceFace();
191                 }
192             }
193             return facesPtr_;
194         }
197         const isoSurface& surface() const
198         {
199             return surfPtr_();
200         }
202         //- Lookup or read isoField. Sets volFieldPtr_ and pointFieldPtr_.
203         void getIsoField();
206         //- sample field on surface
207         virtual tmp<scalarField> sample
208         (
209             const volScalarField&
210         ) const;
212         //- sample field on surface
213         virtual tmp<vectorField> sample
214         (
215             const volVectorField&
216         ) const;
218         //- sample field on surface
219         virtual tmp<sphericalTensorField> sample
220         (
221             const volSphericalTensorField&
222         ) const;
224         //- sample field on surface
225         virtual tmp<symmTensorField> sample
226         (
227             const volSymmTensorField&
228         ) const;
230         //- sample field on surface
231         virtual tmp<tensorField> sample
232         (
233             const volTensorField&
234         ) const;
237         //- interpolate field on surface
238         virtual tmp<scalarField> interpolate
239         (
240             const interpolation<scalar>&
241         ) const;
243         //- interpolate field on surface
244         virtual tmp<vectorField> interpolate
245         (
246             const interpolation<vector>&
247         ) const;
249         //- interpolate field on surface
250         virtual tmp<sphericalTensorField> interpolate
251         (
252             const interpolation<sphericalTensor>&
253         ) const;
255         //- interpolate field on surface
256         virtual tmp<symmTensorField> interpolate
257         (
258             const interpolation<symmTensor>&
259         ) const;
261         //- interpolate field on surface
262         virtual tmp<tensorField> interpolate
263         (
264             const interpolation<tensor>&
265         ) const;
267         //- Write
268         virtual void print(Ostream&) const;
272 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
274 } // End namespace Foam
276 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
278 #ifdef NoRepository
279 #   include "sampledIsoSurfaceTemplates.C"
280 #endif
282 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
284 #endif
286 // ************************************************************************* //