Files
phasicFlow/tutorials/sphereGranFlow/binarySystemOfParticles/settings/domainDict

50 lines
1.2 KiB
Plaintext
Raw Normal View History

/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName domainDict;
objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2025-02-23 15:59:37 +03:30
// Simulation domain: every particles that goes outside this domain will be deleted
globalBox
{
2024-05-28 12:15:45 +04:30
min (-0.12 -0.12 0);
2024-05-28 12:15:45 +04:30
max (0.12 0.12 0.1);
}
boundaries
{
left
{
2025-02-23 15:59:37 +03:30
type exit; // other options: periodic, reflective
}
right
{
2025-02-23 15:59:37 +03:30
type exit; // other options: periodic, reflective
}
bottom
{
2025-02-23 15:59:37 +03:30
type exit; // other options: periodic, reflective
}
top
{
2025-02-23 15:59:37 +03:30
type exit; // other options: periodic, reflective
}
rear
{
2025-02-23 15:59:37 +03:30
type exit; // other options: periodic, reflective
}
front
{
2025-02-23 15:59:37 +03:30
type exit; // other options: periodic, reflective
}
2024-05-28 13:10:19 +04:30
}