All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
extrude2DMesh.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Application
25  extrude2DMesh
26 
27 Description
28  Takes 2D mesh (all faces 2 points only, no front and back faces) and
29  creates a 3D mesh by extruding with specified thickness.
30 
31  Note:
32  Not sure about the walking of the faces to create the front and
33  back faces.
34 
35 \*---------------------------------------------------------------------------*/
36 
37 #include "argList.H"
38 #include "Time.H"
39 #include "polyMesh.H"
40 #include "extrude2DMesh.H"
41 #include "extrudeModel.H"
42 #include "polyTopoChange.H"
43 #include "MeshedSurface.H"
44 #include "edgeCollapser.H"
45 #include "addPatchCellLayer.H"
46 #include "patchToPoly2DMesh.H"
47 #include "globalIndex.H"
48 #include "IOdictionary.H"
49 
50 using namespace Foam;
51 
52 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
53 
54 enum ExtrudeMode
55 {
56  POLYMESH2D,
57  MESHEDSURFACE
58 };
59 
60 namespace Foam
61 {
62  template<>
63  const char* NamedEnum<ExtrudeMode, 2>::names[] =
64  {
65  "polyMesh2D",
66  "MeshedSurface"
67  };
68 }
69 
70 static const NamedEnum<ExtrudeMode, 2> ExtrudeModeNames;
71 
72 
73 //pointField moveInitialPoints
74 //(
75 // primitiveFacePatch& fMesh,
76 // const extrudeModel& model
77 //)
78 //{
79 // pointField layer0Points(fMesh.nPoints());
80 // pointField layer1Points(fMesh.nPoints());
81 // pointField displacement(fMesh.nPoints());
82 
83 // forAll(layer0Points, pointi)
84 // {
85 // const labelList& meshPoints = fMesh.meshPoints();
86 // label meshPointi = meshPoints[pointi];
87 
88 // layer0Points[meshPointi] = model
89 // (
90 // fMesh.points()[meshPointi],
91 // fMesh.pointNormals()[pointi],
92 // 0
93 // );
94 
95 // layer1Points[meshPointi] = model
96 // (
97 // fMesh.points()[meshPointi],
98 // fMesh.pointNormals()[pointi],
99 // 1
100 // );
101 
102 // displacement[pointi] =
103 // layer1Points[meshPointi]
104 // - layer0Points[meshPointi];
105 // }
106 
107 // fMesh.setPoints(layer0Points);
108 
109 // return displacement;
110 //}
111 
112 
113 
114 int main(int argc, char *argv[])
115 {
116  argList::validArgs.append("surfaceFormat");
117 
118  #include "addOverwriteOption.H"
119 
120  #include "setRootCase.H"
121 
122  Info<< "Create time\n" << endl;
123 
124  Time runTimeExtruded
125  (
127  args.rootPath(),
128  args.caseName()
129  );
130 
131  runTimeExtruded.functionObjects().off();
132 
133  const ExtrudeMode surfaceFormat = ExtrudeModeNames[args[1]];
134  const bool overwrite = args.optionFound("overwrite");
135 
136  Info<< "Extruding from " << ExtrudeModeNames[surfaceFormat]
137  << " at time " << runTimeExtruded.timeName() << endl;
138 
139  IOdictionary extrude2DMeshDict
140  (
141  IOobject
142  (
143  "extrude2DMeshDict",
144  runTimeExtruded.system(),
145  runTimeExtruded,
148  false
149  )
150  );
151 
152  // Point generator
153  autoPtr<extrudeModel> model(extrudeModel::New(extrude2DMeshDict));
154 
156 
158 
159  autoPtr<polyTopoChange> meshMod;
160 
161  labelListList extrudeEdgePatches;
162 
163  if (surfaceFormat == MESHEDSURFACE)
164  {
165  fMesh.set(new MeshedSurface<face>("MeshedSurface.obj"));
166 
167  EdgeMap<label> edgeRegionMap;
168  wordList patchNames(1, "default");
169  labelList patchSizes(1, fMesh().nEdges() - fMesh().nInternalEdges());
170 
171  const edgeList& edges = fMesh().edges();
172  forAll(edges, edgeI)
173  {
174  if (!fMesh().isInternalEdge(edgeI))
175  {
176  edgeRegionMap.insert(edges[edgeI], 0);
177  }
178  }
179 
180  patchToPoly2DMesh poly2DMesh
181  (
182  fMesh(),
183  patchNames,
184  patchSizes,
185  edgeRegionMap
186  );
187 
188  poly2DMesh.createMesh();
189 
190  mesh.set
191  (
192  new polyMesh
193  (
194  IOobject
195  (
197  runTimeExtruded.constant(),
198  runTimeExtruded,
201  false
202  ),
203  move(poly2DMesh.points()),
204  move(poly2DMesh.faces()),
205  move(poly2DMesh.owner()),
206  move(poly2DMesh.neighbour())
207  )
208  );
209 
210  Info<< "Constructing patches." << endl;
211  List<polyPatch*> patches(poly2DMesh.patchNames().size());
212 
214  {
215  patches[patchi] = new polyPatch
216  (
217  poly2DMesh.patchNames()[patchi],
218  poly2DMesh.patchSizes()[patchi],
219  poly2DMesh.patchStarts()[patchi],
220  patchi,
221  mesh().boundaryMesh(),
222  polyPatch::typeName
223  );
224  }
225 
227  }
228  else if (surfaceFormat == POLYMESH2D)
229  {
230  mesh.set
231  (
232  new polyMesh
233  (
235  (
237  runTimeExtruded.timeName(),
238  runTimeExtruded,
240  )
241  )
242  );
243  }
244 
245  // Engine to extrude mesh
246  extrude2DMesh extruder(mesh(), extrude2DMeshDict, model());
247 
248  extruder.addFrontBackPatches();
249 
250  meshMod.set(new polyTopoChange(mesh().boundaryMesh().size()));
251 
252  extruder.setRefinement(meshMod());
253 
254  // Create a mesh from topo changes.
255  autoPtr<polyTopoChangeMap> map = meshMod().changeMesh(mesh(), false);
256 
257  mesh().topoChange(map);
258 
259  {
260  edgeCollapser collapser(mesh());
261 
262  const edgeList& edges = mesh().edges();
263  const pointField& points = mesh().points();
264 
265  const boundBox& bb = mesh().bounds();
266  const scalar mergeDim = 1e-4 * bb.minDim();
267 
268  PackedBoolList collapseEdge(mesh().nEdges());
269  Map<point> collapsePointToLocation(mesh().nPoints());
270 
271  forAll(edges, edgeI)
272  {
273  const edge& e = edges[edgeI];
274 
275  scalar d = e.mag(points);
276 
277  if (d < mergeDim)
278  {
279  Info<< "Merging edge " << e << " since length " << d
280  << " << " << mergeDim << nl;
281 
282  collapseEdge[edgeI] = true;
283  collapsePointToLocation.set(e[1], points[e[0]]);
284  }
285  }
286 
287  List<pointEdgeCollapse> allPointInfo;
289  labelList pointPriority(mesh().nPoints(), 0);
290 
291  collapser.consistentCollapse
292  (
293  globalPoints,
294  pointPriority,
295  collapsePointToLocation,
296  collapseEdge,
297  allPointInfo
298  );
299 
300  polyTopoChange meshModCollapse(mesh());
301 
302  collapser.setRefinement(allPointInfo, meshModCollapse);
303 
304  // Create a mesh from topo changes.
306  = meshModCollapse.changeMesh(mesh(), false);
307 
308  mesh().topoChange(map);
309  }
310 
311  if (!overwrite)
312  {
313  runTimeExtruded++;
314  }
315  else
316  {
317  mesh().setInstance("constant");
318  }
319 
320  // Take over refinement levels and write to new time directory.
321  Info<< "\nWriting extruded mesh to time = " << runTimeExtruded.timeName()
322  << nl << endl;
323 
324  mesh().write();
325 
326  Info<< "End\n" << endl;
327 
328  return 0;
329 }
330 
331 
332 // ************************************************************************* //
const fvPatchList & patches
const polyBoundaryMesh & boundaryMesh() const
Return boundary mesh.
Definition: polyMesh.H:453
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
void off()
Switch the function objects off.
static word defaultRegion
Return the default region name.
Definition: polyMesh.H:325
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
Does polyTopoChanges to remove edges. Can remove faces due to edge collapse but can not remove cells ...
Definition: edgeCollapser.H:66
label collapseEdge(triSurface &surf, const scalar minLen)
Keep collapsing all edges < minLen.
static SLList< string > validArgs
A list of valid (mandatory) arguments.
Definition: argList.H:153
A bounding box defined in terms of the points at its extremities.
Definition: boundBox.H:58
virtual bool write(const bool write=true) const
Write mesh using IO settings from time.
Definition: fvMesh.C:1658
fvMesh & mesh
Initialise the NamedEnum HashTable from the static list of names.
Definition: NamedEnum.H:51
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition: Time.H:69
virtual void topoChange(const polyTopoChangeMap &map)
Update mesh corresponding to the given map.
Definition: fvMesh.C:1151
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
Definition: IOdictionary.H:53
virtual const pointField & points() const
Return raw points.
Definition: polyMesh.C:1211
bool insert(const edge &, const T &newElmt)
Insert a new hashedEntry.
Definition: HashTableI.H:80
Calculates a unique integer (label so might not have enough room - 2G max) for processor + local inde...
Definition: globalIndex.H:63
static autoPtr< extrudeModel > New(const dictionary &)
Select null constructed.
An edge is a list of two point labels. The functionality it provides supports the discretisation on a...
Definition: edge.H:58
label nPoints
wordList patchNames(nPatches)
scalar mag(const pointField &) const
Return scalar magnitude.
Definition: edgeI.H:181
static word controlDictName
The default control dictionary name (normally "controlDict")
Definition: Time.H:207
void addPatches(const List< polyPatch *> &, const bool validBoundary=true)
Add boundary patches.
Definition: polyMesh.C:989
static const char nl
Definition: Ostream.H:260
Convert a primitivePatch into a 2D polyMesh.
Map from edge (expressed as its endpoints) to value.
Definition: EdgeMap.H:47
void set(T *)
Set pointer to that given.
Definition: autoPtrI.H:99
void setInstance(const fileName &)
Set the instance for mesh files.
Definition: polyMeshIO.C:77
const edgeList & edges() const
Return mesh edges. Uses calcEdges.
Calculates points shared by more than two processor patches or cyclic patches.
Definition: globalPoints.H:100
const boundBox & bounds() const
Return mesh bounding box.
Definition: polyMesh.H:459
A bit-packed bool list.
label patchi
Given a 2D mesh insert all the topology changes to extrude. Does not work in parallel.
Definition: extrude2DMesh.H:61
const functionObjectList & functionObjects() const
Return the list of function objects.
Definition: Time.H:433
Direct mesh changes based on v1.3 polyTopoChange syntax.
messageStream Info
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:76
A patch is a list of labels that address the faces in the global face list.
Definition: polyPatch.H:66
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:98
scalar minDim() const
Smallest length/height/width dimension.
Definition: boundBoxI.H:102
Namespace for OpenFOAM.
A HashTable to objects of type <T> with a label key.
Definition: Map.H:49