layeredSiloFilling is updated.

This commit is contained in:
ramin1728
2024-12-03 15:49:59 +03:30
parent 93c146391c
commit 1008ea8c9a
6 changed files with 73 additions and 61 deletions

View File

@ -6,7 +6,7 @@ objectName domainDict;
objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
globalBox // Simulation domain: every particles that goes outside this domain will be deleted
globalBox // Simulation domain: every particles that goes outside this domain will be deleted
{
min (-0.11 -0.11 -0.11);
@ -16,44 +16,49 @@ globalBox // Simulation domain: every particles that goes out
boundaries
{
// 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
type exit; // other options: periodict, reflective
}
right
{
type exit; // other options: periodict, reflective
type exit; // other options: periodict, reflective
}
bottom
{
type exit; // other options: periodict, reflective
type exit; // other options: periodict, reflective
}
top
{
type exit; // other options: periodict, reflective
type exit; // other options: periodict, reflective
}
rear
{
type exit; // other options: periodict, reflective
type exit; // other options: periodict, reflective
}
front
{
type exit; // other options: periodict, reflective
type exit; // other options: periodict, reflective
}
}