Skip to content
Snippets Groups Projects
  1. Jun 28, 2018
  2. Jul 15, 2016
  3. Dec 22, 2015
  4. Dec 09, 2015
  5. Dec 11, 2014
  6. Feb 17, 2014
  7. Aug 14, 2011
  8. Jun 17, 2011
  9. Jun 10, 2011
  10. Mar 08, 2011
  11. Feb 23, 2011
  12. Feb 22, 2011
  13. Jun 23, 2010
  14. 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
  15. 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
  16. Apr 15, 2008