- 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
-
-
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
-
- 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 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 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
-
- Feb 20, 2023
-
-
Mark OLESEN authored
- simplifies handling, consistent with PatchFunction1 STYLE: use Function1 NewIfPresent instead of separate found/New
-
- Feb 14, 2023
-
-
Mark OLESEN authored
- in several cases can use the PstreamBuffers recvDataCount(proci) on the receiving part of the logic
-
- Feb 13, 2023
-
-
Mark OLESEN authored
-
Mark OLESEN authored
* (dimMass/dimTime) instead of (dimDensity*dimVelocity*dimArea) * (dimVolume/dimTime) instead of (dimVelocity*dimArea)
-
- Dec 12, 2022
-
-
Andrew Heather authored
Specified using the optional 'omega' entry (Function1 type), e.g. for a constant value: omega 12.56; Note that the swirl contribution is applied in addition to the velocity set by the 'flowType' option. For example, for the 'constantVelocity' option, parcels are initially set the velocity according to the UMag and direction/cone angle; the swirl velocity is then added.
-
- Dec 09, 2022
-
-
STYLE: lagrangian intermediate library - renamed log_ to logToFile_ to disambiguate against output to Info
-