openfoam/tutorials/mesh/stitchMesh/simple-cube1
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
..
scripts ENH: handle partially attached master/slave faces (issue #608) 2017-10-06 14:18:54 +02:00
system ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
Allclean ENH: handle partially attached master/slave faces (issue #608) 2017-10-06 14:18:54 +02:00
Allmesh STYLE: add End markers to some tutorials and finiteArea utils (issue #671) 2017-12-19 14:59:24 +01:00
Allrun ENH: add dictionary-driven multi-pass stitchMesh facility 2017-11-10 01:53:30 +01:00
Allrun-args ENH: add dictionary-driven multi-pass stitchMesh facility 2017-11-10 01:53:30 +01:00