openfoam/tutorials/multiphase/overInterDyMFoam
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
..
boatAndPropeller ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
floatingBody ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
twoSimpleRotors ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00