mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
Creation of OpenFOAM-dev repository 15/04/2008
This commit is contained in:
90
applications/utilities/mesh/manipulation/faceSet/faceSetDict
Normal file
90
applications/utilities/mesh/manipulation/faceSet/faceSetDict
Normal file
@ -0,0 +1,90 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: 1.0 |
|
||||
| \\ / A nd | Web: http://www.openfoam.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
|
||||
root "/home/penfold/mattijs/foam/mattijs2.2/run/icoFoam";
|
||||
case "cavityTut";
|
||||
instance "system";
|
||||
local "";
|
||||
|
||||
class dictionary;
|
||||
object faceSetDict;
|
||||
}
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
// Name of set to operate on
|
||||
name f0;
|
||||
|
||||
// One of clear/new/invert/add/delete|subset/list
|
||||
action new;
|
||||
|
||||
// Actions to apply to pointSet. These are all the topoSetSource's ending
|
||||
// in ..ToFace (see the meshTools library).
|
||||
topoSetSources
|
||||
(
|
||||
// Copy elements from faceSet
|
||||
faceToFace
|
||||
{
|
||||
set f1;
|
||||
}
|
||||
|
||||
// Select based on cellSet
|
||||
cellToFace
|
||||
{
|
||||
set c0;
|
||||
option all; // All faces of cells
|
||||
//option both; // Only faces whose owner&neighbour are in cellSet
|
||||
}
|
||||
|
||||
// Select based on pointSet
|
||||
pointToFace
|
||||
{
|
||||
set p0;
|
||||
option any; // Faces using any point in pointSet
|
||||
//option all // Faces with all points in pointSet
|
||||
}
|
||||
|
||||
// Select by explicitly providing face labels
|
||||
labelToFace
|
||||
{
|
||||
value (12 13 56); // labels of faces
|
||||
}
|
||||
|
||||
// All faces of patch
|
||||
patchToFace
|
||||
{
|
||||
name movingWall;
|
||||
}
|
||||
|
||||
// All faces of faceZone
|
||||
zoneToFace
|
||||
{
|
||||
name faceZone1; // Name of faceZone
|
||||
}
|
||||
|
||||
// Faces with face centre within box
|
||||
boxToFace
|
||||
{
|
||||
box (0 0 0) (1 1 1);
|
||||
}
|
||||
|
||||
// Faces with normal to within certain angle aligned with vector.
|
||||
normalToFace
|
||||
{
|
||||
normal (0 0 1); // Vector
|
||||
cos 0.01; // Tolerance (max cos of angle)
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user