A coordinate rotation specified using global axis. More...


Public Member Functions | |
| TypeName ("axesRotation") | |
| Runtime type information. More... | |
| axesRotation (const vector &axis, const vector &dir) | |
| Construct from 2 axes. More... | |
| axesRotation (const tensor &R) | |
| Construct from components. More... | |
| axesRotation (const dictionary &) | |
| Construct from dictionary. More... | |
| axesRotation (const dictionary &, const UList< vector > &points) | |
| Construct from dictionary and list of points. More... | |
| virtual autoPtr< coordinateRotation > | clone () const |
| Construct and return a clone. More... | |
| virtual | ~axesRotation () |
| Destructor. More... | |
| virtual void | updatePoints (const UList< vector > &points) |
| Update the rotation for a list of points. More... | |
| virtual const tensor & | R () const |
| Return local-to-global transformation tensor. More... | |
| virtual const vector | e1 () const |
| Return local Cartesian x-axis in global coordinates. More... | |
| virtual const vector | e2 () const |
| Return local Cartesian y-axis in global coordinates. More... | |
| virtual const vector | e3 () const |
| Return local Cartesian z-axis in global coordinates. More... | |
| virtual vector | transform (const vector &v) const |
| Transform vector using transformation tensor. More... | |
| virtual tmp< vectorField > | transform (const vectorField &tf) const |
| Transform vectorField using transformation tensor field. More... | |
| virtual vector | invTransform (const vector &v) const |
| Inverse transform vector using transformation tensor. More... | |
| virtual tmp< vectorField > | invTransform (const vectorField &vf) const |
| Inverse transform vectorField using transformation tensor field. More... | |
| virtual tensor | transform (const vector &p, const tensor &t) const |
| Transform tensor using transformation tensorField. More... | |
| virtual tmp< tensorField > | transform (const tensorField &tf) const |
| Transform tensor field using transformation tensorField. More... | |
| virtual symmTensor | transformDiagTensor (const vector &p, const vector &v) const |
| Transform diagTensor masquerading as a vector using transformation. More... | |
| virtual tmp< symmTensorField > | transformDiagTensor (const vectorField &vf) const |
| Transform diagTensorField masquerading as a vectorField. More... | |
| void | operator= (const dictionary &) |
| Assign from dictionary. More... | |
| virtual void | write (Ostream &) const |
| Write. More... | |
Public Member Functions inherited from coordinateRotation | |
| TypeName ("coordinateRotation") | |
| Runtime type information. More... | |
| declareRunTimeSelectionTable (autoPtr, coordinateRotation, dictionary,(const dictionary &dict),(dict)) | |
| declareRunTimeSelectionTable (autoPtr, coordinateRotation, points,(const dictionary &dict, const UList< vector > &points),(dict, points)) | |
| virtual | ~coordinateRotation () |
| Destructor. More... | |
| virtual bool | uniform () const |
| Return true if the rotation tensor is uniform. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from coordinateRotation | |
| static autoPtr< coordinateRotation > | New (const dictionary &dict, const UList< vector > &points) |
| Select constructed from dictionary and list of points. More... | |
| static autoPtr< coordinateRotation > | New (const dictionary &dict) |
| Select constructed from dictionary. More... | |
Protected Member Functions inherited from coordinateRotation | |
| symmTensor | transformVectorDiagTensor (const tensor &, const vector &) const |
| Transform the vector as if it is a diagonal tensor. More... | |
A coordinate rotation specified using global axis.
The rotation is defined by a combination of vectors (e1/e2), (e2/e3) or (e3/e1). Any nonorthogonality will be absorbed into the second vector.
axesRotation
{
type axesRotation;
e1 (1 0 0);
e2 (0 1 0);
}
Definition at line 64 of file axesRotation.H.
| axesRotation | ( | const vector & | axis, |
| const vector & | dir | ||
| ) |
Construct from 2 axes.
Definition at line 103 of file axesRotation.C.
Referenced by axesRotation::clone().

| axesRotation | ( | const tensor & | R | ) |
Construct from components.
Definition at line 116 of file axesRotation.C.
| axesRotation | ( | const dictionary & | dict | ) |
Construct from dictionary.
Definition at line 123 of file axesRotation.C.
References dict, and axesRotation::operator=().

| axesRotation | ( | const dictionary & | dict, |
| const UList< vector > & | points | ||
| ) |
Construct from dictionary and list of points.
Definition at line 135 of file axesRotation.C.
|
inlinevirtual |
Destructor.
Definition at line 122 of file axesRotation.H.
| TypeName | ( | "axesRotation" | ) |
Runtime type information.
|
inlinevirtual |
Construct and return a clone.
Implements coordinateRotation.
Definition at line 115 of file axesRotation.H.
References axesRotation::axesRotation().

Update the rotation for a list of points.
Implements coordinateRotation.
Definition at line 129 of file axesRotation.H.
|
inlinevirtual |
Return local-to-global transformation tensor.
Implements coordinateRotation.
Definition at line 133 of file axesRotation.H.
|
inlinevirtual |
Return local Cartesian x-axis in global coordinates.
Implements coordinateRotation.
Definition at line 139 of file axesRotation.H.
References Tensor< Cmpt >::x().

|
inlinevirtual |
Return local Cartesian y-axis in global coordinates.
Implements coordinateRotation.
Definition at line 145 of file axesRotation.H.
References Tensor< Cmpt >::y().

|
inlinevirtual |
Return local Cartesian z-axis in global coordinates.
Implements coordinateRotation.
Definition at line 151 of file axesRotation.H.
References Tensor< Cmpt >::z().

|
virtual |
Transform vector using transformation tensor.
Implements coordinateRotation.
Definition at line 156 of file axesRotation.C.
|
virtual |
Transform vectorField using transformation tensor field.
Implements coordinateRotation.
Definition at line 147 of file axesRotation.C.
|
virtual |
Inverse transform vector using transformation tensor.
Implements coordinateRotation.
Definition at line 171 of file axesRotation.C.
|
virtual |
Inverse transform vectorField using transformation tensor field.
Implements coordinateRotation.
Definition at line 162 of file axesRotation.C.
|
virtual |
Transform tensor using transformation tensorField.
Implements coordinateRotation.
Definition at line 187 of file axesRotation.C.
|
virtual |
Transform tensor field using transformation tensorField.
Implements coordinateRotation.
Definition at line 177 of file axesRotation.C.
References NotImplemented.
|
virtual |
Transform diagTensor masquerading as a vector using transformation.
tensor and return symmTensor
Implements coordinateRotation.
Definition at line 213 of file axesRotation.C.
|
virtual |
Transform diagTensorField masquerading as a vectorField.
using transformation tensorField and return symmTensorField
Implements coordinateRotation.
Definition at line 197 of file axesRotation.C.
References fld(), forAll, tmp< T >::ref(), and List< T >::size().

| void operator= | ( | const dictionary & | dict | ) |
Assign from dictionary.
Definition at line 233 of file axesRotation.C.
References dict, Foam::endl(), Foam::exit(), Foam::FatalError, FatalErrorInFunction, dictionary::found(), dictionary::lookup(), Foam::order(), Foam::Pout, and dictionary::readIfPresent().
Referenced by axesRotation::axesRotation().


|
virtual |
Write.
Implements coordinateRotation.
Definition at line 223 of file axesRotation.C.
References Foam::writeEntry().
