51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
|
/* -------------------------------*- C++ -*--------------------------------- *\
|
||
|
| phasicFlow File |
|
||
|
| copyright: www.cemf.ir |
|
||
|
\* ------------------------------------------------------------------------- */
|
||
|
objectName domainDict;
|
||
|
objectType dictionary;
|
||
|
fileFormat ASCII;
|
||
|
/*---------------------------------------------------------------------------*/
|
||
|
globalBox // Simulation domain: every particles that goes outside this domain will be deleted
|
||
|
{
|
||
|
min (-0.2 -0.2 0.0);
|
||
|
max ( 0.2 0.2 1.2);
|
||
|
}
|
||
|
|
||
|
boundaries
|
||
|
{
|
||
|
neighborListUpdateInterval 200;
|
||
|
|
||
|
updateInterval 20;
|
||
|
|
||
|
left
|
||
|
{
|
||
|
type exit; // other options: periodic, reflective
|
||
|
}
|
||
|
|
||
|
right
|
||
|
{
|
||
|
type exit; // other options: periodic, reflective
|
||
|
}
|
||
|
|
||
|
bottom
|
||
|
{
|
||
|
type exit; // other options: periodic, reflective
|
||
|
}
|
||
|
|
||
|
top
|
||
|
{
|
||
|
type exit; // other options: periodic, reflective
|
||
|
}
|
||
|
|
||
|
rear
|
||
|
{
|
||
|
type exit; // other options: periodic, reflective
|
||
|
}
|
||
|
|
||
|
front
|
||
|
{
|
||
|
type exit; // other options: periodic, reflective
|
||
|
}
|
||
|
}
|