FieldToCellSet

From OpenFOAMWiki
Revision as of 17:01, 2 September 2012 by Fcollonv (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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
         }
    }
);