65 lines
1.9 KiB
Plaintext
65 lines
1.9 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.3 -0.3 -0.3); // lower corner point of the box
|
||
|
|
||
|
max (0.5 0.5 0.5); // upper corner point of the box
|
||
|
}
|
||
|
|
||
|
decomposition
|
||
|
{
|
||
|
direction z;
|
||
|
}
|
||
|
|
||
|
boundaries
|
||
|
{
|
||
|
|
||
|
|
||
|
neighborListUpdateInterval 50; /* Determines how often (how many iterations) do you want to
|
||
|
|
||
|
rebuild the list of particles in the neighbor list
|
||
|
|
||
|
of all boundaries in the simulation domain */
|
||
|
|
||
|
updateInterval 10; // Determines how often do you want to update the new changes in the boundary
|
||
|
|
||
|
neighborLength 0.004; // The distance from the boundary plane within which particles are marked to be in the boundary list
|
||
|
|
||
|
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
|
||
|
}
|
||
|
}
|