Skip to content
Snippets Groups Projects
  1. Jun 07, 2017
  2. Jun 01, 2017
    • sergio's avatar
      Modification on rhoPimpleFoam pEq's for handling rho thermo and incompressible... · d1b65153
      sergio authored
      Modification on rhoPimpleFoam pEq's for handling rho thermo and incompressible EoS. Adding rho limiters if p is limited.
      This is important when LTS stepping or large Co number is used.
      
      Updating rhoBuoyantPimpleFoam to handle closed domain for rho thermo and incompressible Eos.
      Consolidating chtMultiRegionSimpleFoam and chtMultiRegionFoam pEqs to use the same formulation as rhoBuoyantPimpleFoam and
      rhoBuoyantSimpleFoam
      d1b65153
  3. May 31, 2017
  4. Jun 06, 2017
  5. Jun 05, 2017
  6. Jun 02, 2017
  7. Jun 01, 2017
  8. May 31, 2017
  9. May 30, 2017
  10. May 29, 2017
  11. May 26, 2017
    • Mark OLESEN's avatar
      BUG: non-lazy PackedList (fixes #484) · dd54aa30
      Mark OLESEN authored
      - The unset() method never auto-vivifies, whereas the set() method
        always auto-vivifies. In the case where set() is called with a zero
        for its argument - eg, set(index, 0) - this should behave
        identically to an unset() and not auto-vivify out-of-range entries.
      dd54aa30
    • sergio's avatar
      Adding optional build of the thermo tpe per reaction. This thermo is not... · 9bc87005
      sergio authored
      Adding optional build of the thermo tpe per reaction. This thermo is not necessary for  solid reactions.
      NOTE: in Reaction.C constructors bool initReactionThermo is used by solidReaction where there is no
      need of setting a lhs - rhs thermo type for each reaction. This is needed for mechanism with reversible reactions
      9bc87005
    • Mark OLESEN's avatar
      8f1a4f79
    • Mark OLESEN's avatar
    • Mark OLESEN's avatar
      ENH: HashTable cfind() method returning a const_iterator · b8300759
      Mark OLESEN authored
      - This follows the same idea as cbegin/cend and is helpful when using
        C++11 auto to ensure we have unambiguous const-safe access.
      
        Previously:
        ====
          typename someLongClass::const_iterator iter = someTable.find(key);
      
          ... later on:
          *iter = value; // Oops, but caught by compiler.
      
        We can save some typing with auto, but it is uncertain what we get:
        ====
          auto iter = someTable.find(key);
              // iterator or const_iterator?
              // depends on someTable having const or non-const access.
      
          ... later on:
          *iter = value;  // Oops, but not caught by compiler.
      
        Using cfind instead, auto will deduce const_iterator as the type:
        ====
          auto iter = someTable.cfind(key);  // definitely const_iterator
      
          ... later on:
          *iter = value; // Oops, but caught by compiler.
      b8300759