topoSet: the sourceInfo sub-dictionary of the topoSetDict actions is now optional

and only needed if there is a name clash between entries in the source
specification and the set specification, e.g. "name":

    {
        name    rotorCells;
        type    cellSet;
        action  new;
        source  zoneToCell;
        sourceInfo
        {
            name    cylinder;
        }
    }
This commit is contained in:
Henry Weller
2021-07-27 14:07:37 +01:00
parent 6cc34206c3
commit 15a27fee87
78 changed files with 401 additions and 1097 deletions

View File

@ -20,13 +20,10 @@ actions
type cellSet;
action new;
source boxToCell;
sourceInfo
{
boxes
(
(0 -1 0.0) (0.005 1 0.01)
);
}
boxes
(
(0 -1 0.0) (0.005 1 0.01)
);
}
{
@ -34,10 +31,7 @@ actions
type cellZoneSet;
action new;
source setToCellZone;
sourceInfo
{
set injection;
}
set injection;
}
{
@ -45,13 +39,10 @@ actions
type cellSet;
action new;
source boxToCell;
sourceInfo
{
boxes
(
(0 -1 0.89) (0.025 1 0.9)
);
}
boxes
(
(0 -1 0.89) (0.025 1 0.9)
);
}
{
@ -59,10 +50,7 @@ actions
type cellZoneSet;
action new;
source setToCellZone;
sourceInfo
{
set outlet;
}
set outlet;
}
);