phasicFlow/tutorials/postprocessPhasicFlow/segregation/settings/postprocessDict

55 lines
1.6 KiB
Plaintext
Raw Normal View History

2022-09-29 06:32:31 +00:00
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName postprocessDict;
objectType dictionary;;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2022-09-29 06:32:31 +00:00
rectMesh
{
min (-0.12 -0.12 0.0); //minimum corner point
max (0.12 0.12 0.1); //maximum corner point
nx 24; // number of divisions in x direction
ny 24; // number of divisions in y direction
2022-10-09 10:31:45 +00:00
nz 10; // number of divisions in z direction
2022-09-29 06:32:31 +00:00
}
numberBased
{
// num particles in a cell
numParticles
{
field real 1.0; // uniform field with value 1
2022-10-10 09:20:32 +00:00
operation sum; // sum over all particles in a cell
2022-09-29 06:32:31 +00:00
includeMask all; // select all
}
// concentration of small particles (number based)
smallConc
{
field real 1.0; // uniform field with value 1
2022-10-10 09:20:32 +00:00
operation average; // average over all particles in a cell
2022-09-29 06:32:31 +00:00
threshold 1; // exclude cells with number of particles less than 1
includeMask lessThan; // include mask
lessThanInfo
{
field diameter; // include particles with diameter less than 0.004
value 0.004;
}
}
// average velocity of particles
avVelocity
{
field velocity; // read velocity field from time folder
2022-10-10 09:20:32 +00:00
operation average; // average over all particles in the cell
2022-09-29 06:32:31 +00:00
threshold 3; // exclude cells with number of particles less than 3
includeMask all; // select all
}
}