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 #ifndef oscillatingDisplacementPointPatchVectorField_H
00036 #define oscillatingDisplacementPointPatchVectorField_H
00037
00038 #include <OpenFOAM/fixedValuePointPatchField.H>
00039
00040
00041
00042 namespace Foam
00043 {
00044
00045
00046
00047
00048
00049 class oscillatingDisplacementPointPatchVectorField
00050 :
00051 public fixedValuePointPatchField<vector>
00052 {
00053
00054
00055 vector amplitude_;
00056 scalar omega_;
00057
00058
00059 public:
00060
00061
00062 TypeName("oscillatingDisplacement");
00063
00064
00065
00066
00067
00068 oscillatingDisplacementPointPatchVectorField
00069 (
00070 const pointPatch&,
00071 const DimensionedField<vector, pointMesh>&
00072 );
00073
00074
00075 oscillatingDisplacementPointPatchVectorField
00076 (
00077 const pointPatch&,
00078 const DimensionedField<vector, pointMesh>&,
00079 const dictionary&
00080 );
00081
00082
00083 oscillatingDisplacementPointPatchVectorField
00084 (
00085 const oscillatingDisplacementPointPatchVectorField&,
00086 const pointPatch&,
00087 const DimensionedField<vector, pointMesh>&,
00088 const pointPatchFieldMapper&
00089 );
00090
00091
00092 virtual autoPtr<pointPatchField<vector> > clone() const
00093 {
00094 return autoPtr<pointPatchField<vector> >
00095 (
00096 new oscillatingDisplacementPointPatchVectorField
00097 (
00098 *this
00099 )
00100 );
00101 }
00102
00103
00104 oscillatingDisplacementPointPatchVectorField
00105 (
00106 const oscillatingDisplacementPointPatchVectorField&,
00107 const DimensionedField<vector, pointMesh>&
00108 );
00109
00110
00111 virtual autoPtr<pointPatchField<vector> > clone
00112 (
00113 const DimensionedField<vector, pointMesh>& iF
00114 ) const
00115 {
00116 return autoPtr<pointPatchField<vector> >
00117 (
00118 new oscillatingDisplacementPointPatchVectorField
00119 (
00120 *this,
00121 iF
00122 )
00123 );
00124 }
00125
00126
00127
00128
00129
00130
00131
00132 virtual void updateCoeffs();
00133
00134
00135
00136 virtual void write(Ostream&) const;
00137 };
00138
00139
00140
00141
00142 }
00143
00144
00145
00146 #endif
00147
00148