/usr/include/freefoam/dynamicMesh/cellCuts.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 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 | /*---------------------------------------------------------------------------*\
========= |
\\ / 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::cellCuts
Description
Description of cuts across cells.
Description of cut is given as list of vertices and
list of edges to be cut (and position on edge).
Does some checking of correctness/non-overlapping of cuts. 2x2x2
refinement has to be done in three passes since cuts can not overlap
(would make addressing too complicated)
Introduces concept of 'cut' which is either an existing vertex
or a edge.
Input can either be
-# list of cut vertices and list of cut edges. Constructs cell
circumference walks ('cellLoops').
-# list of cell circumference walks. Will filter them so they
don't overlap.
-# cellWalker and list of cells to refine (refineCell). Constructs
cellLoops and does B. cellWalker is class which can cut a single
cell using a plane through the cell centre and in a certain normal
direction
CellCuts constructed from cellLoops (B, C) can have multiple cut-edges
and/or cut-point as long as there is per face only one (or none) cut across
a face, i.e. a face can only be split into two faces.
The information available after construction:
- pointIsCut, edgeIsCut.
- faceSplitCut : the cross-cut of a face.
- cellLoops : the loop which cuts across a cell
- cellAnchorPoints : per cell the vertices on one side which are
considered the anchor points.
AnchorPoints: connected loops have to be oriented in the same way to
be able to grow new internal faces out of the same bottom faces.
(limitation of the mapping procedure). The loop is cellLoop is oriented
such that the normal of it points towards the anchorPoints.
This is the only routine which uses geometric information.
Limitations:
- cut description is very precise. Hard to get right.
- do anchor points need to be unique per cell? Very inefficient.
- is orientation guaranteed to be correct? Uses geometric info so can go
wrong on highly distorted meshes.
- is memory inefficient. Probably need to use Maps instead of
labelLists.
SourceFiles
cellCuts.C
\*---------------------------------------------------------------------------*/
#ifndef cellCuts_H
#define cellCuts_H
#include <dynamicMesh/edgeVertex.H>
#include <OpenFOAM/labelList.H>
#include <OpenFOAM/boolList.H>
#include <OpenFOAM/scalarField.H>
#include <OpenFOAM/pointField.H>
#include <OpenFOAM/DynamicList.H>
#include <OpenFOAM/typeInfo.H>
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// Forward declaration of classes
class polyMesh;
class cellLooper;
class refineCell;
class plane;
/*---------------------------------------------------------------------------*\
Class cellCuts Declaration
\*---------------------------------------------------------------------------*/
class cellCuts
:
public edgeVertex
{
// Private data
// Per point/edge status
//- Is mesh point cut
boolList pointIsCut_;
//- Is edge cut
boolList edgeIsCut_;
//- If edge is cut gives weight (0->start() to 1->end())
scalarField edgeWeight_;
// Cut addressing
//- Cuts per existing face (includes those along edge of face)
// Cuts in no particular order.
mutable labelListList* faceCutsPtr_;
//- Per face : cut across edge (so not along existing edge)
// (can only be one per face)
Map<edge> faceSplitCut_;
// Cell-cut addressing
//- Loop across cell circumference
labelListList cellLoops_;
//- Number of valid loops in cellLoops_
label nLoops_;
//- For each cut cell the points on the 'anchor' side of the cell.
labelListList cellAnchorPoints_;
// Private Static Functions
//- Find value in first n elements of list.
static label findPartIndex
(
const labelList&,
const label n,
const label val
);
//- Create boolList with all labels specified set to true
// (and rest to false)
static boolList expand(const label size, const labelList& labels);
//- Create scalarField with all specified labels set to corresponding
// value in scalarField.
static scalarField expand
(
const label,
const labelList&,
const scalarField&
);
//- Returns -1 or index of first element of lst that cannot be found
// in map.
static label firstUnique
(
const labelList& lst,
const Map<label>&
);
// Private Member Functions
//- Debugging: write cell's edges and any cut vertices and edges
// (so no cell loop determined yet)
void writeUncutOBJ(const fileName&, const label cellI) const;
//- Debugging: write cell's edges, loop and anchors to directory.
void writeOBJ
(
const fileName& dir,
const label cellI,
const pointField& loopPoints,
const labelList& anchors
) const;
//- Find face on cell using the two edges.
label edgeEdgeToFace
(
const label cellI,
const label edgeA,
const label edgeB
) const;
//- Find face on cell using an edge and a vertex.
label edgeVertexToFace
(
const label cellI,
const label edgeI,
const label vertI
) const;
//- Find face using two vertices (guaranteed not to be along edge)
label vertexVertexToFace
(
const label cellI,
const label vertA,
const label vertB
) const;
// Cut addressing
//- Calculate faceCuts in face vertex order.
void calcFaceCuts() const;
// Loop (cuts on cell circumference) calculation
//- Find edge (or -1) on faceI using vertices v0,v1
label findEdge
(
const label faceI,
const label v0,
const label v1
) const;
//- Find face on which all cuts are (very rare) or -1.
label loopFace(const label cellI, const labelList& loop) const;
//- Cross otherCut into next faces (not exclude0, exclude1)
bool walkPoint
(
const label cellI,
const label startCut,
const label exclude0,
const label exclude1,
const label otherCut,
label& nVisited,
labelList& visited
) const;
//- Cross cut (which is edge on faceI) onto next face
bool crossEdge
(
const label cellI,
const label startCut,
const label faceI,
const label otherCut,
label& nVisited,
labelList& visited
) const;
// wrapper around visited[nVisited++] = cut. Checks for duplicate
// cuts.
bool addCut
(
const label cellI,
const label cut,
label& nVisited,
labelList& visited
) const;
//- Walk across faceI following cuts, starting at cut. Stores cuts
// visited
bool walkFace
(
const label cellI,
const label startCut,
const label faceI,
const label cut,
label& lastCut,
label& beforeLastCut,
label& nVisited,
labelList& visited
) const;
//- Walk across cuts (cut edges or cut vertices) of cell. Stops when
// hit cut already visited. Returns true when loop of 3 or more
// vertices found.
bool walkCell
(
const label cellI,
const label startCut, // overall starting cut
const label faceI,
const label prevCut, // current cut
label& nVisited,
labelList& visited
) const;
//- Determine for every cut cell the face it is cut by.
void calcCellLoops(const labelList& cutCells);
// Cell anchoring
//- Are there enough faces on anchor side of cellI?
bool checkFaces
(
const label cellI,
const labelList& anchorPoints
) const;
//- Walk unset edges of single cell from starting point and
// marks visited edges and vertices with status.
void walkEdges
(
const label cellI,
const label pointI,
const label status,
Map<label>& edgeStatus,
Map<label>& pointStatus
) const;
//- Check anchor points on 'outside' of loop
bool loopAnchorConsistent
(
const label cellI,
const pointField& loopPts,
const labelList& anchorPoints
) const;
//- Determines set of anchor points given a loop. The loop should
// split the cell into two. Returns true if a valid set of anchor
// points determined, false otherwise.
bool calcAnchors
(
const label cellI,
const labelList& loop,
const pointField& loopPts,
labelList& anchorPoints
) const;
//- Returns coordinates of points on loop with explicitly provided
// weights.
pointField loopPoints
(
const labelList& loop,
const scalarField& loopWeights
) const;
//- Returns weights of loop. Inverse of loopPoints.
scalarField loopWeights(const labelList& loop) const;
//- Check if cut edges in loop are compatible with ones in
// edgeIsCut_
bool validEdgeLoop
(
const labelList& loop,
const scalarField& loopWeights
) const;
//- Counts number of cuts on face.
label countFaceCuts
(
const label faceI,
const labelList& loop
) const;
//- Determines if loop through cellI consistent with existing
// pattern.
bool conservativeValidLoop
(
const label cellI,
const labelList& loop
) const;
//- Check if loop is compatible with existing cut pattern in
// pointIsCut, edgeIsCut, faceSplitCut.
// Calculates and returns for current cell the cut faces and the
// points on one side of the loop.
bool validLoop
(
const label cellI,
const labelList& loop,
const scalarField& loopWeights,
Map<edge>& newFaceSplitCut,
labelList& anchorPoints
) const;
//- Update basic cut information from cellLoops. Assumes cellLoops_
// already set and consistent.
void setFromCellLoops();
//- Update basic cut information for single cell from cellLoop.
bool setFromCellLoop
(
const label cellI,
const labelList& loop,
const scalarField& loopWeights
);
//- Update basic cut information from cellLoops. Checks for
// consistency with existing cut pattern.
void setFromCellLoops
(
const labelList& cellLabels,
const labelListList& cellLoops,
const List<scalarField>& cellLoopWeights
);
//- Cut cells and update basic cut information from cellLoops.
// Checks each loop for consistency with existing cut pattern.
void setFromCellCutter
(
const cellLooper&,
const List<refineCell>& refCells
);
//- Same as above but now cut with prescribed plane.
void setFromCellCutter
(
const cellLooper&,
const labelList& cellLabels,
const List<plane>&
);
//- Set orientation of loops
void orientPlanesAndLoops();
//- top level driver: adressing calculation and loop detection
void calcLoopsAndAddressing(const labelList& cutCells);
//- Check various consistencies.
void check() const;
//- Disallow default bitwise copy construct
cellCuts(const cellCuts&);
//- Disallow default bitwise assignment
void operator=(const cellCuts&);
public:
//- Runtime type information
ClassName("cellCuts");
// Constructors
//- Construct from cells to cut and pattern of cuts
cellCuts
(
const polyMesh& mesh,
const labelList& cutCells,
const labelList& meshVerts,
const labelList& meshEdges,
const scalarField& meshEdgeWeights
);
//- Construct from pattern of cuts. Detect cells to cut.
cellCuts
(
const polyMesh& mesh,
const labelList& meshVerts,
const labelList& meshEdges,
const scalarField& meshEdgeWeights
);
//- Construct from complete cellLoops through specified cells.
// Checks for consistency.
// Constructs cut-cut addressing and cellAnchorPoints.
cellCuts
(
const polyMesh& mesh,
const labelList& cellLabels,
const labelListList& cellLoops,
const List<scalarField>& cellEdgeWeights
);
//- Construct from list of cells to cut and direction to cut in
// (always through cell centre) and celllooper.
cellCuts
(
const polyMesh& mesh,
const cellLooper& cellCutter,
const List<refineCell>& refCells
);
//- Construct from list of cells to cut and plane to cut with and
// celllooper. (constructor above always cuts through cell centre)
cellCuts
(
const polyMesh& mesh,
const cellLooper& cellCutter,
const labelList& cellLabels,
const List<plane>& cutPlanes
);
//- Construct from components
cellCuts
(
const polyMesh& mesh,
const boolList& pointIsCut,
const boolList& edgeIsCut,
const scalarField& edgeWeight,
const Map<edge>& faceSplitCut,
const labelListList& cellLoops,
const label nLoops,
const labelListList& cellAnchorPoints
);
// Destructor
~cellCuts();
//- Clear out demand driven storage
void clearOut();
// Member Functions
// Access
//- Is mesh point cut
const boolList& pointIsCut() const
{
return pointIsCut_;
}
//- Is edge cut
const boolList& edgeIsCut() const
{
return edgeIsCut_;
}
//- If edge is cut gives weight (ratio between start() and end())
const scalarField& edgeWeight() const
{
return edgeWeight_;
}
//- Cuts per existing face (includes those along edge of face)
// Cuts in no particular order
const labelListList& faceCuts() const
{
if (!faceCutsPtr_)
{
calcFaceCuts();
}
return *faceCutsPtr_;
}
//- Gives for split face the two cuts that split the face into two.
const Map<edge>& faceSplitCut() const
{
return faceSplitCut_;
}
//- For each cut cell the cut along the circumference.
const labelListList& cellLoops() const
{
return cellLoops_;
}
//- Number of valid cell loops
label nLoops() const
{
return nLoops_;
}
//- For each cut cell the points on the 'anchor' side of the cell.
const labelListList& cellAnchorPoints() const
{
return cellAnchorPoints_;
}
// Other
//- Returns coordinates of points on loop for given cell.
// Uses cellLoops_ and edgeWeight_
pointField loopPoints(const label cellI) const;
//- Invert anchor point selection.
labelList nonAnchorPoints
(
const labelList& cellPoints,
const labelList& anchorPoints,
const labelList& loop
) const;
//- Flip loop for cellI. Updates anchor points as well.
void flip(const label cellI);
//- Flip loop for cellI. Does not update anchors. Use with care
// (only if you're sure loop orientation is wrong)
void flipLoopOnly(const label cellI);
// Write
//- debugging:Write list of cuts to stream in OBJ format
void writeOBJ
(
Ostream& os,
const pointField& loopPoints,
label& vertI
) const;
//- debugging:Write all of cuts to stream in OBJ format
void writeOBJ(Ostream& os) const;
//- debugging:Write edges of cell and loop
void writeCellOBJ(const fileName& dir, const label cellI) const;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************ vim: set sw=4 sts=4 et: ************************ //
|