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 #ifndef SlicedGeometricField_H
00044 #define SlicedGeometricField_H
00045
00046 #include <OpenFOAM/GeometricField.H>
00047
00048
00049
00050 namespace Foam
00051 {
00052
00053
00054
00055
00056
00057 template
00058 <
00059 class Type,
00060 template<class> class PatchField,
00061 template<class> class SlicedPatchField,
00062 class GeoMesh
00063 >
00064 class SlicedGeometricField
00065 :
00066 public GeometricField<Type, PatchField, GeoMesh>
00067 {
00068 public:
00069
00070 typedef typename GeoMesh::Mesh Mesh;
00071 typedef typename GeoMesh::BoundaryMesh BoundaryMesh;
00072
00073 class DimensionedInternalField;
00074
00075
00076 private:
00077
00078
00079
00080
00081
00082 tmp<FieldField<PatchField, Type> > slicedBoundaryField
00083 (
00084 const Mesh& mesh,
00085 const Field<Type>& completeField,
00086 const bool preserveCouples
00087 );
00088
00089
00090
00091 tmp<FieldField<PatchField, Type> > slicedBoundaryField
00092 (
00093 const Mesh& mesh,
00094 const FieldField<PatchField, Type>& bField,
00095 const bool preserveCouples
00096 );
00097
00099
00100
00101
00102 void operator=(const SlicedGeometricField&);
00103
00104
00105
00106 void operator=(const GeometricField<Type, PatchField, GeoMesh>&);
00107
00108
00109
00110 void operator=(const tmp<GeometricField<Type, PatchField, GeoMesh> >&);
00111
00112
00113 public:
00114
00115
00116
00117
00118 SlicedGeometricField
00119 (
00120 const IOobject&,
00121 const Mesh&,
00122 const dimensionSet&,
00123 const Field<Type>& completeField,
00124 const bool preserveCouples=true
00125 );
00126
00127
00128
00129 SlicedGeometricField
00130 (
00131 const IOobject&,
00132 const Mesh&,
00133 const dimensionSet&,
00134 const Field<Type>& completeIField,
00135 const Field<Type>& completeBField,
00136 const bool preserveCouples=true
00137 );
00138
00139
00140
00141 SlicedGeometricField
00142 (
00143 const IOobject&,
00144 const GeometricField<Type, PatchField, GeoMesh>&,
00145 const bool preserveCouples=true
00146 );
00147
00148
00149 SlicedGeometricField
00150 (
00151 const SlicedGeometricField
00152 <
00153 Type,
00154 PatchField,
00155 SlicedPatchField,
00156 GeoMesh
00157 >&
00158 );
00159
00160
00161
00162
00163 ~SlicedGeometricField();
00164
00165
00166
00167
00168
00169 void correctBoundaryConditions();
00170 };
00171
00172
00173
00174
00175
00176
00177
00178 template
00179 <
00180 class Type,
00181 template<class> class PatchField,
00182 template<class> class SlicedPatchField,
00183 class GeoMesh
00184 >
00185 class SlicedGeometricField<Type, PatchField, SlicedPatchField, GeoMesh>::
00186 DimensionedInternalField
00187 :
00188 public GeometricField<Type, PatchField, GeoMesh>::DimensionedInternalField
00189 {
00190
00191 public:
00192
00193
00194
00195
00196 DimensionedInternalField
00197 (
00198 const IOobject&,
00199 const Mesh&,
00200 const dimensionSet&,
00201 const Field<Type>& iField
00202 );
00203
00204
00205
00206
00207 ~DimensionedInternalField();
00208 };
00209
00210
00211
00212
00213 }
00214
00215
00216
00217 #ifdef NoRepository
00218 # include <OpenFOAM/SlicedGeometricField.C>
00219 #endif
00220
00221
00222
00223 #endif
00224
00225