mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Removed handling of single-quoted strings.
This commit is contained in:
@ -82,7 +82,7 @@ topoSetSources
|
||||
// Cells in cell zone
|
||||
zoneToCell
|
||||
{
|
||||
name '.*Zone'; // Name of cellZone, regular expressions allowed
|
||||
name ".*Zone"; // Name of cellZone, regular expressions allowed
|
||||
}
|
||||
|
||||
// values of field within certain range
|
||||
|
||||
@ -56,13 +56,13 @@ topoSetSources
|
||||
// All faces of patch
|
||||
patchToFace
|
||||
{
|
||||
name '.*Wall'; // Name of patch, regular expressions allowed
|
||||
name ".*Wall"; // Name of patch, regular expressions allowed
|
||||
}
|
||||
|
||||
// All faces of faceZone
|
||||
zoneToFace
|
||||
{
|
||||
name '.*Zone1'; // Name of faceZone, regular expressions allowed
|
||||
name ".*Zone1"; // Name of faceZone, regular expressions allowed
|
||||
}
|
||||
|
||||
// Faces with face centre within box
|
||||
|
||||
@ -60,7 +60,7 @@ topoSetSources
|
||||
// All points in pointzone
|
||||
zoneToPoint
|
||||
{
|
||||
name '.*Zone'; // name of pointZone, regular expressions allowed
|
||||
name ".*Zone"; // name of pointZone, regular expressions allowed
|
||||
}
|
||||
|
||||
// Select based on surface
|
||||
|
||||
Reference in New Issue
Block a user