Skip to content
Snippets Groups Projects
  1. Jul 04, 2015
  2. Apr 24, 2015
  3. Feb 10, 2015
  4. Oct 29, 2013
  5. Feb 21, 2013
  6. Dec 05, 2012
  7. Aug 14, 2011
  8. Feb 08, 2011
  9. Jan 19, 2011
  10. Jan 14, 2011
  11. Jan 07, 2011
  12. Jan 05, 2011
  13. Nov 24, 2010
  14. Oct 13, 2010
  15. Jun 02, 2010
  16. Apr 27, 2010
  17. Mar 29, 2010
  18. Feb 17, 2010
  19. Dec 09, 2009
  20. Dec 04, 2009
  21. Dec 03, 2009
  22. Dec 02, 2009
  23. Nov 27, 2009
    • Mark Olesen's avatar
      coding style adherence · fa93ce8c
      Mark Olesen authored
      - markup codingStyleGuide.org examples so they actually indent correctly
      
      - use 'Info<<' as per codingStyleGuide instead of 'Info <<'
      fa93ce8c
  24. Oct 05, 2009
    • Mark Olesen's avatar
      blockMesh improvements · 2dcd867f
      Mark Olesen authored
      - expose point field throughout
      
      - make output less verbose, but can switch on/off with verbose() static method
      2dcd867f
  25. Sep 17, 2009
    • Mark Olesen's avatar
      blockMesh: most mesh data are now demand-driven · 897baf81
      Mark Olesen authored
      - Unless the points(), cells(), patches() methods are called, the classes
        should know maintain a lightweight representation for as long as possible.
      
      - bugfix: old-code used xferMove() instead of xferCopy() when creating the
        topology mesh - causing const pointField& to break if the code order was
        changed
      
      - relocate blockMesh from src/meshing -> src/mesh
      897baf81
  26. Sep 16, 2009
  27. Jul 09, 2009
  28. Jun 18, 2009
  29. May 19, 2009
  30. Feb 06, 2009
    • Mark Olesen's avatar
      OSspecific: altered file tests · ffd9bb08
      Mark Olesen authored
      - removed the previously added fileName type(), isDir(), isFile() methods.
      
      - added optional bool parameter to isFile() function to explicitly
        enable/disable the check for gzip files.
      
      - fixed minor bugginess where the default usage of isFile() would result in
        false positive matches.
      
      - be slightly more stringent and use isDir() and isFile() instead of
        exists() function when we actually know the expected type.
      ffd9bb08
  31. Jan 27, 2009
  32. Jan 15, 2009
  33. Jan 10, 2009
    • Mark Olesen's avatar
      Simplify checking of container (List/HashTable, strings) sizes · 95dcb6de
      Mark Olesen authored
      - can use 'XX.empty()' instead of 'XX.size() == 0', 'XX.size() < 1' or
        'XX.size() <= 0' or for simpler coding.
        It also has the same number of characters as '!XX.size()' and /might/ be
        more readable
      
      - many size checking had 'XX.size() > 0', 'XX.size() != 0', or 'XX.size() >= 1'
        when a simple 'XX.size()' suffices
      95dcb6de
  34. Dec 31, 2008
  35. Oct 27, 2008
  36. Oct 25, 2008
  37. Jul 29, 2008
  38. Jul 24, 2008
  39. Jul 23, 2008