86 lines
2.0 KiB
C++
86 lines
2.0 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2112 |
|
|
| \\ / A nd | Web: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object topoSetDict;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
actions
|
|
(
|
|
// 0. Create cell sets
|
|
// {
|
|
// name c1;
|
|
// type cellSet;
|
|
// action new;
|
|
// source zoneToCell;
|
|
// zones (domain0);
|
|
//
|
|
// }
|
|
{
|
|
name c1;
|
|
type cellSet;
|
|
action new;
|
|
source faceZoneToCell;//zoneToCel;
|
|
option master;
|
|
zones (domain0_to_v_CPU);
|
|
}
|
|
|
|
{
|
|
name c1;
|
|
type cellSet;
|
|
action add;
|
|
source faceZoneToCell;//zoneToCel;
|
|
option slave;
|
|
zones (domain0_to_v_CPU);
|
|
}
|
|
|
|
// {
|
|
// name c2;
|
|
// type cellSet;
|
|
// action new;
|
|
// source zoneToCell;
|
|
// zones (v_CPU);
|
|
//
|
|
// }
|
|
// {
|
|
// name f2;
|
|
// type faceSet;
|
|
// action new;
|
|
// source cellToFace;
|
|
// option all;
|
|
// sets (c2);
|
|
//
|
|
// }
|
|
//
|
|
// {
|
|
// name c3;
|
|
// type cellSet;
|
|
// action new;
|
|
// source zoneToCell;
|
|
// zones (v_fins);
|
|
//
|
|
// }
|
|
// {
|
|
// name f3;
|
|
// type faceSet;
|
|
// action new;
|
|
// source cellToFace;
|
|
// option all;
|
|
// sets (c3);
|
|
//
|
|
// }
|
|
);
|
|
|
|
|
|
// ************************************************************************* //
|