2022-09-28 08:38:09 +00:00
|
|
|
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
|
|
| phasicFlow File |
|
|
|
|
| copyright: www.cemf.ir |
|
|
|
|
\* ------------------------------------------------------------------------- */
|
|
|
|
objectName particlesDict;
|
|
|
|
objectType dictionary;
|
2023-04-12 06:09:49 +00:00
|
|
|
fileFormat ASCII;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2022-09-28 08:38:09 +00:00
|
|
|
setFields
|
|
|
|
{
|
2024-05-21 15:13:58 +00:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
{
|
2024-05-28 08:08:21 +00:00
|
|
|
velocity realx3 (0 0 0); // linear velocity (m/s)
|
2024-05-21 15:13:58 +00:00
|
|
|
|
2024-05-28 08:08:21 +00:00
|
|
|
acceleration realx3 (0 0 0); // linear acceleration (m/s2)
|
2024-05-21 15:13:58 +00:00
|
|
|
|
2024-05-28 08:08:21 +00:00
|
|
|
rVelocity realx3 (0 0 0); // rotational velocity (rad/s)
|
2024-05-21 15:13:58 +00:00
|
|
|
|
2024-05-28 08:08:21 +00:00
|
|
|
shapeName word lightSphere; // name of the particle shape
|
2022-09-28 08:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
selectors
|
|
|
|
{}
|
|
|
|
}
|
|
|
|
|
2024-05-21 15:13:58 +00:00
|
|
|
positionParticles // positions particles
|
2022-09-28 08:38:09 +00:00
|
|
|
{
|
2024-05-28 08:08:21 +00:00
|
|
|
method empty; // other options: ordered and random
|
2024-05-21 15:13:58 +00:00
|
|
|
|
2024-05-28 08:08:21 +00:00
|
|
|
regionType box; // other options: cylinder and sphere
|
2022-09-28 08:38:09 +00:00
|
|
|
|
2024-05-28 08:08:21 +00:00
|
|
|
boxInfo // box region for positioning particles
|
2024-05-21 15:13:58 +00:00
|
|
|
{
|
2024-05-28 08:08:21 +00:00
|
|
|
min (-0.08 -0.08 0.015); // lower corner point of the box
|
2022-09-28 08:38:09 +00:00
|
|
|
|
2024-05-28 08:08:21 +00:00
|
|
|
max ( 0.08 0.08 0.098); // upper corner point of the box
|
2024-05-21 15:13:58 +00:00
|
|
|
}
|
2022-09-28 08:38:09 +00:00
|
|
|
}
|
2024-05-28 08:54:34 +00:00
|
|
|
|