drum-PeriodictBoundary tutorial added

This commit is contained in:
HRN
2025-02-25 22:37:19 +03:30
parent a33ec7d8e0
commit 1cbeb1c963
11 changed files with 398 additions and 0 deletions

View File

@ -0,0 +1,50 @@
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName domainDict;
objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
// Simulation domain: every particles that goes outside this domain will be deleted
globalBox
{
min (-0.12 -0.12 0.0); // lower corner point of the box
max (0.12 0.12 0.1); // upper corner point of the box
}
boundaries
{
left // x-
{
type exit;
}
right // x+
{
type exit;
}
bottom // y-
{
type exit;
}
top // y+
{
type exit;
}
rear // z-
{
type periodic; // this boundary type should be defined in both z+ and z- sides
}
front // z+
{
type periodic; // this boundary type should be defined in both z+ and z- sides
}
}