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 oscillatingFixedValueFvPatchField_H
00036 #define oscillatingFixedValueFvPatchField_H
00037
00038 #include <OpenFOAM/Random.H>
00039 #include <finiteVolume/fixedValueFvPatchFields.H>
00040
00041
00042
00043 namespace Foam
00044 {
00045
00046
00047
00048
00049
00050 template<class Type>
00051 class oscillatingFixedValueFvPatchField
00052 :
00053 public fixedValueFvPatchField<Type>
00054 {
00055
00056
00057
00058 Field<Type> refValue_;
00059
00060
00061 scalar amplitude_;
00062
00063
00064 scalar frequency_;
00065
00066
00067 label curTimeIndex_;
00068
00069
00070
00071
00072
00073 scalar currentScale() const;
00074
00075
00076 public:
00077
00078
00079 TypeName("oscillatingFixedValue");
00080
00081
00082
00083
00084
00085 oscillatingFixedValueFvPatchField
00086 (
00087 const fvPatch&,
00088 const DimensionedField<Type, volMesh>&
00089 );
00090
00091
00092 oscillatingFixedValueFvPatchField
00093 (
00094 const fvPatch&,
00095 const DimensionedField<Type, volMesh>&,
00096 const dictionary&
00097 );
00098
00099
00100
00101 oscillatingFixedValueFvPatchField
00102 (
00103 const oscillatingFixedValueFvPatchField<Type>&,
00104 const fvPatch&,
00105 const DimensionedField<Type, volMesh>&,
00106 const fvPatchFieldMapper&
00107 );
00108
00109
00110 oscillatingFixedValueFvPatchField
00111 (
00112 const oscillatingFixedValueFvPatchField<Type>&
00113 );
00114
00115
00116 virtual tmp<fvPatchField<Type> > clone() const
00117 {
00118 return tmp<fvPatchField<Type> >
00119 (
00120 new oscillatingFixedValueFvPatchField<Type>(*this)
00121 );
00122 }
00123
00124
00125 oscillatingFixedValueFvPatchField
00126 (
00127 const oscillatingFixedValueFvPatchField<Type>&,
00128 const DimensionedField<Type, volMesh>&
00129 );
00130
00131
00132 virtual tmp<fvPatchField<Type> > clone
00133 (
00134 const DimensionedField<Type, volMesh>& iF
00135 ) const
00136 {
00137 return tmp<fvPatchField<Type> >
00138 (
00139 new oscillatingFixedValueFvPatchField<Type>(*this, iF)
00140 );
00141 }
00142
00143
00144
00145
00146
00147
00148
00149 const Field<Type>& refValue() const
00150 {
00151 return refValue_;
00152 }
00153
00154
00155 Field<Type>& refValue()
00156 {
00157 return refValue_;
00158 }
00159
00160
00161 scalar amplitude() const
00162 {
00163 return amplitude_;
00164 }
00165
00166 scalar& amplitude()
00167 {
00168 return amplitude_;
00169 }
00170
00171
00172 scalar frequency() const
00173 {
00174 return frequency_;
00175 }
00176
00177 scalar& frequency()
00178 {
00179 return frequency_;
00180 }
00181
00182
00183
00184
00185
00186 virtual void autoMap
00187 (
00188 const fvPatchFieldMapper&
00189 );
00190
00191
00192 virtual void rmap
00193 (
00194 const fvPatchField<Type>&,
00195 const labelList&
00196 );
00197
00198
00199
00200
00201
00202 virtual void updateCoeffs();
00203
00204
00205
00206 virtual void write(Ostream&) const;
00207 };
00208
00209
00210
00211
00212 }
00213
00214
00215
00216 #ifdef NoRepository
00217 # include <finiteVolume/oscillatingFixedValueFvPatchField.C>
00218 #endif
00219
00220
00221
00222 #endif
00223
00224