MCPcopy Create free account
hub / github.com/OpenFOAM/OpenFOAM-dev / faceSet

Class faceSet

src/meshTools/sets/topoSets/faceSet.H:49–127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47\*---------------------------------------------------------------------------*/
48
49class faceSet
50:
51 public topoSet
52{
53
54
55public:
56
57 //- Runtime type information
58 TypeName("faceSet");
59
60
61 // Constructors
62
63
64 //- Construct from IOobject
65 faceSet(const IOobject& obj);
66
67 //- Construct from objectRegistry and name
68 faceSet
69 (
70 const polyMesh& mesh,
71 const word& name,
72 readOption r=MUST_READ,
73 writeOption w=NO_WRITE
74 );
75
76 //- Construct from additional size of labelHashSet
77 faceSet
78 (
79 const polyMesh& mesh,
80 const word& name,
81 const label,
82 writeOption w=NO_WRITE
83 );
84
85 //- Construct from existing set
86 faceSet
87 (
88 const polyMesh& mesh,
89 const word& name,
90 const topoSet&,
91 writeOption w=NO_WRITE
92 );
93
94 //- Construct from additional labelHashSet
95 faceSet
96 (
97 const polyMesh& mesh,
98 const word& name,
99 const labelHashSet&,
100 writeOption w=NO_WRITE
101 );
102
103
104 //- Destructor
105 virtual ~faceSet();
106

Callers 1

faceZoneSet.CFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected