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 calculatedFaPatchField_H
00036 #define calculatedFaPatchField_H
00037
00038 #include "faPatchField.H"
00039
00040
00041
00042 namespace Foam
00043 {
00044
00045
00046
00047
00048
00049 template<class Type>
00050 class calculatedFaPatchField
00051 :
00052 public faPatchField<Type>
00053 {
00054
00055 public:
00056
00057
00058 TypeName("calculated");
00059
00060
00061
00062
00063
00064 calculatedFaPatchField
00065 (
00066 const faPatch&,
00067 const Field<Type>&
00068 );
00069
00070
00071 calculatedFaPatchField
00072 (
00073 const faPatch&,
00074 const Field<Type>&,
00075 const dictionary&
00076 );
00077
00078
00079 calculatedFaPatchField
00080 (
00081 const calculatedFaPatchField<Type>&,
00082 const faPatch&,
00083 const Field<Type>&,
00084 const faPatchFieldMapper&
00085 );
00086
00087
00088 virtual tmp<faPatchField<Type> > clone() const
00089 {
00090 return tmp<faPatchField<Type> >
00091 (
00092 new calculatedFaPatchField<Type>(*this)
00093 );
00094 }
00095
00096
00097 calculatedFaPatchField
00098 (
00099 const calculatedFaPatchField<Type>&,
00100 const Field<Type>&
00101 );
00102
00103
00104 virtual tmp<faPatchField<Type> > clone(const Field<Type>& iF) const
00105 {
00106 return tmp<faPatchField<Type> >
00107 (
00108 new calculatedFaPatchField<Type>(*this, iF)
00109 );
00110 }
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120 virtual bool fixesValue() const
00121 {
00122 return true;
00123 }
00124
00125
00126
00127
00128
00129
00130 virtual tmp<Field<Type> > valueInternalCoeffs
00131 (
00132 const tmp<scalarField>&
00133 ) const
00134 {
00135 FatalErrorIn
00136 (
00137 "calculatedFaPatchField<Type>::"
00138 "valueInternalCoeffs(const tmp<scalarField>&) const"
00139 ) << "valueInternalCoeffs cannot be called for a "
00140 << "calculatedFaPatchField. You are probably trying to "
00141 << "solve for a field with calculated boundary conditions."
00142 << abort(FatalError);
00143 return *this;
00144 }
00145
00146
00147
00148 virtual tmp<Field<Type> > valueBoundaryCoeffs
00149 (
00150 const tmp<scalarField>&
00151 ) const
00152 {
00153 FatalErrorIn
00154 (
00155 "calculatedFaPatchField<Type>::"
00156 "valueBoundaryCoeffs(const tmp<scalarField>&) const"
00157 ) << "valueBoundaryCoeffs cannot be called for a "
00158 << "calculatedFaPatchField. You are probably trying to "
00159 << "solve for a field with calculated boundary conditions."
00160 << abort(FatalError);
00161 return *this;
00162 }
00163
00164
00165
00166 tmp<Field<Type> > gradientInternalCoeffs() const
00167 {
00168 FatalErrorIn
00169 (
00170 "calculatedFaPatchField<Type>::"
00171 "gradientInternalCoeffs() const"
00172 ) << "gradientInternalCoeffs cannot be called for a "
00173 << "calculatedFaPatchField. You are probably trying to "
00174 << "solve for a field with calculated boundary conditions."
00175 << abort(FatalError);
00176 return *this;
00177 }
00178
00179
00180
00181 tmp<Field<Type> > gradientBoundaryCoeffs() const
00182 {
00183 FatalErrorIn
00184 (
00185 "calculatedFaPatchField<Type>::"
00186 "gradientBoundaryCoeffs() const"
00187 ) << "gradientBoundaryCoeffs cannot be called for a "
00188 << "calculatedFaPatchField. You are probably trying to "
00189 << "solve for a field with calculated boundary conditions."
00190 << abort(FatalError);
00191 return *this;
00192 }
00193
00194
00195
00196 virtual void write(Ostream&) const;
00197 };
00198
00199
00200
00201
00202 }
00203
00204
00205
00206 #ifdef NoRepository
00207 # include "calculatedFaPatchField.C"
00208 #endif
00209
00210
00211
00212 #endif
00213
00214