Skip to content
Snippets Groups Projects
  1. Jun 25, 2019
  2. Dec 19, 2018
  3. Jun 28, 2018
  4. Jul 15, 2016
  5. Dec 22, 2015
  6. Dec 09, 2015
  7. Dec 11, 2014
  8. Feb 17, 2014
  9. Aug 14, 2011
  10. Jun 17, 2011
  11. Jun 10, 2011
  12. Mar 08, 2011
  13. Feb 23, 2011
  14. Feb 22, 2011
  15. Jun 23, 2010
  16. 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
  17. Jun 13, 2008
    • Mark Olesen's avatar
      dictionary functionEntries cleanup · 1e8d4b2a
      Mark Olesen authored
        * added '#remove' function
        * changed insert() method name to more general execute()
        * using #inputMode or #remove within a primitiveEntry now provokes an error
        * adjusted the dictionaryTest accordingly
      1e8d4b2a
  18. Apr 15, 2008