2025-02-20 13:57:36 +00:00
|
|
|
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
|
|
| phasicFlow File |
|
|
|
|
| copyright: www.cemf.ir |
|
|
|
|
\* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
objectName domainDict;
|
|
|
|
objectType dictionary;
|
2024-12-28 10:16:09 +00:00
|
|
|
fileFormat ASCII;
|
|
|
|
|
2025-02-20 13:57:36 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2024-12-28 10:16:09 +00:00
|
|
|
|
2025-02-20 13:57:36 +00:00
|
|
|
// Simulation domain: every particle that goes outside this domain will be deleted
|
|
|
|
globalBox
|
2024-12-28 10:16:09 +00:00
|
|
|
{
|
2025-02-20 13:57:36 +00:00
|
|
|
min (-0.2 -0.20 -0.01);
|
|
|
|
max ( 0.2 0.4 1.05);
|
2024-12-28 10:16:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
boundaries
|
|
|
|
{
|
2025-02-20 13:57:36 +00:00
|
|
|
left
|
|
|
|
{
|
|
|
|
type exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
right
|
|
|
|
{
|
|
|
|
type exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
bottom
|
|
|
|
{
|
|
|
|
type exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
top
|
|
|
|
{
|
|
|
|
type exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
rear
|
|
|
|
{
|
|
|
|
type exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
front
|
|
|
|
{
|
|
|
|
type exit;
|
|
|
|
}
|
|
|
|
}
|