Skip to content
Snippets Groups Projects
  1. May 16, 2018
  2. May 15, 2018
  3. May 14, 2018
  4. May 11, 2018
  5. Mar 22, 2018
  6. May 11, 2018
  7. May 09, 2018
  8. May 10, 2018
  9. May 09, 2018
  10. May 08, 2018
  11. May 07, 2018
    • Mark OLESEN's avatar
      COMP: silence some compiler warnings/errors · 2f567e53
      Mark OLESEN authored
      - catch (value)
      - forward declarations for operator<<()
      - non-const access to Reaction name()
      - spurious return statement
      2f567e53
    • Mark OLESEN's avatar
      CONFIG: add Gcc81 · 272e09b0
      Mark OLESEN authored
      272e09b0
    • Mark OLESEN's avatar
      BUG: collated ensight not working with isosurfaces (closes #318) · 01a313d8
      Mark OLESEN authored
      - the problem arises since the various surface writers are stateless.
        The collated output format hacks around this limitation by adding in
        its own fieldDict caching (to disk).
      
        Now include an updateMesh() method to hook into geometry changes.
        This is considered a stop-gap measure until the surface output
        handling is improved.
      01a313d8
    • Mark OLESEN's avatar
      ENH: improvements in the surface sampling infrastructure · b0648f2b
      Mark OLESEN authored
      - improvement documentation for surface sampling.
      
      - can now specify alternative sampling scheme for obtaining the
        face values instead of just using the "cell" value. For example,
      
            sampleScheme    cellPoint;
      
        This can be useful for cases when the surface is close to a boundary
        cell and there are large gradients in the sampled field.
      
      - distanceSurface now handles non-closed surfaces more robustly.
        Unknown regions (not inside or outside) are marked internally and
        excluded from consideration. This allows use of 'signed' surfaces
        where not previously possible.
      b0648f2b
  12. May 03, 2018
  13. May 02, 2018
  14. Apr 30, 2018
  15. Mar 07, 2018
  16. Mar 05, 2018
    • Mark OLESEN's avatar
      STYLE: use direct iteration for HashSet · 4fe8ed82
      Mark OLESEN authored
      - The iterator for a HashSet dereferences directly to its key.
      
      - Eg,
      
            for (const label patchi : patchSet)
            {
                ...
            }
        vs.
            forAllConstIter(labelHashSet, patchSet, iter)
            {
                const label patchi = iter.key();
                ...
            }
      4fe8ed82