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
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129 #ifndef coordinateSystem_H
00130 #define coordinateSystem_H
00131
00132 #include <OpenFOAM/vector.H>
00133 #include <OpenFOAM/point.H>
00134 #include <OpenFOAM/tensor.H>
00135 #include <OpenFOAM/vectorField.H>
00136 #include <OpenFOAM/pointField.H>
00137 #include <OpenFOAM/tmp.H>
00138 #include <meshTools/coordinateRotation.H>
00139 #include <OpenFOAM/objectRegistry.H>
00140
00141
00142
00143 namespace Foam
00144 {
00145
00146
00147
00148
00149
00150 class coordinateSystem
00151 {
00152
00153
00154
00155 mutable word name_;
00156
00157
00158 mutable string note_;
00159
00160
00161 mutable point origin_;
00162
00163
00164 coordinateRotation R_;
00165
00166
00167 tensor Rtr_;
00168
00169 protected:
00170
00171
00172
00173
00174
00175 virtual vector localToGlobal(const vector&, bool translate) const;
00176
00177
00178
00179 virtual tmp<vectorField> localToGlobal
00180 (
00181 const vectorField&,
00182 bool translate
00183 ) const;
00184
00185
00186
00187 virtual vector globalToLocal(const vector&, bool translate) const;
00188
00189
00190
00191 virtual tmp<vectorField> globalToLocal
00192 (
00193 const vectorField&,
00194 bool translate
00195 ) const;
00196
00197 public:
00198
00199
00200 TypeName("coordinateSystem");
00201
00202
00203
00204
00205
00206 coordinateSystem();
00207
00208
00209 coordinateSystem
00210 (
00211 const word& name,
00212 const coordinateSystem&
00213 );
00214
00215
00216 coordinateSystem
00217 (
00218 const word& name,
00219 const point& origin,
00220 const coordinateRotation&
00221 );
00222
00223
00224 coordinateSystem
00225 (
00226 const word& name,
00227 const point& origin,
00228 const vector& axis,
00229 const vector& dirn
00230 );
00231
00232
00233 coordinateSystem(const word& name, const dictionary&);
00234
00235
00236 coordinateSystem(const dictionary&);
00237
00238
00239
00240 coordinateSystem(const dictionary&, const objectRegistry&);
00241
00242
00243
00244 coordinateSystem(Istream&);
00245
00246
00247 autoPtr<coordinateSystem> clone() const
00248 {
00249 return autoPtr<coordinateSystem>(new coordinateSystem(*this));
00250 }
00251
00252
00253
00254 declareRunTimeSelectionTable
00255 (
00256 autoPtr,
00257 coordinateSystem,
00258 dictionary,
00259 (
00260 const word& name,
00261 const dictionary& dict
00262 ),
00263 (name, dict)
00264 );
00265
00266 declareRunTimeSelectionTable
00267 (
00268 autoPtr,
00269 coordinateSystem,
00270 origRotation,
00271 (
00272 const word& name,
00273 const point& origin,
00274 const coordinateRotation& cr
00275 ),
00276 (name, origin, cr)
00277 );
00278
00279
00280
00281
00282 static autoPtr<coordinateSystem> New
00283 (
00284 const word& name,
00285 const dictionary&
00286 );
00287
00288
00289 static autoPtr<coordinateSystem> New
00290 (
00291 const word& coordType,
00292 const word& name,
00293 const point& origin,
00294 const coordinateRotation&
00295 );
00296
00297
00298 static autoPtr<coordinateSystem> New(Istream& is);
00299
00300
00301
00302 virtual ~coordinateSystem();
00303
00304
00305
00306
00307
00308
00309
00310 const word& name() const
00311 {
00312 return name_;
00313 }
00314
00315
00316 string& note()
00317 {
00318 return note_;
00319 }
00320
00321
00322 const string& note() const
00323 {
00324 return note_;
00325 }
00326
00327
00328 const point& origin() const
00329 {
00330 return origin_;
00331 }
00332
00333
00334 const coordinateRotation& rotation() const
00335 {
00336 return R_;
00337 }
00338
00339
00340 const tensor& R() const
00341 {
00342 return R_;
00343 }
00344
00345
00346 const vector e1() const
00347 {
00348 return Rtr_.x();
00349 }
00350
00351
00352 const vector e2() const
00353 {
00354 return Rtr_.y();
00355 }
00356
00357
00358 const vector e3() const
00359 {
00360 return Rtr_.z();
00361 }
00362
00363
00364
00365 const vector axis() const
00366 {
00367 return Rtr_.z();
00368 }
00369
00370
00371
00372 const vector direction() const
00373 {
00374 return Rtr_.x();
00375 }
00376
00377
00378
00379
00380 virtual dictionary dict(bool ignoreType=false) const;
00381
00382
00383
00384
00385
00386 virtual void rename(const word& newName)
00387 {
00388 name_ = newName;
00389 }
00390
00391
00392 point& origin()
00393 {
00394 return origin_;
00395 }
00396
00397
00398
00399
00400 virtual void write(Ostream&) const;
00401
00402
00403 virtual void writeDict(Ostream&, bool subDict=true) const;
00404
00405
00406
00407
00408 point globalPosition(const point& local) const
00409 {
00410 return localToGlobal(local, true);
00411 }
00412
00413
00414 tmp<pointField> globalPosition(const pointField& local) const
00415 {
00416 return localToGlobal(local, true);
00417 }
00418
00419
00420 vector globalVector(const vector& local) const
00421 {
00422 return localToGlobal(local, false);
00423 }
00424
00425
00426 tmp<vectorField> globalVector(const vectorField& local) const
00427 {
00428 return localToGlobal(local, false);
00429 }
00430
00431
00432 point localPosition(const point& global) const
00433 {
00434 return globalToLocal(global, true);
00435 }
00436
00437
00438 tmp<pointField> localPosition(const pointField& global) const
00439 {
00440 return globalToLocal(global, true);
00441 }
00442
00443
00444 vector localVector(const vector& global) const
00445 {
00446 return globalToLocal(global, false);
00447 }
00448
00449
00450 tmp<vectorField> localVector(const vectorField& global) const
00451 {
00452 return globalToLocal(global, false);
00453 }
00454
00455
00456
00457
00458
00459 void operator=(const dictionary&);
00460
00461
00462
00463
00464 friend bool operator!=
00465 (
00466 const coordinateSystem&,
00467 const coordinateSystem&
00468 );
00469
00470
00471
00472 friend Ostream& operator<<(Ostream&, const coordinateSystem&);
00473 };
00474
00475
00476
00477
00478 }
00479
00480
00481
00482 #endif
00483
00484