- Jun 07, 2024
-
-
Andrew Heather authored
-
- Dec 20, 2023
-
-
Andrew Heather authored
-
- Dec 15, 2023
-
-
Mark OLESEN authored
- use Foam::zero as a dispatch tag FIX: return moleculeCloud::constProps() List by reference not copy STYLE: range-for when iterating cloud parcels STYLE: more consistent typedefs / declarations for Clouds
-
- Dec 05, 2023
-
-
- Nov 14, 2023
-
-
Andrew Heather authored
- unspecified field names now return a value of 1 by default - new debug switch can be used to see default selections STYLE: Minor code reformatting
-
- Nov 10, 2023
-
-
-
-
-
STYLE: replace ':' scoping with IOobject::scopedName()
-
- Oct 13, 2023
-
-
Mark OLESEN authored
- explicit use of UPstream::worldComm in globalIndex methods for more clarity - adjust method declaration ordering: de-emphasize the processor-local convenience methods - consistent use of leading tag dispatch, remove unused enum-based dispatch tag - add begin()/cbegin() with offset (as per List containers) BUG: missing use of communicator in globalIndex gatherNonLocal - does not affect any existing code (which all use worldComm anyhow)
-
- Oct 12, 2023
-
-
Andrew Heather authored
-
- Oct 11, 2023
-
-
- adds some consistency
-
Kutalmış Berçin authored
-
- Oct 04, 2023
-
-
Kutalmış Berçin authored
-
- Aug 29, 2023
-
-
Mark OLESEN authored
-
- Jul 31, 2023
-
-
Mark OLESEN authored
-
- Jul 27, 2023
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
- Jul 05, 2023
-
-
- continue to support spherical by default (for compatibility) but add the 'spherical' switch to disable that and use a cubic distribution instead. STYLE: reduce number of inline files Co-authored-by: Mark Olesen <>
-
- Jun 01, 2023
-
-
- enable 'faceZones' support. - enable 'writeFile' support to better control file output. - rename 'PatchPostProcessing' as 'ParticlePostProcessing' for better clarity. - fix #1808
-
- enable 'faceZone' support. - introduce 'cloudFunctionObjectTools' to simplify collection of particle info on patches or face zones. - enable 'writeFile' support to better control file output. - rename 'PatchParticleHistogram' as 'ParticleHistogram' for better clarity.
-
- May 30, 2023
-
-
Andrew Heather authored
-
- May 18, 2023
-
-
Mark OLESEN authored
- use typeHeaderOk<regIOobject>(false) for some generic file existence checks. Often had something like labelIOField as a placeholder, but that may be construed to have a particular something.
-
- May 15, 2023
-
-
- May 09, 2023
-
-
Mark OLESEN authored
- this complements the whichPatch(meshFacei) method [binary search] and the list of patchID() by adding internal range checks. eg, Before ~~~~~~ if (facei >= mesh.nInternalFaces() && facei < mesh.nFaces()) { patchi = pbm.patchID()[facei - mesh.nInternalFaces()]; ... } After ~~~~~ patchi = pbm.patchID(facei); if (patchi >= 0) { ... }
-
Mark OLESEN authored
- with IOobject::scopedName instead of literal ':' for future transitioning of separators
-
Mark OLESEN authored
ENH: add phaseScopedName convenience method - unites IOobject::scopedName + phasePropertyName
-
- May 02, 2023
-
-
Mark OLESEN authored
-
- Apr 25, 2023
-
-
Mark OLESEN authored
-
- Apr 20, 2023
-
-
Andrew Heather authored
-
- Apr 13, 2023
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
- Apr 04, 2023
-
-
Mark OLESEN authored
-
- Mar 23, 2023
-
-
Mark OLESEN authored
- missed consistency in a few places. - return nullptr (with automatic conversion to tmp) on failures instead of tmp<....>(nullptr), for cleaner coding. INT: add support for an 'immovable' tmp pointer - this idea is from openfoam.org, to allow creation of a tmp that is protected from having its memory reclaimed in field operations ENH: tmp NewImmovable factory method, forwards as immovable/movable
-
- Mar 10, 2023
-
-
Mark OLESEN authored
- self-documenting
-
- Feb 27, 2023
-
-
Mark OLESEN authored
ENH: add pTraits and IO for std::int8_t STYLE: cull some implicitly available includes - pTraits.H is included by label/scalar etc - zero.H is included by UList STYLE: cull redundant forward declarations for Istream/Ostream
-
- Feb 21, 2023
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
- Feb 20, 2023
-
-
Mark OLESEN authored
- simplifies handling, consistent with PatchFunction1 STYLE: use Function1 NewIfPresent instead of separate found/New
-