- Oct 07, 2021
-
-
mattijs authored
-
- Oct 06, 2021
-
-
mattijs authored
-
- Oct 05, 2021
-
-
Andrew Heather authored
BUG: 2021-1: Various bug fixes and developments See merge request !489
-
- Oct 04, 2021
-
-
-
Kutalmış Berçin authored
ENH: add xrange option
-
Kutalmış Berçin authored
-
Kutalmış Berçin authored
-
Kutalmış Berçin authored
-
Kutalmış Berçin authored
-
Kutalmış Berçin authored
-
Kutalmış Berçin authored
-
- Oct 01, 2021
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
- writeCellData() and writePointData() for polyWriter - writeProcIDs for generic vtk patch writer
-
Mark OLESEN authored
- adjust zone addressing after surface face swap and upon construction
-
Mark OLESEN authored
-
Mark OLESEN authored
-
- Sep 30, 2021
-
-
Mark OLESEN authored
- slices on output and misses file/line information for IOerror
-
mattijs authored
-
- Sep 29, 2021
-
-
mattijs authored
Not tested; from visual inspection
-
- Sep 27, 2021
-
-
Andrew Heather authored
add point snapping to iso-surface topo algorithm (#2210) See merge request !488
-
Mark OLESEN authored
- helps avoid the creation of small face cuts (near corners, edges) that result in zero-size faces on output. CONFIG: make default iso-surface topo regularisation less aggressive - The full (diagcell) regularisation no longer includes cleaning of non-manifold surfaces by removing open edges. This can be selected by the 'clean' regularisation option instead. ie, 'clean' = 'full' + erode open edges ENH: additional debug modes for iso-surface topo - with (debug & 8) dumps out a VTK file of the tets to be cut and the calculated open edges.
-
Mark OLESEN authored
- PstreamBuffers for parallel VTK output. - avoids MPI overflows for larger meshes - new vtk::lineWriter for writing edges - vtk::fileWriter::writeUniform now also supports processor-specific uniform values instead of assuming that they are identical everywhere.
-
Mark OLESEN authored
- support simple mesh subsetting to vtu formats to enable debug output for a subsection of an existing polyMesh - rudimentary support for VTK from cellShapes is intended for handling basic primitive cell shapes without a full blown polyMesh description. For example, // Create an empty polyMesh with points only polyMesh debugMesh ( io, std::move(points), faceList(), // faces labelList(), // owner labelList(), // neighbour true // syncPar ); // Establish the appropriate VTK sizing for the TET shapes vtk::vtuCells vtuCells; vtuCells.resetShapes(debugCutTets); vtuCells.nPoints(debugMesh.nPoints()); NOTE Since the vtk::internalMeshWriter only uses the polyMesh reference for the points, it is also possible to create the vtuCells description without a pointField (or from a different mesh description) and write out the connectivity using the pointField from a different mesh.
-
Mark OLESEN authored
-
- Sep 22, 2021
-
-
Mark OLESEN authored
STYLE: replace short-circuit Allrun script with Alltest
-
Mark OLESEN authored
-
- Sep 21, 2021
-
-
Mark OLESEN authored
- replace unusable operator() calls with simple '<<' operations
-
- Sep 16, 2021
-
-
Andrew Heather authored
ENH: interpolate in cylindrical coordinates: See #2145 See merge request Development/openfoam!483
-
This intercepts all vector/tensor AMI interpolations and does the interpolation in cylindrical coordinates. Use (component) 'coupled' linear solver to enable this in the linear solver sweeps.
-
- Sep 15, 2021
-
-
Mark OLESEN authored
- similar to additional flag for the raw surface writer (#2003) Example, ``` formatOptions { vtk { normal yes; } }
-
- Sep 14, 2021
-
-
Andrew Heather authored
BUG: fix yPlus predictions of nut wall functions See merge request Development/openfoam!484
-
-
-
-
-
-
- Sep 08, 2021
-
-
Mark OLESEN authored
-
mattijs authored
-
- Sep 07, 2021
-
-
Mark OLESEN authored
- previously OpenFOAM library paths were set before adding in MPI-specific elements. However, this may mask some libraries. | New library order | Old library order | |---------------------|---------------------| | user-lib (serial) | various 3rd-party | | site-lib (serial) | foam-lib (mpi) | | foam-lib (mpi) | ext-lib (mpi) | | foam-lib (serial) | system mpi-libs | | ext-lib (mpi) | user-lib (serial) | | ext-lib (serial) | site-lib (serial) | | various 3rd-party | foam-lib (serial) | | system mpi-libs | ext-lib (serial) | | dummy | dummy |
-