/usr/include/freefoam/dynamicMesh/polyTopoChange.H is in libfreefoam-dev 0.1.0+dfsg-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 | /*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Class
Foam::polyTopoChange
Description
Direct mesh changes based on v1.3 polyTopoChange syntax.
Instead of recording changes and executing them all in one go (as did
v1.3 polyTopoChange) this class actually holds the current
points/faces/cells and does the change immediately.
It can be asked to compress out all unused points/faces/cells and
renumber everything to be consistent.
Note:
- polyTopoChange can be copied.
- adding a face using non-existing cells causes all intermediate cells
to be added. So always first add cells/points and then faces.
(or set strict checking)
- strict checking:
- any added/modified face can only use already existing vertices
- any added face can only use already existing cells
- no item can be removed more than once.
- removed cell: cell set to 0 faces.
- removed face: face set to 0 vertices.
- removed point: coordinate set to greatPoint (GREAT,GREAT,GREAT).
Note that this might give problems if this value is used already.
To see if point is equal to above value we don't use == (which might give
problems with roundoff error) but instead compare the individual component
with >.
- coupled patches: the reorderCoupledFaces routine (borrowed from
the couplePatches utility) reorders coupled patch faces and
uses the cyclicPolyPatch,processorPolyPatch functionality.
SourceFiles
polyTopoChange.C
polyTopoChangeI.H
polyTopoChangeTemplates.C
\*---------------------------------------------------------------------------*/
#ifndef polyTopoChange_H
#define polyTopoChange_H
#include <OpenFOAM/autoPtr.H>
#include <OpenFOAM/DynamicList.H>
#include <OpenFOAM/labelList.H>
#include <OpenFOAM/IOobject.H>
#include <OpenFOAM/typeInfo.H>
#include <OpenFOAM/pointField.H>
#include <OpenFOAM/PtrList.H>
#include <OpenFOAM/cellList.H>
#include <OpenFOAM/Map.H>
#include <OpenFOAM/HashSet.H>
#include <OpenFOAM/mapPolyMesh.H>
#include <OpenFOAM/CompactListList.H>
#include <OpenFOAM/PackedBoolList.H>
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// Forward declaration of classes
class face;
class primitiveMesh;
class polyMesh;
class fvMesh;
class Time;
class fileName;
class polyBoundaryMesh;
class polyPatch;
class dictionary;
class topoAction;
class objectMap;
/*---------------------------------------------------------------------------*\
Class polyTopoChange Declaration
\*---------------------------------------------------------------------------*/
class polyTopoChange
{
// Static data members
//- Value of deleted point
static const point greatPoint;
// Private data
//- Whether to allow referencing illegal points/cells/faces
// when adding/removing data.
bool strict_;
// Patches
//- Number of patches
label nPatches_;
// Points
//- Current point set
DynamicList<point> points_;
//- Original point label (or masterpoint for added points)
DynamicList<label> pointMap_;
//- For all original and added points contains new point label.
// (used to map return value of addPoint to new mesh point)
DynamicList<label> reversePointMap_;
//- Zone of point
DynamicList<label> pointZone_;
//- Retired points
labelHashSet retiredPoints_;
// Faces
//- Current faceList
DynamicList<face> faces_;
//- Patch for every external face (-1 for internal faces)
DynamicList<label> region_;
//- Owner for all faces
DynamicList<label> faceOwner_;
//- Neighbour for internal faces (-1 for external faces)
DynamicList<label> faceNeighbour_;
//- Original face label. Or master face for added-from-faces;
// -1 for faces added-from-edge or added-from-point)
DynamicList<label> faceMap_;
//- For all original and added faces contains new face label
// (used to map return value of addFace to new mesh face)
DynamicList<label> reverseFaceMap_;
//- Faces added from point (corresponding faceMap_ will
// be -1)
Map<label> faceFromPoint_;
//- Faces added from edge (corresponding faceMap_ will
// be -1)
Map<label> faceFromEdge_;
//- In mapping whether to reverse the flux.
PackedBoolList flipFaceFlux_;
//- Zone of face
DynamicList<label> faceZone_;
//- Orientation of face in zone
PackedBoolList faceZoneFlip_;
//- Active faces
label nActiveFaces_;
// Cells
//- Original cell label or master cell for added-from-cell;
// -1 for cells added from face or edge.
DynamicList<label> cellMap_;
//- For all original and added cells contains new cell label
// (used to map return value of addCell to new mesh cell)
DynamicList<label> reverseCellMap_;
//- Cells added from point
Map<label> cellFromPoint_;
//- Cells added from edge
Map<label> cellFromEdge_;
//- Cells added from face
Map<label> cellFromFace_;
//- Zone of cell
DynamicList<label> cellZone_;
// Private Member Functions
//- Reorder contents of container according to map
template<class T>
static void reorder(const labelList& map, DynamicList<T>&);
template<class T>
static void reorder(const labelList& map, List<DynamicList<T> >&);
template<class T>
static void renumberKey(const labelList& map, Map<T>&);
//- Renumber elements of container according to map
static void renumber(const labelList&, labelHashSet&);
//- Special handling of reverse maps which have <-1 in them
static void renumberReverseMap(const labelList&, DynamicList<label>&);
//- Renumber & compact elements of list according to map
static void renumberCompact(const labelList&, labelList&);
//- Get all set elements as a labelHashSet
static labelHashSet getSetIndices(const PackedBoolList&);
//- Count number of added and removed quantities from maps.
static void countMap
(
const labelList& map,
const labelList& reverseMap,
label& nAdd,
label& nInflate,
label& nMerge,
label& nRemove
);
//- Print some stats about mesh
static void writeMeshStats(const polyMesh& mesh, Ostream&);
//- Calculate object maps. Requires reverseMap to have destination
// to be marked with <-1.
static void getMergeSets
(
const labelList& reverseCellMap,
const labelList& cellMap,
List<objectMap>& cellsFromCells
);
//- Check inputs to modFace or addFace
void checkFace
(
const face&,
const label faceI,
const label own,
const label nei,
const label patchI,
const label zoneI
) const;
//- Construct cells (in packed storage)
void makeCells
(
const label nActiveFaces,
labelList& cellFaces,
labelList& cellFaceOffsets
) const;
//- Construct cellCells (in packed storage)
void makeCellCells
(
const label nActiveFaces,
CompactListList<label>& cellCells
) const;
//- Cell ordering (bandCompression). Returns number of remaining cells.
label getCellOrder(const CompactListList<label>&, labelList&) const;
//- Do upper-triangular ordering and patch ordering.
void getFaceOrder
(
const label nActiveFaces,
const labelList& cellFaces,
const labelList& cellFaceOffsets,
labelList& oldToNew,
labelList& patchSizes,
labelList& patchStarts
) const;
//- Compact and reorder faces according to map
void reorderCompactFaces
(
const label newSize,
const labelList& oldToNew
);
//- Remove all unused/removed points/faces/cells and update
// face ordering (always), cell ordering (bandcompression,
// orderCells=true),
// point ordering (sorted into internal and boundary points,
// orderPoints=true)
void compact
(
const bool orderCells,
const bool orderPoints,
label& nInternalPoints,
labelList& patchSizes,
labelList& patchStarts
);
//- Select either internal or external faces out of faceLabels
static labelList selectFaces
(
const primitiveMesh&,
const labelList& faceLabels,
const bool internalFacesOnly
);
//- Calculate mapping for patchpoints only
void calcPatchPointMap
(
const List<Map<label> >&,
const polyBoundaryMesh&,
labelListList&
) const;
void calcFaceInflationMaps
(
const polyMesh&,
List<objectMap>&,
List<objectMap>&,
List<objectMap>&
) const;
void calcCellInflationMaps
(
const polyMesh&,
List<objectMap>&,
List<objectMap>&,
List<objectMap>&,
List<objectMap>&
) const;
void resetZones
(
const polyMesh&, // mesh to get existing info from
polyMesh&, // mesh to change zones on
labelListList&,
labelListList&,
labelListList&
) const;
void calcFaceZonePointMap
(
const polyMesh&,
const List<Map<label> >&,
labelListList&
) const;
// Coupling
//- Rotate face by number of positions
static face rotateFace(const face& f, const label nPos);
//- Do all coupled patch face reordering
void reorderCoupledFaces
(
const bool syncParallel,
const polyBoundaryMesh&,
const labelList& patchStarts,
const labelList& patchSizes,
const pointField& points
);
void compactAndReorder
(
const polyMesh&,
const bool syncParallel,
const bool orderCells,
const bool orderPoints,
label& nInternalPoints,
pointField& newPoints,
labelList& patchSizes,
labelList& patchStarts,
List<objectMap>& pointsFromPoints,
List<objectMap>& facesFromPoints,
List<objectMap>& facesFromEdges,
List<objectMap>& facesFromFaces,
List<objectMap>& cellsFromPoints,
List<objectMap>& cellsFromEdges,
List<objectMap>& cellsFromFaces,
List<objectMap>& cellsFromCells,
List<Map<label> >& oldPatchMeshPointMaps,
labelList& oldPatchNMeshPoints,
labelList& oldPatchStarts,
List<Map<label> >& oldFaceZoneMeshPointMaps
);
public:
//- Runtime type information
ClassName("polyTopoChange");
// Constructors
//- Construct without mesh. Either specify nPatches or use
// setNumPatches before trying to make a mesh (makeMesh, changeMesh)
polyTopoChange(const label nPatches, const bool strict = true);
//- Construct from mesh. Adds all points/face/cells from mesh.
polyTopoChange(const polyMesh& mesh, const bool strict = true);
// Member Functions
// Access
//- Points. Shrunk after constructing mesh (or calling of compact())
const DynamicList<point>& points() const
{
return points_;
}
const DynamicList<face>& faces() const
{
return faces_;
}
const DynamicList<label>& region() const
{
return region_;
}
const DynamicList<label>& faceOwner() const
{
return faceOwner_;
}
const DynamicList<label>& faceNeighbour() const
{
return faceNeighbour_;
}
//- Is point removed?
inline bool pointRemoved(const label pointI) const;
//- Is face removed?
inline bool faceRemoved(const label faceI) const;
//- Is cell removed?
inline bool cellRemoved(const label cellI) const;
// Edit
//- Clear all storage
void clear();
//- Add all points/faces/cells of mesh. Additional offset for patch
// or zone ids.
void addMesh
(
const polyMesh&,
const labelList& patchMap,
const labelList& pointZoneMap,
const labelList& faceZoneMap,
const labelList& cellZoneMap
);
//- Explicitly pre-size the dynamic storage for expected mesh
// size for if construct-without-mesh
void setCapacity
(
const label nPoints,
const label nFaces,
const label nCells
);
//- Move all points. Incompatible with other topology changes.
void movePoints(const pointField& newPoints);
//- For compatibility with polyTopoChange: set topological action.
label setAction(const topoAction& action);
//- Add point. Return new point label.
// Notes:
// - masterPointID can be < 0 (appended points)
// - inCell = false: add retired point (to end of point list)
label addPoint
(
const point&,
const label masterPointID,
const label zoneID,
const bool inCell
);
//- Modify coordinate.
// Notes:
// - inCell = false: add retired point (to end of point list)
void modifyPoint
(
const label,
const point&,
const label newZoneID,
const bool inCell
);
//- Remove/merge point.
void removePoint(const label, const label);
//- Add face to cells. Return new face label.
// own,nei<0, zoneID>=0 : add inactive face (to end of face list)
label addFace
(
const face& f,
const label own,
const label nei,
const label masterPointID,
const label masterEdgeID,
const label masterFaceID,
const bool flipFaceFlux,
const label patchID,
const label zoneID,
const bool zoneFlip
);
//- Modify vertices or cell of face.
void modifyFace
(
const face& f,
const label faceI,
const label own,
const label nei,
const bool flipFaceFlux,
const label patchID,
const label zoneID,
const bool zoneFlip
);
//- Remove/merge face.
void removeFace(const label, const label);
//- Add cell. Return new cell label.
label addCell
(
const label masterPointID,
const label masterEdgeID,
const label masterFaceID,
const label masterCellID,
const label zoneID
);
//- Modify zone of cell
void modifyCell(const label, const label zoneID);
//- Remove/merge cell.
void removeCell(const label, const label);
//- Explicitly set the number of patches if construct-without-mesh
// used.
inline void setNumPatches(const label nPatches);
// Other
//- Inplace changes mesh without change of patches.
// Adapts patch start/end and by default does parallel matching.
// Clears all data. Returns map.
// inflate = true : keep old mesh points. Put new points into the
// returned map (preMotionPoints) so we can use inflation. Any
// points out of nothing (appended points) are vector::zero.
// inflate = false: set mesh points directly. Empty preMotionPoints
// in the map.
// orderCells : whether to order the cells (see bandCompression.H)
// orderPoints : whether to order the points into internal first
// followed by boundary points. This is not fully consistent
// with upper-triangular ordering of points and edges so
// is only done when explicitly asked for.
autoPtr<mapPolyMesh> changeMesh
(
polyMesh& mesh,
const bool inflate,
const bool syncParallel = true,
const bool orderCells = false,
const bool orderPoints = false
);
//- Create new mesh with old mesh patches
autoPtr<mapPolyMesh> makeMesh
(
autoPtr<fvMesh>& newMesh,
const IOobject& io,
const fvMesh& mesh,
const bool syncParallel = true,
const bool orderCells = false,
const bool orderPoints = false
);
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "polyTopoChangeI.H"
#ifdef NoRepository
# include "polyTopoChangeTemplates.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************ vim: set sw=4 sts=4 et: ************************ //
|