- Apr 25, 2022
-
-
sergio authored
-
- Apr 22, 2022
- Apr 19, 2022
-
-
mattijs authored
-
- Apr 14, 2022
- Apr 13, 2022
- Apr 12, 2022
- Apr 08, 2022
-
-
Mark OLESEN authored
-
- Apr 07, 2022
-
-
mattijs authored
-
- Mar 31, 2022
-
-
Mark OLESEN authored
- `functions<scalar>` and `functions<vector>` were erroneously documented in header as `lookup<scalar>` etc. INT: handle fluent square brackets (fixes #2429) - patch applied from openfoam.org
-
Mark OLESEN authored
- support direct processing of CompactListList instead of requiring a conversion to labelListList for bandCompression and renumbering methods. - manage FIFO with CircularBuffer instead of SLList (avoids allocations in inner loops). Invert logic to use a bitSet of unvisited cells, which improves looping as the matrix becomes more sparse. - fix missed weighting in bandCompression (same as #1376). In polyTopoChange, handle removed cells immediately to simplify the logic and align more closely with bandCompression. STYLE: enclose bandCompression within meshTools namespace ENH: PrimitivePatch pointFaces with DynamicList instead of SLList
-
Mark OLESEN authored
-
Mark OLESEN authored
- MPI_Gatherv requires contiguous data, but a byte-wise transfer can quickly exceed the 'int' limits used for MPI sizes/offsets. Thus gather label/scalar components when possible to increase the effective size limit. For non-contiguous types (or large contiguous data) now also reverts to manual handling ENH: handle contiguous data in GAMGAgglomeration gather values - delegate to globalIndex::gatherValues static method (new)
-
Mark OLESEN authored
- supports gatherv of label and scalar types - combine blocking and non-blocking interfaces in UPstreamWrapping (code reduction). DEFEATURE: remove unused UPstream allToAllv wrapping - backend interface preserved in UPstreamWrapping COMP: add genericListBroadcast - simplifies code
-
Mark OLESEN authored
- bundles frequently used 'gather/scatter' patterns more consistently. - combineAllGather -> combineGather + broadcast - listCombineAllGather -> listCombineGather + broadcast - mapCombineAllGather -> mapCombineGather + broadcast - allGatherList -> gatherList + scatterList - reduce -> gather + broadcast (ie, allreduce) - The allGatherList currently wraps gatherList/scatterList, but may be replaced with a different algorithm in the future. STYLE: PstreamCombineReduceOps.H is mostly unneeded now
-
- Mar 30, 2022
-
-
Mark OLESEN authored
STYLE: LduInterfaceFieldPtrsList as alias instead of a class STYLE: define patch lists typedefs when defining the base patch - eg, polyPatchList typedef within polyPatch.H INT: relocate GeometricField::Boundary -> GeometricBoundaryField - was internal to GeometricField but moving it outside simplifies forward declarations etc. Code adapted from openfoam.org
-
mattijs authored
-
- Mar 25, 2022
-
-
sergio authored
-
- Mar 24, 2022
-
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
-
- Mar 23, 2022
- Mar 17, 2022
-
-
mattijs authored
-
mattijs authored
Two problems: - flipping inside snappyHexMesh is not done in a parallel consistent way. So e.g. the octree-cached inside/outside information has already been calculated. For now flipping of distributedTriSurfaceMesh is disabled. - octree-cached inside/outside information was using already cached information and would only work for outwards pointing volumes
-
- Mar 16, 2022
-
-
Mark OLESEN authored
- percent of cells is taken relative to selection size. - percent of faces is taken relative to the number of boundary faces that do not fix velocity themselves. ENH: avoid correctBoundaryConditions() if values were not limited
-
Mark OLESEN authored
- areaWrite and fileFieldSelection
-
Mark OLESEN authored
- when writing surface formats (eg, vtk, ensight etc) the sampled surfaces merge the faces/points originating from different processors into a single surface (ie, patch gatherAndMerge). Previous versions of mergePoints simply merged all points possible, which proves to be rather slow for larger meshes. This has now been modified to only consider boundary points, which reduces the number of points to consider. As part of this change, the reference point is now always equivalent to the min of the bounding box, which reduces the number of search loops. The merged points retain their original order. - inplaceMergePoints version to simplify use and improve code robustness and efficiency. ENH: make PrimitivePatch::boundaryPoints() less costly - if edge addressing does not already exist, it will now simply walk the local face edges directly to define the boundary points. This avoids a rather large overhead of the full faceFaces, edgeFaces, faceEdges addressing. This operation is now more important since it is used in the revised patch gatherAndMerge. ENH: topological merge for mesh-based surfaces in surfaceFieldValue
-
- Mar 15, 2022
-
-
Mark OLESEN authored
-
Mark OLESEN authored
- similar to edge valid(), true if vertices are unique, non-negative
-
- Mar 13, 2022
-
-
Mark OLESEN authored
-
Mark OLESEN authored
- Pstream changes, coordSetWriters etc.
-