Files
phasicFlow/tutorials/sphereGranFlow/rotatingDrumSmall/settings/particlesDict

54 lines
1.6 KiB
Plaintext
Raw Normal View History

2022-09-05 16:58:23 +04:30
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
2025-04-25 14:17:09 +03:30
objectName particlesDict;
objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2025-06-29 23:18:15 +03:30
2022-09-05 16:58:23 +04:30
setFields
{
2025-06-29 23:18:15 +03:30
2025-04-25 14:17:09 +03:30
defaultValue
{
2025-06-29 23:18:15 +03:30
velocity realx3 (0 0 0); // linear velocity (m/s)
2024-12-24 18:03:38 +03:30
2025-06-29 23:18:15 +03:30
acceleration realx3 (0 0 0); // linear acceleration (m/s2)
2024-12-24 18:03:38 +03:30
2025-06-29 23:18:15 +03:30
rVelocity realx3 (0 0 0); // rotational velocity (rad/s)
2022-09-05 16:58:23 +04:30
2025-06-29 23:18:15 +03:30
shapeName word sphere1; // name of the particle shape
2025-04-25 14:17:09 +03:30
}
2024-12-24 18:03:38 +03:30
2025-04-25 14:17:09 +03:30
selectors
{
2024-12-24 18:03:38 +03:30
2025-04-25 14:17:09 +03:30
}
2022-09-05 16:58:23 +04:30
}
2025-06-29 23:18:15 +03:30
positionParticles
2022-09-05 16:58:23 +04:30
{
2025-06-29 23:18:15 +03:30
method ordered; // other options: random and empty
2022-09-05 16:58:23 +04:30
2025-06-29 23:18:15 +03:30
mortonSorting Yes; // perform initial sorting based on morton code?
2022-09-05 16:58:23 +04:30
2025-04-25 14:17:09 +03:30
orderedInfo
{
2025-06-29 23:18:15 +03:30
distance 0.004; // minimum distance between particles centers
2024-12-24 18:03:38 +03:30
2025-06-29 23:18:15 +03:30
numPoints 30000; // number of particles in the simulation
2024-12-24 18:03:38 +03:30
2025-06-29 23:18:15 +03:30
axisOrder (z y x); // axis order for filling the space with particles
2025-04-25 14:17:09 +03:30
}
2022-09-05 16:58:23 +04:30
2025-06-29 23:18:15 +03:30
regionType box; // other options: cylinder and sphere
2024-12-24 18:03:38 +03:30
2025-06-29 23:18:15 +03:30
boxInfo // box information for positioning particles
2025-04-25 14:17:09 +03:30
{
2025-06-29 23:18:15 +03:30
min (-0.08 -0.08 0.015); // lower corner point of the box
2024-12-24 18:03:38 +03:30
2025-06-29 23:18:15 +03:30
max ( 0.08 0.08 0.098); // upper corner point of the box
2025-04-25 14:17:09 +03:30
}
2022-09-05 16:58:23 +04:30
}