openfoam/tutorials/mesh/refineMesh/refineFieldDirs
Mark Olesen 5f556ffb4a ENH: make sourceInfo sub-dictionary optional for topoSet (#1060)
- helps reduce clutter in the topoSetDict files.

  Caveats when using this.

  The older specification styles using "name" will conflict with the
  set name. Eg,

    {
        name    f0
        type    faceSet;
        action  add;
        source  patchToFace;
        sourceInfo
        {
            name   inlet;
        }
    }

    would flattened to the following
    {
        name    f0
        type    faceSet;
        action  add;
        source  patchToFace;
        name   inlet;
    }
    which overwrites the "name" used for the faceSet.

    The solution is to use the updated syntax:

    {
        name    f0
        type    faceSet;
        action  add;
        source  patchToFace;
        patch   inlet;
    }
2018-11-07 10:33:36 +01:00
..
calcRadiusField STYLE: more consistent use of dimensioned Zero, scalar decimal points 2018-07-13 10:28:48 +02:00
system ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
Allclean TUT: script cleanup, provide cleanCase0 for commonly used operation 2017-10-12 19:20:56 +02:00
Allrun TUT: consistency in Allclean Allrun scripts 2018-06-21 15:19:09 +02:00