- 12 Jul, 2019 1 commit
-
-
Mark Olesen authored
- now catch these and emit a warning. Still need to investigate the root cause in the caller(s) or regionSplit.
-
- 13 Jun, 2019 1 commit
-
-
mattijs authored
-
- 06 Jun, 2019 1 commit
-
-
Andrew Heather authored
-
- 05 Jun, 2019 1 commit
-
-
- lduSolver: solveScalar for coarse-level solve; normFactor etc - lduMatrix: have smoother natively use solveScalarField
-
- 23 May, 2019 1 commit
-
-
Mark Olesen authored
STYLE: remove unused local variables in edgeMeshFormat
-
- 10 May, 2019 1 commit
-
-
Mark Olesen authored
- adjust naming of quaternion 'rotationSequence' to be 'eulerOrder' to reflect its purpose. - provide rotation matrices directly for these rotation orders in coordinateRotations::euler for case in which the rotation tensor is required but not a quaternion.
-
- 03 May, 2019 1 commit
-
-
Mark Olesen authored
-
- 02 May, 2019 2 commits
-
-
sergio authored
ENH: Several modifycations to avoid erroneuos rays to be shot from wrong faces. ENH: Updating tutorials and avoiding registration of the coarse singleCellFvMesh Adding solarLoad tutorial case simpleCarSolarPanel ENH: Changes needed for the merge
-
sergio authored
Adding reflecting fluxes to Solar load radiation model. Adding functionality to the boundary radiation models and new place holder for basic wall types such as transparent, opaqueDiffusive, opaqueReflective,etc. Changing radiation wall models to run time selectable. Adding multi-band capabilities to VF model and improving the set up for using solar loads in VF and fvDOM radiation models.
-
- 29 Apr, 2019 1 commit
-
-
Mark Olesen authored
- Eg, with surface writers now in surfMesh, there are fewer libraries depending on conversion and sampling. COMP: regularize linkage ordering and avoid some implicit linkage (#1238)
-
- 24 Apr, 2019 1 commit
-
-
Mark Olesen authored
- use an IndirectListBase class for various indirect list types. - new SortList type In some places the SortList can be used as a lightweight alternative to SortableList to have the convenience of bundling data and sort indices together, but while operating on existing data lists. In other situations, it can be useful as an alternative to sortedOrder. For example, pointField points = ...; labelList order; sortedOrder(points, order); forAll(order, i) { points[order[i]] = ...; } Can be replaced with the following (with the same memory overhead) pointField points = ...; SortList<point> sortedPoints(points); for (point& pt : sortedPoints) { pt = ...; } - new SliceList type (#1220), which can be used for stride-based addressing into existing lists
-
- 15 Apr, 2019 1 commit
-
-
Mark Olesen authored
- can be helpful for handling rotations within global planes
-
- 10 Apr, 2019 3 commits
- 08 Apr, 2019 1 commit
-
-
mattijs authored
-
- 05 Apr, 2019 1 commit
-
-
Mark Olesen authored
- this improves overall consistency and makes re-reading as a generic patch field behave properly when the underlying patch has zero size.
-
- 25 Mar, 2019 1 commit
-
-
- 19 Mar, 2019 1 commit
-
-
Mark Olesen authored
-
- 28 Feb, 2019 1 commit
-
-
mattijs authored
-
- 18 Feb, 2019 1 commit
-
-
mattijs authored
-
- 15 Feb, 2019 1 commit
-
-
Mark Olesen authored
- reduced clutter when iterating over containers
-
- 13 Feb, 2019 2 commits
-
-
Mark Olesen authored
- reduced clutter when iterating over containers
-
Mark Olesen authored
-
- 07 Feb, 2019 2 commits
- 06 Feb, 2019 3 commits
-
-
OpenFOAM bot authored
-
OpenFOAM bot authored
-
OpenFOAM bot authored
-
- 25 Jan, 2019 1 commit
-
-
Mark Olesen authored
- add compile-time detection of deprecated findIndex() function - replace occurrences of findIndex() with the equivalent container method
-
- 23 Jan, 2019 2 commits
-
-
Mark Olesen authored
- allows use in surfMesh library, which does not depend on meshTools
-
mattijs authored
-
- 21 Jan, 2019 1 commit
-
-
Mark Olesen authored
-
- 17 Jan, 2019 1 commit
-
-
mattijs authored
-
- 11 Jan, 2019 1 commit
-
-
Mark Olesen authored
-
- 10 Jan, 2019 1 commit
-
-
Mark Olesen authored
-
- 09 Jan, 2019 1 commit
-
-
Mark Olesen authored
- a valid() method (same as !empty() call) for consistency with other containers and data types - a centre() method (same as midpoint() method) for consistency with other OpenFOAM geometric entities
-
- 07 Jan, 2019 2 commits
-
-
mattijs authored
-
Mark Olesen authored
-
- 21 Dec, 2018 1 commit
-
-
Mark Olesen authored
- makes the intent clearer and avoids the need for additional constructor casting. Eg, labelList(10, Zero) vs. labelList(10, 0) scalarField(10, Zero) vs. scalarField(10, scalar(0)) vectorField(10, Zero) vs. vectorField(10, vector::zero)
-