A new screwConveyor tutorial

This commit is contained in:
HRN
2025-02-20 17:27:36 +03:30
parent 354daab7c5
commit 3954fcf4ab
16 changed files with 89919 additions and 18690 deletions

View File

@ -1,64 +1,50 @@
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName domainDict;
objectType dictionary;
/* -------------------------------*- 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.0 -0.06 0.001); // lower corner point of the box
max (1.2 1 0.5); // upper corner point of the box
}
decomposition
// Simulation domain: every particle that goes outside this domain will be deleted
globalBox
{
direction z;
min (-0.2 -0.20 -0.01);
max ( 0.2 0.4 1.05);
}
boundaries
{
left
{
type exit;
}
neighborListUpdateInterval 50; /* Determines how often (how many iterations) do you want to
right
{
type exit;
}
rebuild the list of particles in the neighbor list
bottom
{
type exit;
}
of all boundaries in the simulation domain */
top
{
type exit;
}
updateInterval 10; // Determines how often do you want to update the new changes in the boundary
rear
{
type exit;
}
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
}
}
front
{
type exit;
}
}