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