Files
phasicFlow/tutorials/sphereGranFlow/V-blender/settings/domainDict

51 lines
1.3 KiB
Plaintext
Raw Normal View History

2024-12-28 14:58:28 +03:30
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
2025-04-21 15:52:51 +03:30
objectName domainDict;
objectType dictionary;
2024-12-28 14:58:28 +03:30
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2025-04-21 15:52:51 +03:30
// Simulation domain: every particles that goes outside this domain will be deleted
globalBox
2024-12-28 14:58:28 +03:30
{
min (-0.1 -0.4 0); // lower corner point of the box
2024-12-28 14:58:28 +03:30
max (0.86 0.6 0.6); // upper corner point of the box
2024-12-28 14:58:28 +03:30
}
boundaries
{
2025-04-21 15:52:51 +03:30
left
{
type exit; // other options: periodic, reflective
2025-04-21 15:52:51 +03:30
}
right
{
type exit; // other options: periodic, reflective
2025-04-21 15:52:51 +03:30
}
bottom
{
type exit; // other options: periodic, reflective
2025-04-21 15:52:51 +03:30
}
top
{
type exit; // other options: periodic, reflective
2025-04-21 15:52:51 +03:30
}
rear
{
type exit; // other options: periodic, reflective
2025-04-21 15:52:51 +03:30
}
front
{
type exit; // other options: periodic, reflective
2025-04-21 15:52:51 +03:30
}
2024-12-28 14:58:28 +03:30
}