Skip to content
Snippets Groups Projects
  1. May 19, 2009
  2. May 18, 2009
  3. May 19, 2009
  4. May 14, 2009
  5. May 12, 2009
  6. May 11, 2009
  7. May 08, 2009
    • Mark Olesen's avatar
      minor cleanup of turbulence models · 19d951ce
      Mark Olesen authored
      - added constructor dictionary(const dictionary*) that also handles NULL
        pointers and makes it convenient to construct from a possibly nonexistent
        sub-dictionary:
        eg,
            dictionary dict2(dict1.subDictPtr("someDict"));
      
      - make some of the turbulence Coeffs sub-dictionary optional.
        Their contents are all 'lookupOrAddDefault' anyhow.
      
      - in turbulentMixingLength BCs, skip namespace qualifier in template
        (eg, <RASModel> vs. <compressible::RASModel>)
      
      - change comments from 'turbulenceProperties' to RASProperties/LESProperties
      
      - consistency between compressible/incompressible - no separate file for
        'New' selector etc
      
      - consistency in accessing the model coefficients.
        Use method coeffDict() for const access.
        Use protected data member coeffDict_ for read/write access.
      
      - document model coefficients in etc/constant/RASProperties.
        Need the same for LESProperties before we can prune these from the
        tutorials.
      19d951ce
  8. May 06, 2009
  9. May 05, 2009
    • Mark Olesen's avatar
      adjusted dictionary #inputMode directive · 6e10b0de
      Mark Olesen authored
      - #inputMode error
        now issues a FatalError on duplicate entries
      
      - #inputMode warn
        issues a warning on duplicate entries, corresponds to the
        old behaviour of 'error'
      
      - #inputMode protect
        prevents overwriting existing entries
      
      The 'protect' mode provides a simple mechanism for supplying default values.
      eg,
          in file1:
              #inputMode  protect
              intensity       0.1;
              mixingLength    0.005;
              #inputMode  merge
      
              inlet
              {
                  type        turbulentIntensityKineticEnergyInlet;
                  intensity   $intensity;
              }
      
          which is included from file2:
      
              intensity   0.05;
              #include    "file1"
      6e10b0de
  10. Apr 30, 2009
  11. Apr 29, 2009
  12. Apr 28, 2009
    • Mark Olesen's avatar
      minor build fix · 3ce125ff
      Mark Olesen authored
      - createBaffles used List::append(const T&), changed to DynamicList
      3ce125ff
  13. Apr 27, 2009
  14. Apr 25, 2009
  15. Apr 24, 2009
  16. Apr 23, 2009
  17. Apr 22, 2009
  18. Apr 20, 2009
  19. Apr 17, 2009
  20. Apr 16, 2009
  21. Apr 15, 2009
  22. Apr 09, 2009