update rotatingDrumMedium tutorial

This commit is contained in:
wanqing0421
2025-03-05 08:37:52 +08:00
parent 75f679a234
commit ab21acdca5
8 changed files with 158 additions and 218 deletions

View File

@ -2,63 +2,46 @@
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName domainDict;
objectType dictionary;
fileFormat ASCII;
objectName domainDict;
objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
globalBox // Simulation domain: every particles that goes outside this domain will be deleted
{
min (-0.12 -0.12 0);
min (-0.12 -0.12 0);
max (0.12 0.12 0.36); // upper corner point of the box
}
decomposition
{
direction z;
max (0.12 0.12 0.36); // upper corner point of the box
}
boundaries
{
left
{
type exit; // other options: periodic, reflective
}
neighborListUpdateInterval 50; /* Determines how often (how many iterations) do you want to
right
{
type exit; // other options: periodic, reflective
}
rebuild the list of particles in the neighbor list
bottom
{
type exit; // other options: periodic, reflective
}
of all boundaries in the simulation domain */
top
{
type exit; // other options: periodic, reflective
}
updateInterval 10; // Determines how often do you want to update the new changes in the boundary
rear
{
type exit; // other options: periodic, reflective
}
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: 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
}
front
{
type exit; // other options: periodic, reflective
}
}