Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 #ifndef sampledSurfaces_H
00038 #define sampledSurfaces_H
00039
00040 #include <sampling/sampledSurface.H>
00041 #include <sampling/surfaceWriter.H>
00042 #include <finiteVolume/volFieldsFwd.H>
00043
00044
00045
00046 namespace Foam
00047 {
00048
00049 class fvMesh;
00050 class dictionary;
00051
00052
00053
00054
00055
00056 class sampledSurfaces
00057 :
00058 public PtrList<sampledSurface>
00059 {
00060
00061
00062
00063 template<class Type>
00064 class fieldGroup
00065 :
00066 public DynamicList<word>
00067 {
00068 public:
00069
00070
00071 autoPtr< surfaceWriter<Type> > formatter;
00072
00073
00074 fieldGroup()
00075 :
00076 DynamicList<word>(0),
00077 formatter(NULL)
00078 {}
00079
00080
00081 fieldGroup(const word& writeFormat)
00082 :
00083 DynamicList<word>(0),
00084 formatter(surfaceWriter<Type>::New(writeFormat))
00085 {}
00086
00087
00088
00089 fieldGroup
00090 (
00091 const word& writeFormat,
00092 const wordList& fieldNames
00093 )
00094 :
00095 DynamicList<word>(fieldNames),
00096 formatter(surfaceWriter<Type>::New(writeFormat))
00097 {}
00098
00099 void reset(const label nElem)
00100 {
00101 formatter.clear();
00102 DynamicList<word>::setCapacity(nElem);
00103 DynamicList<word>::clear();
00104 }
00105
00106 void operator=(const word& writeFormat)
00107 {
00108 formatter = surfaceWriter<Type>::New(writeFormat);
00109 }
00110
00111 void operator=(const wordList& fieldNames)
00112 {
00113 DynamicList<word>::operator=(fieldNames);
00114 }
00115 };
00116
00117
00118
00119 class mergeInfo
00120 {
00121 public:
00122 pointField points;
00123 faceList faces;
00124 labelList pointsMap;
00125
00126
00127 void clear()
00128 {
00129 points.clear();
00130 faces.clear();
00131 pointsMap.clear();
00132 }
00133 };
00134
00135
00136
00137
00138
00139 static bool verbose_;
00140
00141
00142 static scalar mergeTol_;
00143
00144
00145
00146
00147
00148 const word name_;
00149
00150
00151 const fvMesh& mesh_;
00152
00153
00154 const bool loadFromFiles_;
00155
00156
00157 fileName outputPath_;
00158
00159
00160
00161
00162
00163 wordList fieldNames_;
00164
00165
00166 word interpolationScheme_;
00167
00168
00169 word writeFormat_;
00170
00171
00172
00173
00174
00175 List<mergeInfo> mergeList_;
00176
00177
00178
00179
00180
00181 autoPtr< surfaceWriter<bool> > genericFormatter_;
00182
00183
00184 fieldGroup<scalar> scalarFields_;
00185 fieldGroup<vector> vectorFields_;
00186 fieldGroup<sphericalTensor> sphericalTensorFields_;
00187 fieldGroup<symmTensor> symmTensorFields_;
00188 fieldGroup<tensor> tensorFields_;
00189
00190
00191
00192
00193
00194 label classifyFieldTypes();
00195
00196
00197 void writeGeometry() const;
00198
00199
00200 template<class Type>
00201 void sampleAndWrite
00202 (
00203 const GeometricField<Type, fvPatchField, volMesh>&,
00204 const surfaceWriter<Type>& formatter
00205 );
00206
00207
00208 template <class Type>
00209 void sampleAndWrite(fieldGroup<Type>&);
00210
00211
00212 sampledSurfaces(const sampledSurfaces&);
00213 void operator=(const sampledSurfaces&);
00214
00215
00216 public:
00217
00218
00219 TypeName("surfaces");
00220
00221
00222
00223
00224
00225
00226 sampledSurfaces
00227 (
00228 const word& name,
00229 const objectRegistry&,
00230 const dictionary&,
00231 const bool loadFromFiles = false
00232 );
00233
00234
00235
00236
00237 virtual ~sampledSurfaces();
00238
00239
00240
00241
00242
00243 virtual bool needsUpdate() const;
00244
00245
00246
00247
00248 virtual bool expire();
00249
00250
00251
00252 virtual bool update();
00253
00254
00255
00256 virtual const word& name() const
00257 {
00258 return name_;
00259 }
00260
00261
00262 void verbose(const bool verbosity = true);
00263
00264
00265 virtual void execute();
00266
00267
00268 virtual void end();
00269
00270
00271 virtual void write();
00272
00273
00274 virtual void read(const dictionary&);
00275
00276
00277 virtual void updateMesh(const mapPolyMesh&);
00278
00279
00280 virtual void movePoints(const pointField&);
00281
00282
00283 virtual void readUpdate(const polyMesh::readUpdateState state);
00284
00285 };
00286
00287
00288
00289
00290 }
00291
00292
00293
00294 #ifdef NoRepository
00295 # include "sampledSurfacesTemplates.C"
00296 #endif
00297
00298
00299
00300 #endif
00301
00302