Skip to content
Snippets Groups Projects
Commit 3c426d3b authored by mattijs's avatar mattijs
Browse files

wildcard usage

parent dde4ca5b
Branches
Tags
No related merge requests found
......@@ -82,7 +82,7 @@ topoSetSources
// Cells in cell zone
zoneToCell
{
name cellZone; // name of cellZone
name ".*Zone"; // name of cellZone, wildcards allowed.
}
// values of field within certain range
......
......@@ -56,13 +56,13 @@ topoSetSources
// All faces of patch
patchToFace
{
name movingWall;
name ".*Wall"; // Name of patch, regular expressions allowed
}
// All faces of faceZone
zoneToFace
{
name faceZone1; // Name of faceZone
name ".*Zone1"; // Name of faceZone, regular expressions allowed
}
// Faces with face centre within box
......
......@@ -57,6 +57,12 @@ topoSetSources
box (0 0 0) (1 1 1);
}
// All points in pointzone
zoneToPoint
{
name ".*Zone"; // name of pointZone, wildcards allowed.
}
// Select based on surface
surfaceToPoint
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment