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 #ifndef fvFieldReconstructor_H
00037 #define fvFieldReconstructor_H
00038
00039 #include <OpenFOAM/PtrList.H>
00040 #include <finiteVolume/fvMesh.H>
00041 #include <OpenFOAM/IOobjectList.H>
00042 #include <finiteVolume/fvPatchFieldMapper.H>
00043 #include <OpenFOAM/labelIOList.H>
00044
00045
00046
00047 namespace Foam
00048 {
00049
00050
00051
00052
00053
00054
00055 class fvFieldReconstructor
00056 {
00057
00058
00059
00060 fvMesh& mesh_;
00061
00062
00063 const PtrList<fvMesh>& procMeshes_;
00064
00065
00066 const PtrList<labelIOList>& faceProcAddressing_;
00067
00068
00069 const PtrList<labelIOList>& cellProcAddressing_;
00070
00071
00072 const PtrList<labelIOList>& boundaryProcAddressing_;
00073
00074
00075
00076
00077
00078 fvFieldReconstructor(const fvFieldReconstructor&);
00079
00080
00081 void operator=(const fvFieldReconstructor&);
00082
00083
00084 public:
00085
00086 class fvPatchFieldReconstructor
00087 :
00088 public fvPatchFieldMapper
00089 {
00090 label size_;
00091
00092 public:
00093
00094
00095
00096
00097 fvPatchFieldReconstructor(const label size)
00098 :
00099 size_(size)
00100 {}
00101
00102
00103
00104
00105 label size() const
00106 {
00107 return size_;
00108 }
00109
00110 bool direct() const
00111 {
00112 return true;
00113 }
00114
00115 const unallocLabelList& directAddressing() const
00116 {
00117 return unallocLabelList::null();
00118 }
00119 };
00120
00121
00122
00123
00124
00125 fvFieldReconstructor
00126 (
00127 fvMesh& mesh,
00128 const PtrList<fvMesh>& procMeshes,
00129 const PtrList<labelIOList>& faceProcAddressing,
00130 const PtrList<labelIOList>& cellProcAddressing,
00131 const PtrList<labelIOList>& boundaryProcAddressing
00132 );
00133
00134
00135
00136
00137
00138 template<class Type>
00139 tmp<GeometricField<Type, fvPatchField, volMesh> >
00140 reconstructFvVolumeField
00141 (
00142 const IOobject& fieldIoObject
00143 );
00144
00145
00146 template<class Type>
00147 tmp<GeometricField<Type, fvsPatchField, surfaceMesh> >
00148 reconstructFvSurfaceField
00149 (
00150 const IOobject& fieldIoObject
00151 );
00152
00153
00154 template<class Type>
00155 void reconstructFvVolumeFields
00156 (
00157 const IOobjectList& objects,
00158 const HashSet<word>& selectedFields
00159 );
00160
00161
00162 template<class Type>
00163 void reconstructFvSurfaceFields
00164 (
00165 const IOobjectList& objects,
00166 const HashSet<word>& selectedFields
00167 );
00168 };
00169
00170
00171
00172
00173 }
00174
00175
00176
00177 #ifdef NoRepository
00178 # include "fvFieldReconstructorReconstructFields.C"
00179 #endif
00180
00181
00182
00183 #endif
00184
00185