openfoam/tutorials
Mark Olesen 4e48beffd4 ENH: support "one-shot" changes to the dictionary inputMode (issue #429)
- Instead of relying on #inputMode to effect a global change it is now
  possible (and recommended) to a temporary change in the inputMode
  for the following entry.

     #default   : provide default value if entry is not already defined
     #overwrite : silently remove a previously existing entry
     #warn      : warn about duplicate entries
     #error     : error if any duplicate entries occur
     #merge     : merge sub-dictionaries when possible (the default mode)

  This is generally less cumbersome than the switching the global
  inputMode. For example to provide a set of fallback values.

      #includeIfPresent "user-files"
      ...
      #default value uniform 10;

  vs.

      #includeIfPresent "user-files"
      #inputMode protect
      ...
      value uniform 10;
      #inputMode merge    // _Assuming_ we actually had this before

  These directives can also be used to suppress the normal dictionary
  merge semantics:

     #overwrite dict { entry val; ... }
2017-07-29 17:44:22 +02:00
..
basic TUT: script cleanup, provide cleanCase0 for commonly used operation 2017-10-12 19:20:56 +02:00
combustion TUT: script cleanup, provide cleanCase0 for commonly used operation 2017-10-12 19:20:56 +02:00
compressible ENH: Arrhenius viscocity model and energyTransport function-object 2017-10-25 10:17:55 -07:00
discreteMethods TUT: script cleanup, provide cleanCase0 for commonly used operation 2017-10-12 19:20:56 +02:00
DNS/dnsFoam/boxTurb16 TUT: script cleanup, provide cleanCase0 for commonly used operation 2017-10-12 19:20:56 +02:00
electromagnetics TUT: script cleanup, provide cleanCase0 for commonly used operation 2017-10-12 19:20:56 +02:00
financial/financialFoam/europeanCall TUT: use general 'scale' instead of 'convertToMeters' in blockMeshDict 2017-08-03 06:38:30 +02:00
heatTransfer ENH: support "one-shot" changes to the dictionary inputMode (issue #429) 2017-07-29 17:44:22 +02:00
incompressible ENH: support "one-shot" changes to the dictionary inputMode (issue #429) 2017-07-29 17:44:22 +02:00
IO/fileHandler TUT: script cleanup, provide cleanCase0 for commonly used operation 2017-10-12 19:20:56 +02:00
lagrangian TUT: script cleanup, provide cleanCase0 for commonly used operation 2017-10-12 19:20:56 +02:00
mesh BUG: missing parallel-aware for metis-like decomposition 2017-10-13 12:45:28 +02:00
multiphase ENH: Arrhenius viscocity model and energyTransport function-object 2017-10-25 10:17:55 -07:00
preProcessing/createZeroDirectory TUT: script cleanup, provide cleanCase0 for commonly used operation 2017-10-12 19:20:56 +02:00
resources/geometry TUT: simple tutorial demonstrating lumpedPointMotion 2017-06-23 14:52:27 +01:00
stressAnalysis TUT: script cleanup, provide cleanCase0 for commonly used operation 2017-10-12 19:20:56 +02:00
Allclean STYLE: adjust ordering of 'find' command arguments 2017-02-21 19:19:04 +01:00
Allrun STYLE: pass through -test argument 2017-10-20 14:10:12 +02:00
Alltest BUG: Allrun: run in non-test mode. Handle ./Alltest correctly 2017-10-05 09:52:17 +01:00