phasicFlow/tutorials/sphereGranFlow/conveyorBelt/settings/domainDict

64 lines
1.7 KiB
Plaintext
Raw Normal View History

2024-12-24 07:37:19 +00:00
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
2025-04-25 10:47:09 +00:00
objectName domainDict;
objectType dictionary;
2024-12-24 07:37:19 +00:00
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2025-04-25 10:47:09 +00:00
// Simulation domain: every particles that goes outside this domain will be deleted
globalBox
2024-12-24 07:37:19 +00:00
{
2025-04-25 10:47:09 +00:00
min (-0.11 -0.11 -0.41);
max ( 0.33 0.11 0.41);
2024-12-24 07:37:19 +00:00
}
boundaries
{
2025-04-25 10:47:09 +00:00
// 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
neighborListUpdateInterval 30;
// Determines how often do you want to update the new changes in the boundary
updateInterval 10;
// The distance from the boundary plane within which particles are marked to be in the boundary list
neighborLength 0.004;
left
{
type exit; // other options: periodict, 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
}
2024-12-24 07:37:19 +00:00
}