Skip to content
Snippets Groups Projects
  1. May 06, 2021
  2. Apr 26, 2021
    • Mark OLESEN's avatar
      STYLE: default construct empty dictionaries · 385f9273
      Mark OLESEN authored
      - some code used copy construct from dictionary::null instead.
        The result is the same but suggests that something else may be intended.
        Only need dictionary::null for const-ref usage.
      385f9273
  3. Mar 18, 2021
  4. Dec 21, 2020
  5. Jul 16, 2020
  6. Jun 24, 2020
  7. Jun 02, 2020
    • Mark OLESEN's avatar
      ENH: unify use of dictionary method names · 3e43edf0
      Mark OLESEN authored
      - previously introduced `getOrDefault` as a dictionary _get_ method,
        now complete the transition and use it everywhere instead of
        `lookupOrDefault`. This avoids mixed usage of the two methods that
        are identical in behaviour, makes for shorter names, and promotes
        the distinction between "lookup" access (ie, return a token stream,
        locate and return an entry) and "get" access (ie, the above with
        conversion to concrete types such as scalar, label etc).
      3e43edf0
  8. May 04, 2020
  9. May 01, 2020
  10. Apr 28, 2020
  11. Apr 06, 2020
    • sergio's avatar
      ENH: Adding option to thermalBaffle to be used as external/internal baffle · 0eed8fa8
      sergio authored
        Now the thermal baffle can be extrapolated from a patch which is
        coupled to the bottom patch of the solid region.
      
        The user can set the T bc on the 'top' patch of the solid.
      
        The new keyword is 'internal' and its default is true. Check new
        tutorial for an example:
      
        tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/
      0eed8fa8
  12. Mar 26, 2020
  13. Feb 21, 2020
  14. Feb 19, 2020
  15. Jan 13, 2020
  16. Nov 13, 2019
  17. Oct 31, 2019
  18. Nov 06, 2019
  19. Oct 01, 2019
  20. Oct 02, 2019
  21. Sep 20, 2019
  22. Jul 16, 2019
  23. Jul 12, 2019
  24. Jun 26, 2019
  25. Apr 28, 2019
  26. May 17, 2019
  27. Jan 23, 2019
  28. Jan 07, 2019
  29. Feb 13, 2019
  30. Feb 06, 2019
  31. Jan 18, 2019
  32. Jan 09, 2019
  33. Jan 03, 2019
    • Mark OLESEN's avatar
      ENH: additional read guards for dimensionedType. input consistency (#762, #1148) · 6a448016
      Mark OLESEN authored
      - provide a lookupOrDefault constructor form, since this is a fairly
        commonly used requirement and simplifies the calling sequence.
      
        Before
      
            dimensionedScalar rhoMax
            (
                dimensionedScalar::lookupOrDefault
                (
                    "rhoMax",
                    pimple.dict(),
                    dimDensity,
                    GREAT
                )
           );
      
        After
      
            dimensionedScalar rhoMax("rhoMax", dimDensity, GREAT, pimple.dict());
      
      - read, readIfPresent methods with alternative lookup names.
      
      - Mark the Istream related constructors with compile-time deprecated
        warnings.
      
      BUG: read, readIfPresent methods not handling optional dimensions (#1148)
      6a448016
  34. Dec 11, 2018
    • Mark OLESEN's avatar
      ENH: use Zero when zero-initializing types · 1d85fecf
      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)
      1d85fecf
  35. Oct 19, 2018
  36. Oct 17, 2018
    • Mark OLESEN's avatar
      ENH: simplify objectRegistry access names (issue #322) · 8fabc325
      Mark OLESEN authored
        New name:  findObject(), cfindObject()
        Old name:  lookupObjectPtr()
      
            Return a const pointer or nullptr on failure.
      
        New name:  findObject()
        Old name:  --
      
            Return a non-const pointer or nullptr on failure.
      
        New name:  getObjectPtr()
        Old name:  lookupObjectRefPtr()
      
            Return a non-const pointer or nullptr on failure.
            Can be called on a const object and it will perform a
            const_cast.
      
      - use these updated names and functionality in more places
      
      NB: The older methods names are deprecated, but continue to be defined.
      8fabc325
  37. Oct 15, 2018
    • Mark OLESEN's avatar
      ENH: rationalize dictionary access methods · c6520033
      Mark OLESEN authored
      - use keyType::option enum to consolidate searching options.
        These enumeration names should be more intuitive to use
        and improve code readability.
      
          Eg,   lookupEntry(key, keyType::REGEX);
          vs    lookupEntry(key, false, true);
      
        or
      
          Eg,   lookupEntry(key, keyType::LITERAL_RECURSIVE);
          vs    lookupEntry(key, true, false);
      
      - new findEntry(), findDict(), findScoped() methods with consolidated
        search options for shorter naming and access names more closely
        aligned with other components. Behave simliarly to the
        methods lookupEntryPtr(), subDictPtr(), lookupScopedEntryPtr(),
        respectively. Default search parameters consistent with lookupEntry().
      
          Eg, const entry* e = dict.findEntry(key);
          vs  const entry* e = dict.lookupEntryPtr(key, false, true);
      
      - added '*' and '->' dereference operators to dictionary searchers.
      c6520033
  38. Oct 12, 2018
    • Mark OLESEN's avatar
      ENH: avoid readScalar, readLabel etc from dictionary (#762, #1033) · 8eddcc07
      Mark OLESEN authored
      - use the dictionary 'get' methods instead of readScalar for
        additional checking
      
           Unchecked:  readScalar(dict.lookup("key"));
           Checked:    dict.get<scalar>("key");
      
      - In templated classes that also inherit from a dictionary, an additional
        'template' keyword will be required. Eg,
      
           this->coeffsDict().template get<scalar>("key");
      
        For this common use case, the predefined getXXX shortcuts may be
        useful. Eg,
      
           this->coeffsDict().getScalar("key");
      8eddcc07
  39. Oct 01, 2018