48 lines
1.3 KiB
Plaintext
48 lines
1.3 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.328 0.095 -0.025); // lower corner point of the box
|
||
|
|
||
|
max (-0.068 0.355 0.125); // upper corner point of the box
|
||
|
}
|
||
|
|
||
|
boundaries
|
||
|
{
|
||
|
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
|
||
|
}
|
||
|
}
|