openfoam/tutorials/mesh
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
..
blockMesh STYLE: code cleanup searchableSurface (issue #929) 2018-07-06 11:03:28 +02:00
foamyHexMesh ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
foamyQuadMesh STYLE: code cleanup searchableSurface (issue #929) 2018-07-06 11:03:28 +02:00
moveDynamicMesh TUT: update snappy dictionaries to use minMedialAxisAngle 2018-07-18 16:47:34 +02:00
parallel ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
refineMesh/refineFieldDirs ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
snappyHexMesh ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
stitchMesh/simple-cube1 ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00