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
00044
00045
00046
00047 #ifndef mapDistribute_H
00048 #define mapDistribute_H
00049
00050 #include <OpenFOAM/labelList.H>
00051 #include <OpenFOAM/labelPair.H>
00052 #include <OpenFOAM/Pstream.H>
00053 #include <OpenFOAM/boolList.H>
00054
00055
00056
00057 namespace Foam
00058 {
00059
00060 class mapPolyMesh;
00061
00062
00063
00064
00065
00066 class mapDistribute
00067 {
00068
00069
00070
00071 label constructSize_;
00072
00073
00074 labelListList subMap_;
00075
00076
00077 labelListList constructMap_;
00078
00079
00080 mutable autoPtr<List<labelPair> > schedulePtr_;
00081
00082
00083 public:
00084
00085
00086
00087
00088 mapDistribute
00089 (
00090 const label constructSize,
00091 const labelListList& subMap,
00092 const labelListList& constructMap
00093 );
00094
00095
00096 mapDistribute
00097 (
00098 const label constructSize,
00099 labelListList& subMap,
00100 labelListList& constructMap,
00101 const bool reUse
00102 );
00103
00104
00105
00106 mapDistribute
00107 (
00108 const labelList& sendProcs,
00109 const labelList& recvProcs
00110 );
00111
00112
00113 mapDistribute(const mapDistribute&);
00114
00115
00116
00117
00118
00119
00120
00121 label constructSize() const
00122 {
00123 return constructSize_;
00124 }
00125
00126
00127 label& constructSize()
00128 {
00129 return constructSize_;
00130 }
00131
00132
00133 const labelListList& subMap() const
00134 {
00135 return subMap_;
00136 }
00137
00138
00139 labelListList& subMap()
00140 {
00141 return subMap_;
00142 }
00143
00144
00145 const labelListList& constructMap() const
00146 {
00147 return constructMap_;
00148 }
00149
00150
00151 labelListList& constructMap()
00152 {
00153 return constructMap_;
00154 }
00155
00156
00157 static List<labelPair> schedule
00158 (
00159 const labelListList& subMap,
00160 const labelListList& constructMap
00161 );
00162
00163
00164 const List<labelPair>& schedule() const;
00165
00166
00167
00168
00169
00170
00171
00172 void compact(const boolList& elemIsUsed);
00173
00174
00175
00176
00177 template<class T>
00178 static void distribute
00179 (
00180 const Pstream::commsTypes commsType,
00181 const List<labelPair>& schedule,
00182 const label constructSize,
00183 const labelListList& subMap,
00184 const labelListList& constructMap,
00185 List<T>&
00186 );
00187
00188
00189
00190 template<class T, class CombineOp>
00191 static void distribute
00192 (
00193 const Pstream::commsTypes commsType,
00194 const List<labelPair>& schedule,
00195 const label constructSize,
00196 const labelListList& subMap,
00197 const labelListList& constructMap,
00198 List<T>&,
00199 const CombineOp& cop,
00200 const T& nullValue
00201 );
00202
00203
00204 template<class T>
00205 void distribute(List<T>& fld) const
00206 {
00207 if
00208 (
00209 Pstream::defaultCommsType == Pstream::nonBlocking
00210 && contiguous<T>()
00211 )
00212 {
00213 distribute
00214 (
00215 Pstream::nonBlocking,
00216 List<labelPair>(),
00217 constructSize_,
00218 subMap_,
00219 constructMap_,
00220 fld
00221 );
00222 }
00223 else if (Pstream::defaultCommsType == Pstream::scheduled)
00224 {
00225 distribute
00226 (
00227 Pstream::scheduled,
00228 schedule(),
00229 constructSize_,
00230 subMap_,
00231 constructMap_,
00232 fld
00233 );
00234 }
00235 else
00236 {
00237 distribute
00238 (
00239 Pstream::blocking,
00240 List<labelPair>(),
00241 constructSize_,
00242 subMap_,
00243 constructMap_,
00244 fld
00245 );
00246 }
00247 }
00248
00249
00250 void updateMesh(const mapPolyMesh&)
00251 {
00252 notImplemented
00253 (
00254 "mapDistribute::updateMesh(const mapPolyMesh&)"
00255 );
00256 }
00257
00258
00259
00260 void operator=(const mapDistribute&);
00261
00262 };
00263
00264
00265
00266
00267 }
00268
00269
00270
00271 #ifdef NoRepository
00272 # include "mapDistributeTemplates.C"
00273 #endif
00274
00275
00276
00277 #endif
00278
00279