1 /*--------------------------------*- C++ -*----------------------------------*\
3 | \\ / F ield | foam-extend: Open Source CFD |
4 | \\ / O peration | Version: 3.2 |
5 | \\ / A nd | Web: http://www.foam-extend.org |
6 | \\/ M anipulation | |
7 \*---------------------------------------------------------------------------*/
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Name of set to operate on
20 // One of clear/new/invert/add/delete|subset/list
23 // Actions to apply to pointSet. These are all the topoSetSource's ending
24 // in ..ToFace (see the meshTools library).
27 // Copy elements from faceSet
33 // Select based on cellSet
37 option all; // All faces of cells
38 //option both; // Only faces whose owner&neighbour are in cellSet
41 // Select based on pointSet
45 option any; // Faces using any point in pointSet
46 //option all // Faces with all points in pointSet
49 // Select by explicitly providing face labels
52 value (12 13 56); // labels of faces
58 name ".*Wall"; // Name of patch, regular expressions allowed
61 // All faces of faceZone
64 name ".*Zone1"; // Name of faceZone, regular expressions allowed
67 // Faces with face centre within box
73 // Faces with normal to within certain angle aligned with vector.
76 normal (0 0 1); // Vector
77 cos 0.01; // Tolerance (max cos of angle)
81 // ************************************************************************* //