openfoam/tutorials/heatTransfer/chtMultiRegionFoam
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
..
externalCoupledHeater ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
externalSolarLoad ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
multiRegionHeater ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
reverseBurner ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
snappyMultiRegionHeater TUT: missing semi-colons 2018-10-19 21:48:31 +02:00
windshieldCondensation ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00
windshieldDefrost ENH: make sourceInfo sub-dictionary optional for topoSet (#1060) 2018-11-07 10:33:36 +01:00