mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: topoSetSource::SUBTRACT enum action (#1060)
- old 'DELETE' enum was easily confused with 'REMOVE', which removes the set, not the elements from the set. - provide corresponding subtractSet() method STYLE: HashSet set/unset instead of insert/erase methods in topoSetSource - simplifies switching to/from bitSet storage
This commit is contained in:
@ -59,7 +59,7 @@ actions
|
||||
{
|
||||
name c1;
|
||||
type cellSet;
|
||||
action delete;
|
||||
action subtract;
|
||||
source cellToCell;
|
||||
sourceInfo
|
||||
{
|
||||
|
||||
@ -65,7 +65,7 @@ actions
|
||||
{
|
||||
name baffleFaceSet;
|
||||
type faceSet;
|
||||
action delete;
|
||||
action subtract;
|
||||
source boxToFace;
|
||||
sourceInfo
|
||||
{
|
||||
|
||||
@ -63,7 +63,7 @@ actions
|
||||
{
|
||||
name c0;
|
||||
type cellSet;
|
||||
action delete;
|
||||
action subtract;
|
||||
source faceToCell;
|
||||
sourceInfo
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user