FieldToCellSet

From OpenFOAMWiki

Name

fieldToCellSet

For versions 2.0 and superior, this tool doesn't exist used the following command in setSet to e.g. select all cells with a temperature between 289 K and 1250 K:

cellSet c0 new fieldToCell T 289 1250

or the following entries in topoSetDict to use with topoSet:

actions
(
    {
         name    selectedCells;
         type    cellSet;
         action  new;
         source  fieldToCell;
         sourceInfo
         {
             T 289 1250
         }
    }
);