phasicFlow/tutorials/sphereGranFlow/screwConveyor/settings/particlesDict

40 lines
1022 B
Plaintext
Raw Normal View History

/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName particlesDict;
objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2024-12-28 10:16:09 +00:00
2025-02-20 13:57:36 +00:00
// positions particles
positionParticles
{
// A list of options are: ordered, random
method empty; // creates the required fields with zero particles (empty).
2025-02-20 13:57:36 +00:00
mortonSorting Yes; // perform initial sorting based on morton
}
2025-02-20 13:57:36 +00:00
setFields
{
2025-02-20 13:57:36 +00:00
defaultValue
{
2025-02-20 13:57:36 +00:00
// linear velocity (m/s)
velocity realx3 (0 0 0);
2025-02-20 13:57:36 +00:00
// linear acceleration (m/s2)
acceleration realx3 (0 0 0);
2025-02-20 13:57:36 +00:00
// rotational velocity (rad/s)
rVelocity realx3 (0 0 0);
2025-02-20 13:57:36 +00:00
// name of the particle shape
shapeName word sphere1;
2024-12-28 10:16:09 +00:00
}
2025-02-20 13:57:36 +00:00
selectors
{}
}