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
00038
00039
00040
00041 #ifndef searchableSurface_H
00042 #define searchableSurface_H
00043
00044 #include <OpenFOAM/pointField.H>
00045 #include <OpenFOAM/typeInfo.H>
00046 #include <OpenFOAM/runTimeSelectionTables.H>
00047 #include <meshTools/pointIndexHit.H>
00048 #include <OpenFOAM/linePointRef.H>
00049 #include <OpenFOAM/objectRegistry.H>
00050
00051
00052
00053 namespace Foam
00054 {
00055
00056
00057 class objectRegistry;
00058 class mapDistribute;
00059 class treeBoundBox;
00060
00061
00062
00063
00064
00065 class searchableSurface
00066 :
00067 public regIOobject
00068 {
00069 public:
00070
00071
00072
00073
00074 enum volumeType
00075 {
00076 UNKNOWN = 0,
00077 MIXED = 1,
00078
00079 INSIDE = 2,
00080 OUTSIDE = 3
00081 };
00082
00083 private:
00084
00085
00086
00087 const word name_;
00088
00089
00090
00091
00092
00093 searchableSurface(const searchableSurface&);
00094
00095
00096 void operator=(const searchableSurface&);
00097
00098
00099 public:
00100
00101
00102 TypeName("searchableSurface");
00103
00104
00105
00106
00107 declareRunTimeSelectionTable
00108 (
00109 autoPtr,
00110 searchableSurface,
00111 dict,
00112 (
00113 const IOobject& io,
00114 const dictionary& dict
00115 ),
00116 (io, dict)
00117 );
00118
00119
00120
00121
00122 class iNew
00123 {
00124 IOobject& io_;
00125
00126 public:
00127
00128 iNew(IOobject& io)
00129 :
00130 io_(io)
00131 {}
00132
00133 autoPtr<searchableSurface> operator()(Istream& is) const
00134 {
00135 word surfaceType(is);
00136 word readName(is);
00137 dictionary dict(is);
00138
00139 autoPtr<IOobject> namedIO(io_.clone());
00140 namedIO().rename(readName);
00141 return searchableSurface::New(surfaceType, namedIO(), dict);
00142 }
00143 };
00144
00145
00146
00147
00148 searchableSurface(const IOobject& io);
00149
00150
00151 virtual autoPtr<searchableSurface> clone() const
00152 {
00153 notImplemented("autoPtr<searchableSurface> clone() const");
00154 return autoPtr<searchableSurface>(NULL);
00155 }
00156
00157
00158
00159
00160
00161 static autoPtr<searchableSurface> New
00162 (
00163 const word& surfaceType,
00164 const IOobject& io,
00165 const dictionary& dict
00166 );
00167
00168
00169
00170
00171 virtual ~searchableSurface();
00172
00173
00174
00175
00176
00177
00178 virtual const wordList& regions() const = 0;
00179
00180
00181 virtual bool hasVolumeType() const = 0;
00182
00183
00184 virtual label size() const = 0;
00185
00186
00187 virtual label globalSize() const
00188 {
00189 return size();
00190 }
00191
00192
00193
00194 virtual pointField coordinates() const = 0;
00195
00196
00197
00198
00204
00205
00206
00207
00208
00209
00215
00216
00217
00218
00219
00220
00229
00230
00231
00232
00233
00234
00235
00237
00238
00239
00240
00241
00242
00244
00245
00246
00247
00248
00249
00250
00251
00252
00253
00254 virtual void findNearest
00255 (
00256 const pointField& sample,
00257 const scalarField& nearestDistSqr,
00258 List<pointIndexHit>&
00259 ) const = 0;
00260
00261
00262
00263
00264 virtual void findLine
00265 (
00266 const pointField& start,
00267 const pointField& end,
00268 List<pointIndexHit>&
00269 ) const = 0;
00270
00271
00272 virtual void findLineAny
00273 (
00274 const pointField& start,
00275 const pointField& end,
00276 List<pointIndexHit>&
00277 ) const = 0;
00278
00279
00280 virtual void findLineAll
00281 (
00282 const pointField& start,
00283 const pointField& end,
00284 List<List<pointIndexHit> >&
00285 ) const = 0;
00286
00287
00288 virtual void getRegion
00289 (
00290 const List<pointIndexHit>&,
00291 labelList& region
00292 ) const = 0;
00293
00294
00295 virtual void getNormal
00296 (
00297 const List<pointIndexHit>&,
00298 vectorField& normal
00299 ) const = 0;
00300
00301
00302
00303 virtual void getVolumeType
00304 (
00305 const pointField&,
00306 List<volumeType>&
00307 ) const = 0;
00308
00309
00310
00311
00312
00313
00314
00315
00316 virtual void distribute
00317 (
00318 const List<treeBoundBox>&,
00319 const bool keepNonLocal,
00320 autoPtr<mapDistribute>& faceMap,
00321 autoPtr<mapDistribute>& pointMap
00322 )
00323 {}
00324
00325
00326 virtual void setField(const labelList& values)
00327 {}
00328
00329
00330
00331
00332 virtual void getField(const List<pointIndexHit>&, labelList& values)
00333 const
00334 {
00335 values.clear();
00336 }
00337
00338 };
00339
00340
00341
00342
00343 }
00344
00345
00346
00347 #endif
00348
00349