copied from preCICE tutorials

This commit is contained in:
jakob.schratter 2026-01-26 16:14:46 +01:00
commit 3f1b1a6d0f
68 changed files with 156449 additions and 0 deletions

View file

@ -0,0 +1,101 @@
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
vertices
(
(0 0 0)
(1 0 0)
(1 .5 0)
(0 .5 0)
(0 0 .4)
(1 0 .4)
(1 .5 .4)
(0 .5 .4)
(3 0 0)
(3 .5 0)
(3 0 .4)
(3 .5 .4)
(-.5 0 0)
(-.5 .5 0)
(-.5 .5 .4)
(-.5 0 .4)
);
blocks
(
hex (12 0 3 13 15 4 7 14) (81 41 1) simpleGrading (.2 15 1)
hex (0 1 2 3 4 5 6 7) (161 41 1) simpleGrading (5 15 1)
hex (1 8 9 2 5 10 11 6) (51 41 1) simpleGrading (1 15 1)
);
boundary
(
inlet
{
type wall;
faces
(
(13 12 15 14)
);
}
outlet
{
type wall;
faces
(
(8 9 11 10)
);
}
top
{
type wall;
faces
(
(7 6 2 3)
(9 2 6 11)
(13 3 7 14)
);
}
slip-bottom
{
type wall;
faces
(
(15 12 0 4)
);
}
bottom
{
type wall;
faces
(
(1 8 10 5)
);
}
interface
{
type wall;
faces
(
(4 0 1 5)
);
}
);