Skip to content
Snippets Groups Projects
  1. Mar 12, 2021
  2. Mar 10, 2021
  3. Mar 09, 2021
    • Mark OLESEN's avatar
      CONFIG: bump API to 2102 · daf9af46
      Mark OLESEN authored
      - fvMeshDistribute and redistributePar changes
      daf9af46
    • Mark OLESEN's avatar
      ENH: noexcept size_bytes() method for lists · fa645c2d
      Mark OLESEN authored
      - for use when the is_contiguous check has already been done outside
        the loop. Naming as per std::span.
      
      STYLE: use data/cdata instead of begin
      
      ENH: replace random_shuffle with shuffle, fix OSX int64 ambiguity
      fa645c2d
    • Mark OLESEN's avatar
      ENH: improvements for token methods · 51cd7cee
      Mark OLESEN authored
      - direct check of punctuation.
        For example,
      
            while (!tok.isPunctuation(token::BEGIN_LIST)) ..
      
        instead of
      
        while (!(tok.isPunctuation() && tok.pToken() == token::BEGIN_LIST)) ..
      
        Using direct comparison (tok != token::BEGIN_LIST) can be fragile
        when comparing int values:
      
            int c = readChar(is);
            while (tok != c) ..  // Danger, uses LABEL comparison!
      
      - direct check of word.
        For example,
      
            if (tok.isWord("uniform")) ..
      
        instead of
      
            if (tok.isWord() && tok.wordToken() == "uniform") ..
      
      - make token lineNumber() a setter method
      
      ENH: adjust internal compound method empty() -> moved()
      
      - support named compound tokens
      
      STYLE: setter method for stream indentation
      51cd7cee
  4. Mar 08, 2021
  5. Mar 05, 2021
  6. Mar 04, 2021
  7. Mar 03, 2021
  8. Feb 22, 2021
  9. Feb 19, 2021
  10. Feb 17, 2021
  11. Feb 16, 2021
    • Kutalmış Berçin's avatar
      ENH: 'Math' namespace for mathematical functions · 66d1b54a
      Kutalmış Berçin authored and Mark OLESEN's avatar Mark OLESEN committed
      - centralises existing functions (erfInv, incGamma*, invIncGamma*).
        Provides a location for additional functions in the future.
      
      - adjusted existing models to use these functions
        (e.g. distributionModels::normal)
      66d1b54a
    • Kutalmış Berçin's avatar
      ENH: relax the tensor-inverse tolerance on Tensor (FULLDEBUG) · 0b1a33e9
      Kutalmış Berçin authored and Mark OLESEN's avatar Mark OLESEN committed
      0b1a33e9
    • Mark OLESEN's avatar
      CONFIG: relocate messageStream output level control to an InfoSwitch · 531e8ab6
      Mark OLESEN authored
      - location and naming more consistent with other controls
      
          old: DebugSwitch  'level'
          new: InfoSwitch   'outputLevel'
      531e8ab6
    • Mark OLESEN's avatar
      ENH: add HashPtrTable release method · b97cd5c3
      Mark OLESEN authored
      - effectively 'steals' the pointer from the table but leaves its
        name as a placeholder
      b97cd5c3
    • Mark OLESEN's avatar
      ENH: replace base implementation of Foam::Swap with std::swap · f8a0677a
      Mark OLESEN authored
      - eliminates a potentially invalid code branch.
        Since it essentially had the same internals as std::swap anyhow,
        make that more evident.
      
      ENH: use std::swap for basic types
      
      - makes it clearer that they do not rely on any special semantics
      f8a0677a
    • Mark OLESEN's avatar
      CONFIG: generate flat debian version name · 8c460d8e
      Mark OLESEN authored
      8c460d8e
    • Mark OLESEN's avatar
      COMP: include mpi information for versioned cmake build · f997013e
      Mark OLESEN authored
      - since the wrapped cmake calls generally use the regular build
        locations, add in MPI information to properly handle changes
        in that as well. This makes it easier to build for multiple MPI
        instances.
      f997013e
    • Mark OLESEN's avatar
      ENH: improve surfaceFieldValue sampling and writing (#1999) · 2954f55f
      Mark OLESEN authored
      - ensure surface writing is time-step and nFields aware.
        This avoids overwriting (ignoring) previous output fields.
      
      - allow sampled surfaces to be used for weight fields as well.
        Not sure why this restriction was still there.
      
      - remove old compatibility reading of orientedFields.
        Last used in v1612, now removed.
      
      - only use face sampling. For surfaceFieldValue we can only do
        something meaningful with face values.
      
      ENH: modify interface methods for surfaceWriter
      
      - replace direct modification of values with setter methods.
        Eg,
           old: writer.isPointData() = true;
           new: writer.isPointData(true);
      
        This makes it possible to add internal hooks to catch state changes.
      
      ENH: allow post-construction change to sampledSurface interpolation
      
      - rename interpolate() method to isPointData() for consistency with
        other classes and to indicate that it is a query.
      
      - additional isPointData(bool) setter method to change the expected
        representation type after construction
      
      - remove 'interpolate' restriction on isoSurfacePoint which was
        previously flagged as an error but within sampledSurfaces can use
        sampleScheme cellPoint and obtain representative samples.
        Relax this restriction since this particular iso-surface algorithm
        is slated for removal in the foreseeable future.
      2954f55f
  12. Feb 15, 2021