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

51 lines
1.4 KiB
Plaintext
Raw Normal View History

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