phasicFlow/tutorials/sphereGranFlow/layeredSiloFilling/settings/domainDict

66 lines
1.7 KiB
Plaintext
Raw Normal View History

/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName domainDict;
objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2024-12-03 12:19:59 +00:00
globalBox // Simulation domain: every particles that goes outside this domain will be deleted
{
min (-0.11 -0.11 -0.11);
max ( 0.11 0.11 0.41);
}
boundaries
{
// Determines how often (how many iterations) do you want to
2024-12-03 12:19:59 +00:00
// rebuild the list of particles in the neighbor list
2024-12-03 12:19:59 +00:00
// of all boundaries in the simulation domain
2024-12-03 12:19:59 +00:00
neighborListUpdateInterval 30;
// Determines how often do you want to update the new changes in the boundary
2024-12-03 12:19:59 +00:00
updateInterval 10;
// The distance from the boundary plane within which particles are marked to be in the boundary list
2024-12-03 12:19:59 +00:00
neighborLength 0.004;
left
{
2024-12-03 12:19:59 +00:00
type exit; // other options: periodict, reflective
}
right
{
2024-12-03 12:19:59 +00:00
type exit; // other options: periodict, reflective
}
bottom
{
2024-12-03 12:19:59 +00:00
type exit; // other options: periodict, reflective
}
top
{
2024-12-03 12:19:59 +00:00
type exit; // other options: periodict, reflective
}
rear
{
2024-12-03 12:19:59 +00:00
type exit; // other options: periodict, reflective
}
front
{
2024-12-03 12:19:59 +00:00
type exit; // other options: periodict, reflective
}
2024-05-28 08:54:34 +00:00
}