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 #ifndef sammMesh_H
00038 #define sammMesh_H
00039
00040 #include <OpenFOAM/polyMesh.H>
00041 #include <OpenFOAM/cellShape.H>
00042 #include <OpenFOAM/cellList.H>
00043 #include <OpenFOAM/polyPatchList.H>
00044
00045 #ifndef namespaceFoam
00046 #define namespaceFoam
00047 using namespace Foam;
00048 #endif
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058 class sammMesh
00059 {
00060
00061
00062
00063 fileName casePrefix_;
00064
00065
00066 const Time& runTime_;
00067
00068
00069 pointField points_;
00070
00071
00072 cellShapeList cellShapes_;
00073
00074
00075 faceListList boundary_;
00076
00077
00078 wordList patchTypes_;
00079
00080
00081 word defaultFacesName_;
00082
00083
00084 word defaultFacesType_;
00085
00086
00087 wordList patchNames_;
00088
00089
00090 wordList patchPhysicalTypes_;
00091
00092
00093 labelList starPointLabelLookup_;
00094
00095
00096 labelList starCellLabelLookup_;
00097
00098
00099 faceListList cellFaces_;
00100
00101
00102 faceList meshFaces_;
00103
00104
00105 cellList cellPolys_;
00106
00107
00108 label nInternalFaces_;
00109
00110
00111 labelList polyBoundaryPatchStartIndices_;
00112
00113
00114
00115
00116 mutable labelListList* pointCellsPtr_;
00117
00118
00119 bool isShapeMesh_;
00120
00121
00122
00123
00124 static const cellModel* unknownPtr_;
00125 static const cellModel* hexPtr_;
00126 static const cellModel* wedgePtr_;
00127 static const cellModel* prismPtr_;
00128 static const cellModel* pyrPtr_;
00129 static const cellModel* tetPtr_;
00130 static const cellModel* tetWedgePtr_;
00131
00132 static const cellModel* sammTrim1Ptr_;
00133 static const cellModel* sammTrim2Ptr_;
00134 static const cellModel* sammTrim3Ptr_;
00135 static const cellModel* sammTrim4Ptr_;
00136 static const cellModel* sammTrim5Ptr_;
00137 static const cellModel* sammTrim8Ptr_;
00138
00139 static const label shapeFaceLookup[19][9];
00140
00141
00142
00143 static List<const cellModel*> sammShapeLookup;
00144 static List<const label*> sammAddressingTable;
00145
00146
00147
00148
00149 sammMesh(const sammMesh&);
00150
00151
00152 void operator=(const sammMesh&);
00153
00154
00155
00156 void fillSammCellShapeTable();
00157 void fillSammAddressingTable();
00158
00159
00160
00161 void readPoints(const scalar scaleFactor);
00162
00163
00164
00165 void readCells();
00166
00167 void addRegularCell
00168 (
00169 const labelList& labels,
00170 const label nCreatedCells
00171 );
00172
00173 void addSAMMcell
00174 (
00175 const label typeFlag,
00176 const labelList& globalLabels,
00177 const label nCreatedCells
00178 );
00179
00180
00181
00182 void readBoundary();
00183
00184
00185
00186
00187 void fixCollapsedEdges();
00188
00189
00190 void readCouples();
00191
00192
00193 void calcPointCells() const;
00194
00195 const labelListList& pointCells() const;
00196
00197
00198 void createBoundaryFaces();
00199
00200
00201
00202 bool sammEqualFace
00203 (
00204 const face& boundaryFace,
00205 const face& cellFace
00206 ) const;
00207
00208
00209 void purgeCellShapes();
00210
00211
00212 void createPolyCells();
00213
00214
00215
00216 void createPolyBoundary();
00217
00218
00219 void createPolyMeshData();
00220
00221
00222 List<polyPatch* > polyBoundaryPatches(const polyMesh&);
00223
00224
00225 public:
00226
00227
00228
00229
00230
00231
00232
00233 sammMesh
00234 (
00235 const fileName& prefix,
00236 const Time& rt,
00237 const scalar scaleFactor
00238 );
00239
00240
00241
00242
00243 ~sammMesh();
00244
00245
00246
00247
00248
00249 void writeMesh();
00250
00251
00252
00253
00254
00255
00256
00257
00258
00259 };
00260
00261
00262
00263
00264 #endif
00265
00266