phasicFlow/tutorials/sphereGranFlow/layeredSiloFilling/settings/particlesDict

46 lines
1.4 KiB
Plaintext
Raw Normal View History

2022-09-28 08:38:09 +00:00
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName particlesDict;
objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2022-09-28 08:38:09 +00:00
setFields
{
/*
Default value for fields defined for particles
These fields should always be defined for simulations with
spherical particles.
*/
2022-09-28 08:38:09 +00:00
defaultValue
{
velocity realx3 (0 0 0); // linear velocity (m/s)
acceleration realx3 (0 0 0); // linear acceleration (m/s2)
rVelocity realx3 (0 0 0); // rotational velocity (rad/s)
shapeName word lightSphere; // name of the particle shape
2022-09-28 08:38:09 +00:00
}
selectors
{}
}
positionParticles // positions particles
2022-09-28 08:38:09 +00:00
{
method empty; // other options: ordered and random
regionType box; // other options: cylinder and sphere
2022-09-28 08:38:09 +00:00
boxInfo // box region for positioning particles
{
min (-0.08 -0.08 0.015); // lower corner point of the box
2022-09-28 08:38:09 +00:00
max ( 0.08 0.08 0.098); // upper corner point of the box
}
2022-09-28 08:38:09 +00:00
}
2024-05-28 08:54:34 +00:00