Files
phasicFlow/tutorials/sphereGranFlow/layeredSiloFilling/settings/particlesDict

48 lines
1.4 KiB
Plaintext
Raw Normal View History

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