Skip to content
Snippets Groups Projects
Commit 9c9c43f2 authored by mattijs's avatar mattijs
Browse files

new boundary syntax

parent 0bbc8fd2
No related merge requests found
......@@ -37,25 +37,59 @@ edges
(
);
patches
//patches
//(
// wall movingWall
// (
// (3 7 6 2)
// )
// wall fixedWalls
// (
// (0 4 7 3)
// (2 6 5 1)
// (1 5 4 0)
// )
// empty frontAndBack
// (
// (0 3 2 1)
// (4 5 6 7)
// )
//);
boundary
(
wall movingWall
(
(3 7 6 2)
)
wall fixedWalls
(
(0 4 7 3)
(2 6 5 1)
(1 5 4 0)
)
empty frontAndBack
(
(0 3 2 1)
(4 5 6 7)
)
movingWall
{
type wall;
faces
(
(3 7 6 2)
);
}
fixedWalls
{
type wall;
faces
(
(0 4 7 3)
(2 6 5 1)
(1 5 4 0)
);
}
frontAndBack
{
type empty;
faces
(
(0 3 2 1)
(4 5 6 7)
);
}
);
mergePatchPairs
(
);
......
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